]> sipb.mit.edu Git - ikiwiki.git/blob - IkiWiki/Plugin/signinedit.pm
Merge branch 'master' into po
[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                 },
20 }
21
22 sub canedit ($$$) {
23         my $page=shift;
24         my $cgi=shift;
25         my $session=shift;
26
27         # Have the user sign in, if they are not already. This is why the
28         # hook runs last, so that any hooks that don't need the user to
29         # signin can override this.
30         if (! defined $session->param("name") ||
31             ! IkiWiki::userinfo_get($session->param("name"), "regdate")) {
32                 return sub { IkiWiki::needsignin($cgi, $session) };
33         }
34         else {
35                 return "";
36         }
37 }
38
39 1