]> sipb.mit.edu Git - ikiwiki.git/blob - ikiwiki.in
f48f2cfebcc32c8d6647d1d208ae7b3ad3f24dc0
[ikiwiki.git] / ikiwiki.in
1 #!/usr/bin/perl -T
2 $ENV{PATH}="/usr/local/bin:/usr/bin:/bin";
3 delete @ENV{qw{IFS CDPATH ENV BASH_ENV}};
4
5 package IkiWiki;
6
7 use warnings;
8 use strict;
9 use lib '.'; # For use in nonstandard directory, munged by Makefile.
10 use IkiWiki;
11
12 sub usage () { #{{{
13         die gettext("usage: ikiwiki [options] source dest"), "\n";
14 } #}}}
15
16 sub getconfig () { #{{{
17         if (! exists $ENV{WRAPPED_OPTIONS}) {
18                 %config=defaultconfig();
19                 eval q{use Getopt::Long};
20                 Getopt::Long::Configure('pass_through');
21                 GetOptions(
22                         "setup|s=s" => \$config{setup},
23                         "wikiname=s" => \$config{wikiname},
24                         "verbose|v!" => \$config{verbose},
25                         "syslog!" => \$config{syslog},
26                         "rebuild!" => \$config{rebuild},
27                         "refresh!" => \$config{refresh},
28                         "post-commit" => \$config{post_commit},
29                         "render=s" => \$config{render},
30                         "wrappers!" => \$config{wrappers},
31                         "usedirs!" => \$config{usedirs},
32                         "prefix-directives!" => \$config{prefix_directives},
33                         "getctime" => \$config{getctime},
34                         "numbacklinks=i" => \$config{numbacklinks},
35                         "rcs=s" => \$config{rcs},
36                         "no-rcs" => sub { $config{rcs}="" },
37                         "cgi!" => \$config{cgi},
38                         "discussion!" => \$config{discussion},
39                         "w3mmode!" => \$config{w3mmode},
40                         "url=s" => \$config{url},
41                         "cgiurl=s" => \$config{cgiurl},
42                         "historyurl=s" => \$config{historyurl},
43                         "diffurl=s" => \$config{diffurl},
44                         "svnpath" => \$config{svnpath},
45                         "adminemail=s" => \$config{adminemail},
46                         "timeformat=s" => \$config{timeformat},
47                         "sslcookie!" => \$config{sslcookie},
48                         "httpauth!" => \$config{httpauth},
49                         "userdir=s" => \$config{userdir},
50                         "htmlext=s" => \$config{htmlext},
51                         "libdir=s" => \$config{libdir},
52                         "exclude=s@" => sub {
53                                 push @{$config{wiki_file_prune_regexps}}, $_[1];
54                         },
55                         "adminuser=s@" => sub {
56                                 push @{$config{adminuser}}, $_[1]
57                         },
58                         "templatedir=s" => sub {
59                                 $config{templatedir}=possibly_foolish_untaint($_[1])
60                         },
61                         "underlaydir=s" => sub {
62                                 $config{underlaydir}=possibly_foolish_untaint($_[1])
63                         },
64                         "wrapper:s" => sub {
65                                 $config{wrapper}=$_[1] ? possibly_foolish_untaint($_[1]) : "ikiwiki-wrap"
66                         },
67                         "wrappermode=i" => sub {
68                                 $config{wrappermode}=possibly_foolish_untaint($_[1])
69                         },
70                         "plugin=s@" => sub {
71                                 push @{$config{plugin}}, $_[1];
72                         },
73                         "disable-plugin=s@" => sub {
74                                 push @{$config{disable_plugins}}, $_[1];
75                         },
76                         "set=s" => sub {
77                                 my ($var, $val)=split('=', $_[1], 2);
78                                 if (! defined $var || ! defined $val) {
79                                         die gettext("usage: --set var=value"), "\n";
80                                 }
81                                 $config{$var}=$val;
82                         },
83                         "version" => sub {
84                                 print "ikiwiki version $IkiWiki::version\n";
85                                 exit;
86                         },
87                 ) || usage();
88
89                 if (! $config{setup} && ! $config{render}) {
90                         loadplugins();
91                         usage() unless @ARGV == 2;
92                         $config{srcdir} = possibly_foolish_untaint(shift @ARGV);
93                         $config{destdir} = possibly_foolish_untaint(shift @ARGV);
94                         checkconfig();
95                 }
96         }
97         else {
98                 # wrapper passes a full config structure in the environment
99                 # variable
100                 eval possibly_foolish_untaint($ENV{WRAPPED_OPTIONS});
101                 if ($@) {
102                         error("WRAPPED_OPTIONS: $@");
103                 }
104                 loadplugins();
105                 checkconfig();
106         }
107 } #}}}
108
109 sub main () { #{{{
110         getconfig();
111         
112         if ($config{setup}) {
113                 require IkiWiki::Setup;
114                 setup();
115         }
116         elsif ($config{wrapper}) {
117                 lockwiki();
118                 require IkiWiki::Wrapper;
119                 gen_wrapper();
120         }
121         elsif ($config{cgi}) {
122                 require IkiWiki::CGI;
123                 eval {cgi()};
124                 if ($@) {
125                         cgierror($@);
126                 }
127         }
128         elsif ($config{render}) {
129                 require IkiWiki::Render;
130                 commandline_render();
131         }
132         elsif ($config{post_commit} && ! commit_hook_enabled()) {
133                 # do nothing
134         }
135         else {
136                 lockwiki();
137                 loadindex();
138                 require IkiWiki::Render;
139                 rcs_update();
140                 refresh();
141                 saveindex();
142         }
143 } #}}}
144
145 main;