summaryrefslogtreecommitdiff
path: root/ikiwiki.in
blob: 6242865ee4206cb7b4a760ed7dc705a5b4c5a07a (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. "getctime" => \$config{getctime},
  29. "wrappermode=i" => \$config{wrappermode},
  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. "notify!" => \$config{notify},
  37. "url=s" => \$config{url},
  38. "cgiurl=s" => \$config{cgiurl},
  39. "historyurl=s" => \$config{historyurl},
  40. "diffurl=s" => \$config{diffurl},
  41. "svnrepo" => \$config{svnrepo},
  42. "svnpath" => \$config{svnpath},
  43. "adminemail=s" => \$config{adminemail},
  44. "timeformat=s" => \$config{timeformat},
  45. "sslcookie!" => \$config{sslcookie},
  46. "httpauth!" => \$config{httpauth},
  47. "userdir=s" => \$config{userdir},
  48. "htmlext=s" => \$config{htmlext},
  49. "libdir=s" => \$config{libdir},
  50. "exclude=s@" => sub {
  51. push @{$config{wiki_file_prune_regexps}}, $_[1];
  52. },
  53. "adminuser=s@" => sub {
  54. push @{$config{adminuser}}, $_[1]
  55. },
  56. "templatedir=s" => sub {
  57. $config{templatedir}=possibly_foolish_untaint($_[1])
  58. },
  59. "underlaydir=s" => sub {
  60. $config{underlaydir}=possibly_foolish_untaint($_[1])
  61. },
  62. "wrapper:s" => sub {
  63. $config{wrapper}=$_[1] ? $_[1] : "ikiwiki-wrap"
  64. },
  65. "plugin=s@" => sub {
  66. push @{$config{plugin}}, $_[1];
  67. },
  68. "disable-plugin=s@" => sub {
  69. push @{$config{disable_plugins}}, $_[1];
  70. },
  71. "pingurl=s" => sub {
  72. push @{$config{pingurl}}, $_[1];
  73. },
  74. "set=s" => sub {
  75. my ($var, $val)=split('=', $_[1], 2);
  76. if (! defined $var || ! defined $val) {
  77. die gettext("usage: --set var=value"), "\n";
  78. }
  79. $config{$var}=$val;
  80. },
  81. "version" => sub {
  82. print "ikiwiki version $IkiWiki::version\n";
  83. exit;
  84. },
  85. ) || usage();
  86. if (! $config{setup} && ! $config{render}) {
  87. loadplugins();
  88. usage() unless @ARGV == 2;
  89. $config{srcdir} = possibly_foolish_untaint(shift @ARGV);
  90. $config{destdir} = possibly_foolish_untaint(shift @ARGV);
  91. checkconfig();
  92. }
  93. }
  94. else {
  95. # wrapper passes a full config structure in the environment
  96. # variable
  97. eval possibly_foolish_untaint($ENV{WRAPPED_OPTIONS});
  98. if ($@) {
  99. error("WRAPPED_OPTIONS: $@");
  100. }
  101. loadplugins();
  102. checkconfig();
  103. }
  104. } #}}}
  105. sub main () { #{{{
  106. getconfig();
  107. if ($config{cgi}) {
  108. loadindex();
  109. require IkiWiki::CGI;
  110. cgi();
  111. }
  112. elsif ($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{render}) {
  122. require IkiWiki::Render;
  123. commandline_render();
  124. }
  125. elsif ($config{post_commit} && ! commit_hook_enabled()) {
  126. if ($config{notify}) {
  127. loadindex();
  128. rcs_notify();
  129. }
  130. }
  131. else {
  132. lockwiki();
  133. loadindex();
  134. require IkiWiki::Render;
  135. rcs_update();
  136. refresh();
  137. rcs_notify() if $config{notify};
  138. saveindex();
  139. }
  140. } #}}}
  141. main;