]> sipb.mit.edu Git - ikiwiki.git/blob - ikiwiki.in
Only a simple test
[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             gettext("       ikiwiki --setup configfile"), "\n";
15 } #}}}
16
17 sub getconfig () { #{{{
18         if (! exists $ENV{WRAPPED_OPTIONS}) {
19                 %config=defaultconfig();
20                 eval q{use Getopt::Long};
21                 Getopt::Long::Configure('pass_through');
22                 GetOptions(
23                         "setup|s=s" => sub {
24                                 require IkiWiki::Setup;
25                                 my $verbose=$config{verbose};
26                                 my $syslog=$config{syslog};
27                                 IkiWiki::Setup::load($_[1]);
28                                 $config{setupverbose}=$config{verbose};
29                                 $config{setupsyslog}=$config{syslog};
30                                 $config{verbose}=$verbose || $config{setupverbose};
31                                 $config{syslog}=$syslog;
32                                 $config{setup}=1;
33                         },
34                         "dumpsetup|s=s" => \$config{dumpsetup},
35                         "wikiname=s" => \$config{wikiname},
36                         "verbose|v!" => \$config{verbose},
37                         "syslog!" => \$config{syslog},
38                         "rebuild!" => \$config{rebuild},
39                         "refresh!" => \$config{refresh},
40                         "post-commit" => \$config{post_commit},
41                         "render=s" => \$config{render},
42                         "wrappers!" => \$config{genwrappers},
43                         "usedirs!" => \$config{usedirs},
44                         "prefix-directives!" => \$config{prefix_directives},
45                         "getctime" => \$config{getctime},
46                         "numbacklinks=i" => \$config{numbacklinks},
47                         "rcs=s" => \$config{rcs},
48                         "no-rcs" => sub { $config{rcs}="" },
49                         "cgi!" => \$config{cgi},
50                         "discussion!" => \$config{discussion},
51                         "w3mmode!" => \$config{w3mmode},
52                         "url=s" => \$config{url},
53                         "cgiurl=s" => \$config{cgiurl},
54                         "historyurl=s" => \$config{historyurl},
55                         "diffurl=s" => \$config{diffurl},
56                         "svnpath" => \$config{svnpath},
57                         "adminemail=s" => \$config{adminemail},
58                         "timeformat=s" => \$config{timeformat},
59                         "sslcookie!" => \$config{sslcookie},
60                         "userdir=s" => \$config{userdir},
61                         "htmlext=s" => \$config{htmlext},
62                         "libdir=s" => \$config{libdir},
63                         "exclude=s@" => sub {
64                                 push @{$config{wiki_file_prune_regexps}}, $_[1];
65                         },
66                         "adminuser=s@" => sub {
67                                 push @{$config{adminuser}}, $_[1]
68                         },
69                         "templatedir=s" => sub {
70                                 $config{templatedir}=possibly_foolish_untaint($_[1])
71                         },
72                         "underlaydir=s" => sub {
73                                 $config{underlaydir}=possibly_foolish_untaint($_[1])
74                         },
75                         "wrapper:s" => sub {
76                                 $config{wrapper}=$_[1] ? possibly_foolish_untaint($_[1]) : "ikiwiki-wrap"
77                         },
78                         "wrappermode=i" => sub {
79                                 $config{wrappermode}=possibly_foolish_untaint($_[1])
80                         },
81                         "plugin=s@" => sub {
82                                 push @{$config{add_plugins}}, $_[1];
83                         },
84                         "disable-plugin=s@" => sub {
85                                 push @{$config{disable_plugins}}, $_[1];
86                         },
87                         "set=s" => sub {
88                                 my ($var, $val)=split('=', $_[1], 2);
89                                 if (! defined $var || ! defined $val) {
90                                         die gettext("usage: --set var=value"), "\n";
91                                 }
92                                 $config{$var}=$val;
93                         },
94                         "version" => sub {
95                                 print "ikiwiki version $IkiWiki::version\n";
96                                 exit;
97                         },
98                         "help|h" => sub { $SIG{__WARN__}=sub {}; die },
99                 ) || usage();
100
101                 if (! $config{setup} && ! $config{render}) {
102                         loadplugins();
103                         if (@ARGV == 2) {
104                                 $config{srcdir} = possibly_foolish_untaint(shift @ARGV);
105                                 $config{destdir} = possibly_foolish_untaint(shift @ARGV);
106                                 checkconfig();
107                         }
108                         else {
109                                 usage() unless $config{dumpsetup};
110                         }
111                 }
112         }
113         else {
114                 # wrapper passes a full config structure in the environment
115                 # variable
116                 eval possibly_foolish_untaint($ENV{WRAPPED_OPTIONS});
117                 if ($@) {
118                         error("WRAPPED_OPTIONS: $@");
119                 }
120                 delete $ENV{WRAPPED_OPTIONS};
121                 loadplugins();
122                 checkconfig();
123         }
124 } #}}}
125
126 sub main () { #{{{
127         getconfig();
128         
129         if ($config{setup}) {
130                 delete $config{setup};
131                 loadplugins();
132                 checkconfig();
133
134                 if (@{$config{wrappers}} && 
135                     ! $config{render} && ! $config{dumpsetup} &&
136                     (! $config{refresh} || $config{genwrappers})) {
137                         debug(gettext("generating wrappers.."));
138                         require IkiWiki::Wrapper;
139                         my %origconfig=(%config);
140                         foreach my $wrapper (@{$config{wrappers}}) {
141                                 %config=(%origconfig, %{$wrapper});
142                                 $config{verbose}=$config{setupverbose}
143                                         if exists $config{setupverbose};
144                                 $config{syslog}=$config{setupsyslog}
145                                         if exists $config{setupsyslog};
146                                 delete @config{qw(setupsyslog setupverbose wrappers genwrappers rebuild)};
147                                 checkconfig();
148                                 if (! $config{cgi} && ! $config{post_commit}) {
149                                         $config{post_commit}=1;
150                                 }
151                                 gen_wrapper();
152                         }
153                         %config=(%origconfig);
154                 }
155                 
156                 # setup implies a wiki rebuild by default
157                 if (! $config{refresh}) {
158                         $config{rebuild}=1;
159                 }
160         }
161
162         if ($config{dumpsetup}) {
163                 $config{srdir}=$config{destdir}="";
164                 require IkiWiki::Setup;
165                 IkiWiki::Setup::dump($config{dumpsetup});
166         }
167         elsif ($config{wrapper}) {
168                 lockwiki();
169                 require IkiWiki::Wrapper;
170                 gen_wrapper();
171         }
172         elsif ($config{cgi}) {
173                 require IkiWiki::CGI;
174                 eval {cgi()};
175                 if ($@) {
176                         cgierror($@);
177                 }
178         }
179         elsif ($config{render}) {
180                 require IkiWiki::Render;
181                 commandline_render();
182         }
183         elsif ($config{post_commit} && ! commit_hook_enabled()) {
184                 # do nothing
185         }
186         else {
187                 if ($config{rebuild}) {
188                         debug(gettext("rebuilding wiki.."));
189                 }
190                 else {
191                         debug(gettext("refreshing wiki.."));
192                 }
193                 lockwiki();
194                 loadindex();
195                 require IkiWiki::Render;
196                 rcs_update();
197                 refresh();
198                 saveindex();
199                 debug(gettext("done"));
200         }
201 } #}}}
202
203 main;