aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/signinedit.pm
blob: 31160c02ffb581ad28da533e42737db8761295fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/perl
package IkiWiki::Plugin::signinedit;

use warnings;
use strict;
use IkiWiki 3.00;

sub import {
	hook(type => "getsetup", id => "signinedit", call => \&getsetup);
	hook(type => "canedit", id => "signinedit", call => \&canedit,
	     last => 1);
}

sub getsetup () {
	return
		plugin => {
			safe => 1,
			rebuild => 0,
			section => "auth",
		},
}

sub canedit ($$$) {
	my $page=shift;
	my $cgi=shift;
	my $session=shift;

	# Have the user sign in, if they are not already. This is why the
	# hook runs last, so that any hooks that don't need the user to
	# signin can override this.
        if (! defined $session->param("name") ||
            ! IkiWiki::userinfo_get($session->param("name"), "regdate")) {
	        return "" unless exists $IkiWiki::hooks{auth};
		return sub { IkiWiki::needsignin($cgi, $session) };
	}
	else {
		return "";
	}
}

1