ikiwiki/ikiwiki.in

141 lines
3.4 KiB
Plaintext
Raw Normal View History

#!/usr/bin/perl -T
2006-03-13 03:19:15 +01:00
$ENV{PATH}="/usr/local/bin:/usr/bin:/bin";
delete @ENV{qw{IFS CDPATH ENV BASH_ENV}};
2006-03-10 03:10:44 +01:00
package IkiWiki;
2006-03-10 03:10:44 +01:00
use warnings;
use strict;
use lib '.'; # For use in nonstandard directory, munged by Makefile.
use IkiWiki;
2006-03-23 09:13:39 +01:00
sub usage () { #{{{
die gettext("usage: ikiwiki [options] source dest"), "\n";
2006-03-23 09:13:39 +01:00
} #}}}
2006-03-23 09:04:34 +01:00
sub getconfig () { #{{{
if (! exists $ENV{WRAPPED_OPTIONS}) {
%config=defaultconfig();
2006-03-23 09:04:34 +01:00
eval q{use Getopt::Long};
Getopt::Long::Configure('pass_through');
2006-03-23 09:04:34 +01:00
GetOptions(
"setup|s=s" => \$config{setup},
"wikiname=s" => \$config{wikiname},
"verbose|v!" => \$config{verbose},
"syslog!" => \$config{syslog},
2006-03-23 09:04:34 +01:00
"rebuild!" => \$config{rebuild},
"refresh!" => \$config{refresh},
"post-commit" => \$config{post_commit},
"render=s" => \$config{render},
"wrappers!" => \$config{wrappers},
"usedirs!" => \$config{usedirs},
2006-03-26 04:30:44 +02:00
"getctime" => \$config{getctime},
2006-03-23 09:04:34 +01:00
"wrappermode=i" => \$config{wrappermode},
"numbacklinks=i" => \$config{numbacklinks},
"rcs=s" => \$config{rcs},
"no-rcs" => sub { $config{rcs}="" },
2006-03-23 09:04:34 +01:00
"cgi!" => \$config{cgi},
"discussion!" => \$config{discussion},
"w3mmode!" => \$config{w3mmode},
2006-04-25 01:09:26 +02:00
"notify!" => \$config{notify},
2006-03-23 09:04:34 +01:00
"url=s" => \$config{url},
"cgiurl=s" => \$config{cgiurl},
"historyurl=s" => \$config{historyurl},
"diffurl=s" => \$config{diffurl},
2006-04-25 01:09:26 +02:00
"svnrepo" => \$config{svnrepo},
"svnpath" => \$config{svnpath},
"adminemail=s" => \$config{adminemail},
"timeformat=s" => \$config{timeformat},
"sslcookie!" => \$config{sslcookie},
"httpauth!" => \$config{httpauth},
2006-12-29 06:58:33 +01:00
"userdir=s" => \$config{userdir},
2006-03-23 09:04:34 +01:00
"exclude=s@" => sub {
2006-12-21 20:46:01 +01:00
push @{$config{wiki_file_prune_regexps}}, $_[1];
2006-03-23 09:04:34 +01:00
},
"adminuser=s@" => sub {
push @{$config{adminuser}}, $_[1]
},
"templatedir=s" => sub {
$config{templatedir}=possibly_foolish_untaint($_[1])
},
"underlaydir=s" => sub {
$config{underlaydir}=possibly_foolish_untaint($_[1])
},
2006-03-23 09:04:34 +01:00
"wrapper:s" => sub {
$config{wrapper}=$_[1] ? $_[1] : "ikiwiki-wrap"
},
"plugin=s@" => sub {
push @{$config{plugin}}, $_[1];
},
"disable-plugin=s@" => sub {
push @{$config{disable_plugins}}, $_[1];
},
"pingurl=s" => sub {
push @{$config{pingurl}}, $_[1];
},
"version" => sub {
print "ikiwiki version $IkiWiki::version\n";
exit;
},
2006-03-23 09:04:34 +01:00
) || usage();
if (! $config{setup} && ! $config{render}) {
loadplugins();
2006-03-23 09:04:34 +01:00
usage() unless @ARGV == 2;
2006-03-23 11:27:47 +01:00
$config{srcdir} = possibly_foolish_untaint(shift @ARGV);
$config{destdir} = possibly_foolish_untaint(shift @ARGV);
2006-03-23 09:04:34 +01:00
checkconfig();
}
}
else {
# wrapper passes a full config structure in the environment
# variable
eval possibly_foolish_untaint($ENV{WRAPPED_OPTIONS});
if ($@) {
error("WRAPPED_OPTIONS: $@");
}
loadplugins();
2006-03-23 09:04:34 +01:00
checkconfig();
}
} #}}}
sub main () { #{{{
2006-03-23 09:04:34 +01:00
getconfig();
2006-03-24 03:42:19 +01:00
if ($config{cgi}) {
loadindex();
require IkiWiki::CGI;
cgi();
}
elsif ($config{setup}) {
require IkiWiki::Setup;
setup();
}
2006-03-23 08:55:36 +01:00
elsif ($config{wrapper}) {
lockwiki();
require IkiWiki::Wrapper;
gen_wrapper();
}
elsif ($config{render}) {
require IkiWiki::Render;
commandline_render();
}
elsif ($config{post_commit} && ! commit_hook_enabled()) {
if ($config{notify}) {
loadindex();
rcs_notify();
}
}
else {
2006-03-23 08:55:36 +01:00
lockwiki();
2006-03-23 22:54:30 +01:00
loadindex();
require IkiWiki::Render;
rcs_update();
refresh();
rcs_notify() if $config{notify};
saveindex();
}
} #}}}
main;