2008-10-23 22:29:50 +02:00
|
|
|
#!/usr/bin/perl
|
|
|
|
package IkiWiki::Receive;
|
|
|
|
|
|
|
|
use warnings;
|
|
|
|
use strict;
|
|
|
|
use IkiWiki;
|
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub getuser () {
|
2008-10-24 21:47:42 +02:00
|
|
|
my $user=(getpwuid(exists $ENV{CALLER_UID} ? $ENV{CALLER_UID} : $<))[0];
|
2008-10-23 22:29:50 +02:00
|
|
|
if (! defined $user) {
|
|
|
|
error("cannot determine username for $<");
|
|
|
|
}
|
|
|
|
return $user;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-10-23 22:29:50 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub trusted () {
|
2008-10-23 22:29:50 +02:00
|
|
|
my $user=getuser();
|
|
|
|
return ! ref $config{untrusted_committers} ||
|
|
|
|
! grep { $_ eq $user } @{$config{untrusted_committers}};
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-10-23 22:29:50 +02:00
|
|
|
|
2009-09-10 22:09:19 +02:00
|
|
|
sub genwrapper () {
|
2008-10-26 19:03:18 +01:00
|
|
|
# Test for commits from untrusted committers in the wrapper, to
|
2009-09-10 22:09:19 +02:00
|
|
|
# avoid starting ikiwiki proper at all for trusted commits.
|
2008-10-26 19:03:18 +01:00
|
|
|
|
|
|
|
my $ret=<<"EOF";
|
|
|
|
{
|
|
|
|
int u=getuid();
|
|
|
|
EOF
|
|
|
|
$ret.="\t\tif ( ".
|
|
|
|
join("&&", map {
|
|
|
|
my $uid=getpwnam($_);
|
|
|
|
if (! defined $uid) {
|
|
|
|
error(sprintf(gettext("cannot determine id of untrusted committer %s"), $_));
|
|
|
|
}
|
|
|
|
"u != $uid";
|
|
|
|
} @{$config{untrusted_committers}}).
|
|
|
|
") exit(0);\n";
|
2009-09-10 22:09:19 +02:00
|
|
|
|
|
|
|
|
2008-10-26 19:03:18 +01:00
|
|
|
$ret.=<<"EOF";
|
|
|
|
asprintf(&s, "CALLER_UID=%i", u);
|
|
|
|
newenviron[i++]=s;
|
|
|
|
}
|
|
|
|
EOF
|
|
|
|
return $ret;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-10-26 19:03:18 +01:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub test () {
|
2008-10-23 22:29:50 +02:00
|
|
|
exit 0 if trusted();
|
2010-10-01 06:06:00 +02:00
|
|
|
|
2008-10-24 21:47:42 +02:00
|
|
|
IkiWiki::lockwiki();
|
|
|
|
IkiWiki::loadindex();
|
2010-10-01 06:06:00 +02:00
|
|
|
|
2008-10-23 22:29:50 +02:00
|
|
|
# Dummy up a cgi environment to use when calling check_canedit
|
|
|
|
# and friends.
|
|
|
|
eval q{use CGI};
|
|
|
|
error($@) if $@;
|
|
|
|
my $cgi=CGI->new;
|
2008-10-24 21:47:42 +02:00
|
|
|
|
|
|
|
# And dummy up a session object.
|
2008-10-23 22:29:50 +02:00
|
|
|
require IkiWiki::CGI;
|
|
|
|
my $session=IkiWiki::cgi_getsession($cgi);
|
2008-10-24 00:05:12 +02:00
|
|
|
$session->param("name", getuser());
|
2008-10-24 21:47:42 +02:00
|
|
|
# Make sure whatever user was authed is in the
|
|
|
|
# userinfo db.
|
|
|
|
require IkiWiki::UserInfo;
|
|
|
|
if (! IkiWiki::userinfo_get($session->param("name"), "regdate")) {
|
|
|
|
IkiWiki::userinfo_setall($session->param("name"), {
|
|
|
|
email => "",
|
|
|
|
password => "",
|
|
|
|
regdate => time,
|
|
|
|
}) || error("failed adding user");
|
|
|
|
}
|
2008-10-23 22:29:50 +02:00
|
|
|
|
2010-10-23 21:25:29 +02:00
|
|
|
IkiWiki::check_canchange(
|
2010-10-09 00:06:38 +02:00
|
|
|
cgi => $cgi,
|
2010-10-04 22:52:52 +02:00
|
|
|
session => $session,
|
|
|
|
changes => [IkiWiki::rcs_receive()]
|
|
|
|
);
|
2010-10-01 06:06:00 +02:00
|
|
|
exit 0;
|
|
|
|
}
|
|
|
|
|
2008-10-23 22:29:50 +02:00
|
|
|
1
|