2 # Ikiwiki setup files are perl files that 'use IkiWiki::Setup::foo',
3 # passing it some sort of configuration data.
5 package IkiWiki::Setup;
10 use open qw{:utf8 :std};
14 my $setup=IkiWiki::possibly_foolish_untaint(shift);
15 $config{setupfile}=File::Spec->rel2abs($setup);
17 #translators: The first parameter is a filename, and the second
18 #translators: is a (probably not translated) error message.
19 open (IN, $setup) || error(sprintf(gettext("cannot read %s: %s"), $setup, $!));
23 $code=<IN> || error("$setup: $!");
26 ($code)=$code=~/(.*)/s;
30 error("$setup: ".$@) if $@;
34 # Merge setup into existing config and untaint.
37 if (exists $setup{add_plugins} && exists $config{add_plugins}) {
38 push @{$setup{add_plugins}}, @{$config{add_plugins}};
40 if (exists $setup{exclude}) {
41 push @{$config{wiki_file_prune_regexps}}, $setup{exclude};
43 foreach my $c (keys %setup) {
44 if (defined $setup{$c}) {
45 if (! ref $setup{$c} || ref $setup{$c} eq 'Regexp') {
46 $config{$c}=IkiWiki::possibly_foolish_untaint($setup{$c});
48 elsif (ref $setup{$c} eq 'ARRAY') {
49 if ($c eq 'wrappers') {
50 # backwards compatability code
51 $config{$c}=$setup{$c};
54 $config{$c}=[map { IkiWiki::possibly_foolish_untaint($_) } @{$setup{$c}}]
57 elsif (ref $setup{$c} eq 'HASH') {
58 foreach my $key (keys %{$setup{$c}}) {
59 $config{$c}{$key}=IkiWiki::possibly_foolish_untaint($setup{$c}{$key});
68 if (length $config{cgi_wrapper}) {
69 push @{$config{wrappers}}, {
71 wrapper => $config{cgi_wrapper},
72 wrappermode => (defined $config{cgi_wrappermode} ? $config{cgi_wrappermode} : "06755"),
78 # Gets all available setup data from all plugins. Returns an
79 # ordered list of [plugin, setup] pairs.
82 # disable logging to syslog while dumping, broken plugins may
84 my $syslog=$config{syslog};
85 $config{syslog}=undef;
87 # Load all plugins, so that all setup options are available.
88 my @plugins=grep { $_ ne $config{rcs} } sort(IkiWiki::listplugins());
89 unshift @plugins, $config{rcs} if $config{rcs}; # rcs plugin 1st
90 foreach my $plugin (@plugins) {
91 eval { IkiWiki::loadplugin($plugin) };
92 if (exists $IkiWiki::hooks{checkconfig}{$plugin}{call}) {
93 my @s=eval { $IkiWiki::hooks{checkconfig}{$plugin}{call}->() };
97 foreach my $plugin (@plugins) {
98 if (exists $IkiWiki::hooks{getsetup}{$plugin}{call}) {
99 # use an array rather than a hash, to preserve order
100 my @s=eval { $IkiWiki::hooks{getsetup}{$plugin}{call}->() };
102 push @ret, [ $plugin, \@s ],
106 $config{syslog}=$syslog;
112 my $file=IkiWiki::possibly_foolish_untaint(shift);
114 require IkiWiki::Setup::Standard;
115 my @dump=IkiWiki::Setup::Standard::gendump("Setup file for ikiwiki.");
117 open (OUT, ">", $file) || die "$file: $!";
118 print OUT "$_\n" foreach @dump;