summaryrefslogtreecommitdiff
path: root/ikiwiki.in
blob: f48f2cfebcc32c8d6647d1d208ae7b3ad3f24dc0 (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. "wikiname=s" => \$config{wikiname},
  20. "verbose|v!" => \$config{verbose},
  21. "syslog!" => \$config{syslog},
  22. "rebuild!" => \$config{rebuild},
  23. "refresh!" => \$config{refresh},
  24. "post-commit" => \$config{post_commit},
  25. "render=s" => \$config{render},
  26. "wrappers!" => \$config{wrappers},
  27. "usedirs!" => \$config{usedirs},
  28. "prefix-directives!" => \$config{prefix_directives},
  29. "getctime" => \$config{getctime},
  30. "numbacklinks=i" => \$config{numbacklinks},
  31. "rcs=s" => \$config{rcs},
  32. "no-rcs" => sub { $config{rcs}="" },
  33. "cgi!" => \$config{cgi},
  34. "discussion!" => \$config{discussion},
  35. "w3mmode!" => \$config{w3mmode},
  36. "url=s" => \$config{url},
  37. "cgiurl=s" => \$config{cgiurl},
  38. "historyurl=s" => \$config{historyurl},
  39. "diffurl=s" => \$config{diffurl},
  40. "svnpath" => \$config{svnpath},
  41. "adminemail=s" => \$config{adminemail},
  42. "timeformat=s" => \$config{timeformat},
  43. "sslcookie!" => \$config{sslcookie},
  44. "httpauth!" => \$config{httpauth},
  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{plugin}}, $_[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. usage() unless @ARGV == 2;
  87. $config{srcdir} = possibly_foolish_untaint(shift @ARGV);
  88. $config{destdir} = possibly_foolish_untaint(shift @ARGV);
  89. checkconfig();
  90. }
  91. }
  92. else {
  93. # wrapper passes a full config structure in the environment
  94. # variable
  95. eval possibly_foolish_untaint($ENV{WRAPPED_OPTIONS});
  96. if ($@) {
  97. error("WRAPPED_OPTIONS: $@");
  98. }
  99. loadplugins();
  100. checkconfig();
  101. }
  102. } #}}}
  103. sub main () { #{{{
  104. getconfig();
  105. if ($config{setup}) {
  106. require IkiWiki::Setup;
  107. setup();
  108. }
  109. elsif ($config{wrapper}) {
  110. lockwiki();
  111. require IkiWiki::Wrapper;
  112. gen_wrapper();
  113. }
  114. elsif ($config{cgi}) {
  115. require IkiWiki::CGI;
  116. eval {cgi()};
  117. if ($@) {
  118. cgierror($@);
  119. }
  120. }
  121. elsif ($config{render}) {
  122. require IkiWiki::Render;
  123. commandline_render();
  124. }
  125. elsif ($config{post_commit} && ! commit_hook_enabled()) {
  126. # do nothing
  127. }
  128. else {
  129. lockwiki();
  130. loadindex();
  131. require IkiWiki::Render;
  132. rcs_update();
  133. refresh();
  134. saveindex();
  135. }
  136. } #}}}
  137. main;