2006-06-15 08:37:33 +02:00
|
|
|
#!/usr/bin/perl -T
|
2006-03-13 03:19:15 +01:00
|
|
|
$ENV{PATH}="/usr/local/bin:/usr/bin:/bin";
|
2006-08-03 18:13:48 +02:00
|
|
|
delete @ENV{qw{IFS CDPATH ENV BASH_ENV}};
|
2006-03-10 03:10:44 +01:00
|
|
|
|
2006-03-23 07:51:15 +01:00
|
|
|
package IkiWiki;
|
2006-08-13 04:03:43 +02:00
|
|
|
|
2006-03-10 03:10:44 +01:00
|
|
|
use warnings;
|
|
|
|
use strict;
|
2006-11-20 23:12:43 +01:00
|
|
|
use lib '.'; # For use in nonstandard directory, munged by Makefile.
|
2006-05-02 08:53:33 +02:00
|
|
|
use IkiWiki;
|
2006-03-13 03:08:04 +01:00
|
|
|
|
2006-03-23 09:13:39 +01:00
|
|
|
sub usage () { #{{{
|
2006-12-29 05:38:40 +01:00
|
|
|
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}) {
|
2006-05-04 20:51:26 +02:00
|
|
|
%config=defaultconfig();
|
2006-03-23 09:04:34 +01:00
|
|
|
eval q{use Getopt::Long};
|
2006-07-28 07:26:49 +02:00
|
|
|
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},
|
2006-08-16 23:17:49 +02:00
|
|
|
"syslog!" => \$config{syslog},
|
2006-03-23 09:04:34 +01:00
|
|
|
"rebuild!" => \$config{rebuild},
|
2006-03-26 07:08:41 +02:00
|
|
|
"refresh!" => \$config{refresh},
|
2006-09-21 23:34:29 +02:00
|
|
|
"render=s" => \$config{render},
|
2006-07-30 06:31:08 +02:00
|
|
|
"wrappers!" => \$config{wrappers},
|
2006-03-26 04:30:44 +02:00
|
|
|
"getctime" => \$config{getctime},
|
2006-03-23 09:04:34 +01:00
|
|
|
"wrappermode=i" => \$config{wrappermode},
|
2006-05-02 20:44:39 +02:00
|
|
|
"rcs=s" => \$config{rcs},
|
|
|
|
"no-rcs" => sub { $config{rcs}="" },
|
2006-03-23 09:04:34 +01:00
|
|
|
"cgi!" => \$config{cgi},
|
2006-05-05 20:20:52 +02:00
|
|
|
"discussion!" => \$config{discussion},
|
2006-07-07 23:00:48 +02:00
|
|
|
"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},
|
2006-05-29 07:09:43 +02:00
|
|
|
"timeformat=s" => \$config{timeformat},
|
2006-08-27 22:25:05 +02:00
|
|
|
"sslcookie!" => \$config{sslcookie},
|
2006-10-03 00:56:09 +02:00
|
|
|
"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])
|
|
|
|
},
|
2006-03-29 20:21:01 +02:00
|
|
|
"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"
|
|
|
|
},
|
2006-05-02 04:34:33 +02:00
|
|
|
"plugin=s@" => sub {
|
|
|
|
push @{$config{plugin}}, $_[1];
|
2006-05-05 07:41:11 +02:00
|
|
|
},
|
|
|
|
"disable-plugin=s@" => sub {
|
2006-12-29 05:49:55 +01:00
|
|
|
push @{$config{disable_plugins}}, $_[1];
|
2006-05-05 07:41:11 +02:00
|
|
|
},
|
2006-10-16 20:33:59 +02:00
|
|
|
"pingurl=s" => sub {
|
2006-06-27 03:13:03 +02:00
|
|
|
push @{$config{pingurl}}, $_[1];
|
2006-08-13 04:03:43 +02:00
|
|
|
},
|
|
|
|
"version" => sub {
|
2006-10-09 01:57:37 +02:00
|
|
|
print "ikiwiki version $IkiWiki::version\n";
|
2006-08-13 04:03:43 +02:00
|
|
|
exit;
|
|
|
|
},
|
2006-03-23 09:04:34 +01:00
|
|
|
) || usage();
|
|
|
|
|
2006-09-21 23:34:29 +02:00
|
|
|
if (! $config{setup} && ! $config{render}) {
|
2006-07-28 07:26:49 +02:00
|
|
|
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});
|
2006-05-03 23:50:39 +02:00
|
|
|
if ($@) {
|
|
|
|
error("WRAPPED_OPTIONS: $@");
|
|
|
|
}
|
2006-07-28 07:26:49 +02:00
|
|
|
loadplugins();
|
2006-03-23 09:04:34 +01:00
|
|
|
checkconfig();
|
|
|
|
}
|
|
|
|
} #}}}
|
|
|
|
|
2006-03-23 08:51:52 +01:00
|
|
|
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}) {
|
2006-03-23 08:51:52 +01:00
|
|
|
require IkiWiki::Setup;
|
|
|
|
setup();
|
|
|
|
}
|
2006-03-23 08:55:36 +01:00
|
|
|
elsif ($config{wrapper}) {
|
|
|
|
lockwiki();
|
2006-03-23 08:51:52 +01:00
|
|
|
require IkiWiki::Wrapper;
|
|
|
|
gen_wrapper();
|
|
|
|
}
|
2006-09-21 23:34:29 +02:00
|
|
|
elsif ($config{render}) {
|
|
|
|
require IkiWiki::Render;
|
|
|
|
commandline_render();
|
|
|
|
}
|
2007-02-21 09:55:28 +01:00
|
|
|
elsif ($config{post_commit} && ! commit_hook_enabled()) {
|
|
|
|
if ($config{notify}) {
|
|
|
|
loadindex();
|
|
|
|
rcs_notify();
|
|
|
|
}
|
|
|
|
}
|
2006-03-23 08:51:52 +01:00
|
|
|
else {
|
2006-03-23 08:55:36 +01:00
|
|
|
lockwiki();
|
2006-03-23 22:54:30 +01:00
|
|
|
loadindex();
|
2006-03-23 08:51:52 +01:00
|
|
|
require IkiWiki::Render;
|
|
|
|
rcs_update();
|
|
|
|
refresh();
|
2006-04-28 07:16:24 +02:00
|
|
|
rcs_notify() if $config{notify};
|
2006-03-23 08:51:52 +01:00
|
|
|
saveindex();
|
|
|
|
}
|
|
|
|
} #}}}
|
|
|
|
|
|
|
|
main;
|