Jump to ADMIN on 'admin' creation even if another super-template is used.
[gruta.git] / Gruta.pm
bloba38d186aa27a0d26bb946bd2a7be55fc9eeda27b
1 package Gruta;
3 use strict;
4 use warnings;
6 use locale;
8 use Gruta::Data;
10 $Gruta::VERSION = '2.0.0-rc3';
12 sub sources { return @{$_[0]->{sources}}; }
13 sub template { return $_[0]->{template}; }
14 sub cgi { return $_[0]->{cgi}; }
16 sub version { return $Gruta::VERSION; }
18 sub log {
19 my $self = shift;
20 my $msg = shift;
22 print STDERR $self->{id}, ' ', scalar(localtime), ': ', $msg, "\n";
26 sub _call {
27 my $self = shift;
28 my $method = shift;
29 my $short = shift;
31 my @r = ();
33 if (!exists($self->{calls}->{$method})) {
35 # cache all calls in the sources
36 my @c = ();
38 foreach my $s ($self->sources()) {
39 if (my $m = $s->can($method)) {
40 push(@c, sub { return $m->($s, @_) });
44 $self->{calls}->{$method} = [ @c ];
47 foreach my $m (@{ $self->{calls}->{$method}}) {
48 my @pr = $m->(@_);
50 if (@pr && $pr[0]) {
51 @r = (@r, @pr);
53 last if $short;
57 return wantarray ? @r : $r[0];
60 sub topic { my $self = shift; return $self->_call('topic', 1, @_); }
61 sub topics { my $self = shift; return $self->_call('topics', 0); }
63 sub user { my $self = shift; return $self->_call('user', 1, @_); }
64 sub users { my $self = shift; return $self->_call('users', 0); }
66 sub story {
67 my $self = shift;
68 my $topic_id = shift;
69 my $id = shift;
71 if (! $topic_id || ! $id) {
72 return undef;
75 my $story = undef;
76 my $ck = $topic_id . '/' . $id;
78 if ($story = $self->{story_cache}->{$ck}) {
79 return $story;
82 if (not $story = $self->_call('story', 1, $topic_id, $id)) {
83 return undef;
86 my $format = $story->get('format') || 'grutatxt';
88 if (my $rndr = $self->{renderers_h}->{$format}) {
89 $rndr->story($story);
92 return $self->{story_cache}->{$ck} = $story;
96 sub stories { my $self = shift; return $self->_call('stories', 0, @_); }
98 sub stories_by_date {
99 my $self = shift;
100 my $topics = shift;
101 my %opts = @_;
103 my @r = sort { $b->[2] cmp $a->[2] } $self->_call('stories_by_date', 0, $topics, %opts);
105 if ($opts{num} && scalar(@r) > $opts{num}) {
106 @r = @r[0 .. $opts{num} - 1];
109 return @r;
112 sub search_stories {
113 my $self = shift;
114 my $topic_id = shift;
116 my @l = $self->_call('search_stories', 1, $topic_id, @_);
118 return sort { $self->story($topic_id, $a)->get('title') cmp
119 $self->story($topic_id, $b)->get('title') } @l;
122 sub stories_top_ten {
123 my $self = shift;
125 my @l = $self->_call('stories_top_ten', 0, @_);
127 return sort { $b->[0] <=> $a->[0] } @l;
130 sub stories_by_tag {
131 my $self = shift;
133 my @l = $self->_call('stories_by_tag', 0, @_);
135 return sort { $self->story($a->[0], $a->[1])->get('title') cmp
136 $self->story($b->[0], $b->[1])->get('title') } @l;
139 sub tags {
140 my $self = shift;
142 my @l = $self->_call('tags', 0, @_);
144 return sort { $a->[0] cmp $b->[0] } @l;
147 sub insert_topic { my $self = shift; return $self->_call('insert_topic', 1, @_); }
148 sub insert_user { my $self = shift; return $self->_call('insert_user', 1, @_); }
149 sub insert_story { my $self = shift; return $self->_call('insert_story', 1, @_); }
152 sub auth {
153 my $self = shift;
155 if (@_) { $self->{auth} = shift; } # Gruta::Data::User
157 return $self->{auth};
161 sub auth_from_sid {
162 my $self = shift;
163 my $sid = shift;
165 my $u = undef;
167 if ($sid) {
168 $self->_call('purge_old_sessions', 0);
170 if (my $session = $self->_call('session', 1, $sid)) {
171 $u = $session->source->user( $session->get('user_id') );
173 if ($u) {
174 $u->set('sid', $sid);
175 $self->auth($u);
180 return $u;
184 sub login {
185 my $self = shift;
186 my $user_id = shift;
187 my $passwd = shift;
189 my $sid = undef;
191 if (my $u = $self->user( $user_id )) {
193 # account expired? go!
194 if (my $xdate = $u->get('xdate')) {
195 if (Gruta::Data::today() > $xdate) {
196 return undef;
200 my $p = $u->get('password');
202 if (Gruta::Data::crypt($passwd, $p) eq $p) {
203 # create new sid
204 my $session = Gruta::Data::Session->new(user_id => $user_id);
206 $u->source->insert_session( $session );
208 $u->set('sid', $session->get('id'));
209 $self->auth($u);
213 return $sid;
217 sub logout {
218 my $self = shift;
220 if (my $auth = $self->auth()) {
221 if( my $sid = $auth->get('sid')) {
222 if (my $session = $auth->source->session( $sid )) {
223 $session->delete() if $session->can('delete');
228 $self->auth( undef );
229 return $self;
233 sub base_url { $_[0]->{base_url} || '' };
235 sub _topic_special_uri {
236 my $self = shift;
237 my $topic_id = shift;
239 my $ret = undef;
241 if (my $t = $self->topic($topic_id)) {
242 $ret = sprintf('<a href="%s?t=TOPIC;topic=%s">%s</a>',
243 $self->base_url(), $topic_id, $t->get('name')
246 else {
247 $ret = "Bad topic $topic_id";
250 return $ret;
254 sub _story_special_uri {
255 my $self = shift;
256 my $topic_id = shift;
257 my $story_id = shift;
259 my $ret = undef;
261 if (my $s = $self->story($topic_id, $story_id)) {
262 $ret = sprintf('<a href="%s?t=STORY;topic=%s;id=%s">%s</a>',
263 $self->base_url(), $topic_id, $story_id, $s->get('title')
266 else {
267 $ret = "Bad story '$topic_id/$story_id'";
270 return $ret;
274 sub _img_special_uri {
275 my $self = shift;
276 my $src = shift;
277 my $class = shift;
279 my $r = sprintf('<img src = "%simg/%s" />',
280 $self->base_url(), $src
283 if ($class) {
284 $r = "<span class = '$class'>" . $r . '</span>';
287 return $r;
290 sub special_uris {
291 my $self = shift;
292 my $string = shift;
294 $string =~ s!topic://([\w\d_]+)!$self->_topic_special_uri($1)!ge;
295 $string =~ s!story://([\w\d_]+)/([\w\d_]+)!$self->_story_special_uri($1,$2)!ge;
296 $string =~ s!img://([\w\d_\.-]+)/?([\w\d_]*)!$self->_img_special_uri($1,$2)!ge;
298 return $string;
302 sub transfer_to_source {
303 my $self = shift;
304 my $dst = shift;
306 foreach my $id ($self->users()) {
307 my $u = $self->user($id);
308 $dst->insert_user($u);
311 foreach my $topic_id (sort $self->topics()) {
312 my $t = $self->topic($topic_id);
314 my $nti = $topic_id;
316 # is it an archive?
317 if ($nti =~ /-arch$/) {
318 # don't insert topic, just rename
319 $nti =~ s/-arch$//;
321 else {
322 $dst->insert_topic($t);
325 foreach my $id ($self->stories($topic_id)) {
327 # get story and its tags
328 my $s = $self->story($topic_id, $id);
329 my @tags = $s->tags();
331 # set new topic
332 $s->set('topic_id', $nti);
334 my $ns = $dst->insert_story($s);
336 if (@tags) {
337 $ns->tags(@tags);
342 return $self;
346 sub flush_story_cache {
347 my $self = shift;
349 $self->{story_cache} = {};
353 sub new {
354 my $class = shift;
356 my $g = bless( { @_ } , $class);
358 $g->{id} ||= 'Gruta';
360 $g->{story_cache} = {};
361 $g->{renderers_h} = {};
362 $g->{calls} = {};
364 if (ref($g->{sources}) ne 'ARRAY') {
365 $g->{sources} = [ $g->{sources} ];
368 if ($g->{renderers}) {
369 if (ref($g->{renderers}) ne 'ARRAY') {
370 $g->{renderers} = [ $g->{renderers} ];
373 foreach my $r (@{$g->{renderers}}) {
374 $g->{renderers_h}->{$r->{renderer_id}} = $r;
378 if ($g->{template}) {
379 $g->template->data($g);
382 if ($g->{cgi}) {
383 $g->cgi->data($g);
386 return $g;
389 sub run {
390 my $self = shift;
392 if ($self->{cgi}) {
393 $self->cgi->run();