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