New command 'story' to bin/gruta.
[gruta.git] / Gruta.pm
blobaf2892442aa4a4ac9a3c52ef58d6ef81ab577f21
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 foreach my $s ($self->sources()) {
34 if (my $m = $s->can($method)) {
35 my @pr = $m->($s, @_);
37 if (@pr && $pr[0]) {
38 @r = (@r, @pr);
40 last if $short;
45 return wantarray ? @r : $r[0];
48 sub topic { my $self = shift; return $self->_call('topic', 1, @_); }
49 sub topics { my $self = shift; return $self->_call('topics', 0); }
51 sub user { my $self = shift; return $self->_call('user', 1, @_); }
52 sub users { my $self = shift; return $self->_call('users', 0); }
54 sub story {
55 my $self = shift;
56 my $topic_id = shift;
57 my $id = shift;
59 if (! $topic_id || ! $id) {
60 return undef;
63 my $story = undef;
64 my $ck = $topic_id . '/' . $id;
66 if ($story = $self->{story_cache}->{$ck}) {
67 return $story;
70 if (not $story = $self->_call('story', 1, $topic_id, $id)) {
71 return undef;
74 my $format = $story->get('format') || 'grutatxt';
76 if (my $rndr = $self->{renderers_h}->{$format}) {
77 $rndr->story($story);
80 return $self->{story_cache}->{$ck} = $story;
84 sub stories { my $self = shift; return $self->_call('stories', 0, @_); }
86 sub stories_by_date {
87 my $self = shift;
88 my $topics = shift;
89 my %opts = @_;
91 if (!$topics) {
92 $topics = [ $self->topics() ];
95 my @r = sort { $b->[2] cmp $a->[2] } $self->_call('stories_by_date', 0, $topics, %opts);
97 if (scalar(@r) > $opts{num}) {
98 @r = @r[0 .. $opts{num} - 1];
101 return @r;
104 sub search_stories {
105 my $self = shift;
106 my $topic_id = shift;
108 my @l = $self->_call('search_stories', 1, $topic_id, @_);
110 return sort { $self->story($topic_id, $a)->get('title') cmp
111 $self->story($topic_id, $b)->get('title') } @l;
114 sub stories_top_ten {
115 my $self = shift;
117 my @l = $self->_call('stories_top_ten', 0, @_);
119 return sort { $b->[0] <=> $a->[0] } @l;
122 sub search_stories_by_tag {
123 my $self = shift;
125 my @l = $self->_call('search_stories_by_tag', 0, @_);
127 return sort { $self->story($a->[0], $a->[1])->get('title') cmp
128 $self->story($b->[0], $b->[1])->get('title') } @l;
131 sub tags {
132 my $self = shift;
134 my @l = $self->_call('tags', 0, @_);
136 return sort { $a->[0] cmp $b->[0] } @l;
139 sub insert_topic { my $self = shift; return $self->_call('insert_topic', 1, @_); }
140 sub insert_user { my $self = shift; return $self->_call('insert_user', 1, @_); }
141 sub insert_story { my $self = shift; return $self->_call('insert_story', 1, @_); }
144 sub auth {
145 my $self = shift;
147 if (@_) { $self->{auth} = shift; } # Gruta::Data::User
149 return $self->{auth};
153 sub auth_from_sid {
154 my $self = shift;
155 my $sid = shift;
157 my $u = undef;
159 if ($sid) {
160 $self->_call('purge_old_sessions', 0);
162 if (my $session = $self->_call('session', 1, $sid)) {
163 $u = $session->source->user( $session->get('user_id') );
164 $u->set('sid', $sid);
165 $self->auth($u);
169 return $u;
173 sub login {
174 my $self = shift;
175 my $user_id = shift;
176 my $passwd = shift;
178 my $sid = undef;
180 if (my $u = $self->user( $user_id )) {
182 # account expired? go!
183 if (my $xdate = $u->get('xdate')) {
184 if (Gruta::Data::today() > $xdate) {
185 return undef;
189 my $p = $u->get('password');
191 if (crypt($passwd, $p) eq $p) {
192 # create new sid
193 $sid = time() . $$;
195 my $session = Gruta::Data::Session->new(
196 id => $sid,
197 time => time(),
198 user_id => $user_id
201 $u->source->insert_session( $session );
203 $u->set('sid', $sid);
204 $self->auth($u);
208 return $sid;
212 sub logout {
213 my $self = shift;
215 if (my $auth = $self->auth()) {
216 if( my $sid = $auth->get('sid')) {
217 if (my $session = $auth->source->session( $sid )) {
218 $session->delete() if $session->can('delete');
223 $self->auth( undef );
224 return $self;
228 sub _link_to_topic {
229 my $self = shift;
230 my $topic_id = shift;
232 my $ret = undef;
234 if (my $t = $self->topic($topic_id)) {
235 $ret = "<a href='?t=TOPIC;topic=$topic_id'>" .
236 $t->get('name') . '</a>';
238 else {
239 $ret = "Bad topic $topic_id";
242 return $ret;
246 sub _link_to_story {
247 my $self = shift;
248 my $topic_id = shift;
249 my $story_id = shift;
251 my $ret = undef;
253 if (my $s = $self->story($topic_id, $story_id)) {
254 $ret = "<a href='?t=STORY;topic=$topic_id;id=$story_id'>" .
255 $s->get('title') . '</a>';
257 else {
258 $ret = "Bad story '$topic_id/$story_id'";
261 return $ret;
265 sub special_uris {
266 my $self = shift;
267 my $string = shift;
269 $string =~ s!topic://([\w\d_]+)!$self->_link_to_topic($1)!ge;
270 $string =~ s!story://([\w\d_]+)/([\w\d_]+)!$self->_link_to_story($1,$2)!ge;
272 return $string;
276 sub transfer_to_source {
277 my $self = shift;
278 my $dst = shift;
280 foreach my $id ($self->users()) {
281 my $u = $self->user($id);
282 $dst->insert_user($u);
285 foreach my $topic_id (sort $self->topics()) {
286 my $t = $self->topic($topic_id);
288 my $nti = $topic_id;
290 # is it an archive?
291 if ($nti =~ /-arch$/) {
292 # don't insert topic, just rename
293 $nti =~ s/-arch$//;
295 else {
296 $dst->insert_topic($t);
299 foreach my $id ($self->stories($topic_id)) {
301 # get story and its tags
302 my $s = $self->story($topic_id, $id);
303 my @tags = $s->tags();
305 # set new topic
306 $s->set('topic_id', $nti);
308 my $ns = $dst->insert_story($s);
310 if (@tags) {
311 $ns->tags(@tags);
316 return $self;
320 sub flush_story_cache {
321 my $self = shift;
323 $self->{story_cache} = {};
327 sub new {
328 my $class = shift;
330 my $g = bless( { @_ } , $class);
332 $g->{id} ||= 'Gruta';
333 $g->{story_cache} = {};
334 $g->{renderers_h} = {};
336 if (ref($g->{sources}) ne 'ARRAY') {
337 $g->{sources} = [ $g->{sources} ];
340 if ($g->{renderers}) {
341 if (ref($g->{renderers}) ne 'ARRAY') {
342 $g->{renderers} = [ $g->{renderers} ];
345 foreach my $r (@{$g->{renderers}}) {
346 $g->{renderers_h}->{$r->{renderer_id}} = $r;
350 if ($g->{template}) {
351 $g->template->data($g);
354 if ($g->{cgi}) {
355 $g->cgi->data($g);
358 my @u;
360 if (not @u = $g->users()) {
361 my $u = Gruta::Data::User->new(
362 id => 'admin',
363 is_admin => 1,
364 can_upload => 1,
365 username => 'Admin',
366 email => 'webmaster@localhost'
369 $u->password('admin');
370 $g->insert_user($u);
373 return $g;
376 sub run {
377 my $self = shift;
379 if ($self->{cgi}) {
380 $self->cgi->run();