ikiwiki/IkiWiki/Plugin/httpauth.pm

55 lines
1021 B
Perl
Raw Normal View History

#!/usr/bin/perl
# HTTP basic auth plugin.
package IkiWiki::Plugin::httpauth;
use warnings;
use strict;
use IkiWiki 3.00;
sub import {
hook(type => "getsetup", id => "httpauth", call => \&getsetup);
hook(type => "auth", id => "httpauth", call => \&auth);
2010-02-05 21:22:02 +01:00
hook(type => "canedit", id => "httpauth", call => \&canedit,
last => 1);
}
sub getsetup () {
return
plugin => {
safe => 1,
rebuild => 0,
},
cgiauthurl => {
type => "string",
2009-11-10 06:53:34 +01:00
example => "http://example.com/wiki/auth/ikiwiki.cgi",
description => "url to redirect to when authentication is needed",
safe => 1,
rebuild => 0,
},
}
sub auth ($$) {
my $cgi=shift;
my $session=shift;
if (defined $cgi->remote_user()) {
$session->param("name", $cgi->remote_user());
}
2010-02-05 21:22:02 +01:00
}
sub canedit ($$$) {
my $page=shift;
my $cgi=shift;
my $session=shift;
if (! defined $cgi->remote_user() && defined $config{cgiauthurl}) {
IkiWiki::redirect($cgi, $config{cgiauthurl}.'?'.$cgi->query_string());
exit;
}
2010-02-05 21:22:02 +01:00
else {
return undef;
}
}
1