Version 2.0.0 RELEASED.
[gruta.git] / Gruta.pm
blobd6125241114f0d9d92c583fbfe94286388730322
1 package Gruta;
3 use strict;
4 use warnings;
6 use locale;
8 use Gruta::Data;
10 $Gruta::VERSION = '2.0.0';
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 $sid = $session->get('id');
209 $u->set('sid', $sid);
210 $self->auth($u);
214 return $sid;
218 sub logout {
219 my $self = shift;
221 if (my $auth = $self->auth()) {
222 if( my $sid = $auth->get('sid')) {
223 if (my $session = $auth->source->session( $sid )) {
224 $session->delete() if $session->can('delete');
229 $self->auth( undef );
230 return $self;
234 sub base_url { $_[0]->{base_url} || '' };
236 sub _topic_special_uri {
237 my $self = shift;
238 my $topic_id = shift;
240 my $ret = undef;
242 if (my $t = $self->topic($topic_id)) {
243 $ret = sprintf('<a href="%s?t=TOPIC;topic=%s">%s</a>',
244 $self->base_url(), $topic_id, $t->get('name')
247 else {
248 $ret = "Bad topic $topic_id";
251 return $ret;
255 sub _story_special_uri {
256 my $self = shift;
257 my $topic_id = shift;
258 my $story_id = shift;
260 my $ret = undef;
262 if (my $s = $self->story($topic_id, $story_id)) {
263 $ret = sprintf('<a href="%s?t=STORY;topic=%s;id=%s">%s</a>',
264 $self->base_url(), $topic_id, $story_id, $s->get('title')
267 else {
268 $ret = "Bad story '$topic_id/$story_id'";
271 return $ret;
275 sub _img_special_uri {
276 my $self = shift;
277 my $src = shift;
278 my $class = shift;
280 my $r = sprintf('<img src = "%simg/%s" />',
281 $self->base_url(), $src
284 if ($class) {
285 $r = "<span class = '$class'>" . $r . '</span>';
288 return $r;
291 sub special_uris {
292 my $self = shift;
293 my $string = shift;
295 $string =~ s!topic://([\w\d_]+)!$self->_topic_special_uri($1)!ge;
296 $string =~ s!story://([\w\d_]+)/([\w\d_]+)!$self->_story_special_uri($1,$2)!ge;
297 $string =~ s!img://([\w\d_\.-]+)/?([\w\d_]*)!$self->_img_special_uri($1,$2)!ge;
299 return $string;
303 sub transfer_to_source {
304 my $self = shift;
305 my $dst = shift;
307 foreach my $id ($self->users()) {
308 my $u = $self->user($id);
309 $dst->insert_user($u);
312 foreach my $topic_id (sort $self->topics()) {
313 my $t = $self->topic($topic_id);
315 my $nti = $topic_id;
317 # is it an archive?
318 if ($nti =~ /-arch$/) {
319 # don't insert topic, just rename
320 $nti =~ s/-arch$//;
322 else {
323 $dst->insert_topic($t);
326 foreach my $id ($self->stories($topic_id)) {
328 # get story and its tags
329 my $s = $self->story($topic_id, $id);
330 my @tags = $s->tags();
332 # set new topic
333 $s->set('topic_id', $nti);
335 my $ns = $dst->insert_story($s);
337 if (@tags) {
338 $ns->tags(@tags);
343 return $self;
347 sub flush_story_cache {
348 my $self = shift;
350 $self->{story_cache} = {};
354 sub new {
355 my $class = shift;
357 my $g = bless( { @_ } , $class);
359 $g->{id} ||= 'Gruta';
361 $g->{story_cache} = {};
362 $g->{renderers_h} = {};
363 $g->{calls} = {};
365 if (ref($g->{sources}) ne 'ARRAY') {
366 $g->{sources} = [ $g->{sources} ];
369 if ($g->{renderers}) {
370 if (ref($g->{renderers}) ne 'ARRAY') {
371 $g->{renderers} = [ $g->{renderers} ];
374 foreach my $r (@{$g->{renderers}}) {
375 $g->{renderers_h}->{$r->{renderer_id}} = $r;
379 if ($g->{template}) {
380 $g->template->data($g);
383 if ($g->{cgi}) {
384 $g->cgi->data($g);
387 return $g;
390 sub run {
391 my $self = shift;
393 if ($self->{cgi}) {
394 $self->cgi->run();