]> sipb.mit.edu Git - ikiwiki.git/blob - IkiWiki/Plugin/signinedit.pm
relativedate: Fix problem with localised dates not working.
[ikiwiki.git] / IkiWiki / Plugin / signinedit.pm
1 #!/usr/bin/perl
2 package IkiWiki::Plugin::signinedit;
3
4 use warnings;
5 use strict;
6 use IkiWiki 3.00;
7
8 sub import {
9         hook(type => "getsetup", id => "signinedit", call => \&getsetup);
10         hook(type => "canedit", id => "signinedit", call => \&canedit,
11              last => 1);
12 }
13
14 sub getsetup () {
15         return
16                 plugin => {
17                         safe => 1,
18                         rebuild => 0,
19                         section => "auth",
20                 },
21 }
22
23 sub canedit ($$$) {
24         my $page=shift;
25         my $cgi=shift;
26         my $session=shift;
27
28         # Have the user sign in, if they are not already. This is why the
29         # hook runs last, so that any hooks that don't need the user to
30         # signin can override this.
31         if (! defined $session->param("name") ||
32             ! IkiWiki::userinfo_get($session->param("name"), "regdate")) {
33                 return "" unless exists $IkiWiki::hooks{auth};
34                 return sub { IkiWiki::needsignin($cgi, $session) };
35         }
36         else {
37                 return "";
38         }
39 }
40
41 1