aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Setup/Standard.pm
blob: ed4331d6143cc5086b6aa02b31144bad86aafa8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
#!/usr/bin/perl
# Standard ikiwiki setup module.
# Parameters to import should be all the standard ikiwiki config stuff,
# plus an array of wrappers to set up.

package IkiWiki::Setup::Standard;

use warnings;
use strict;
use IkiWiki;

sub import { #{{{
	$IkiWiki::Setup::raw_setup=$_[1];
} #}}}

sub dumpline ($$$$) { #{{{
	my $key=shift;
	my $value=shift;
	my $type=shift;
	my $prefix=shift;
	
	eval q{use Data::Dumper};
	error($@) if $@;
	local $Data::Dumper::Terse=1;
	local $Data::Dumper::Indent=1;
	local $Data::Dumper::Pad="\t";
	local $Data::Dumper::Sortkeys=1;
	local $Data::Dumper::Quotekeys=0;
	
	my $dumpedvalue;
	if ($type eq 'boolean' || $type eq 'integer') {
		# avoid quotes
		$dumpedvalue=$value;
	}
	elsif ($type eq 'string' && ref $value eq 'ARRAY' && @$value &&
	    ! grep { /[^-A-Za-z0-9_]/ } @$value) {
		# dump simple array as qw{}
		$dumpedvalue="[qw{ ".join(" ", @$value)." }]";
	}
	else {
		$dumpedvalue=Dumper($value);
		chomp $dumpedvalue;
		$dumpedvalue=~s/^\t//;
	}
	
	return "\t$prefix$key => $dumpedvalue,";
} #}}}

sub dumpvalues ($@) { #{{{
	my $setup=shift;
	my @ret;
	while (@_) {
		my $key=shift;
		my %info=%{shift()};

		next if $info{type} eq "internal";
		
		push @ret, "\t# ".$info{description} if exists $info{description};
		
		if (exists $setup->{$key} && defined $setup->{$key}) {
			push @ret, dumpline($key, $setup->{$key}, $info{type}, "");
			delete $setup->{$key};
		}
		elsif (exists $info{default} && defined $info{default}) {
			push @ret, dumpline($key, $info{default}, $info{type}, "#");
		}
		elsif (exists $info{example}) {
			push @ret, dumpline($key, $info{example}, $info{type}, "#");
		}
	}
	return @ret;
} #}}}

sub dump ($) { #{{{
	my $file=IkiWiki::possibly_foolish_untaint(shift);
	
	my %setup=(%config);
	my @ret;
	
	push @ret, "\t# basic setup";
	push @ret, dumpvalues(\%setup, IkiWiki::getsetup());
	push @ret, "";

	foreach my $id (sort keys %{$IkiWiki::hooks{getsetup}}) {
		# use an array rather than a hash, to preserve order
		my @s=$IkiWiki::hooks{getsetup}{$id}{call}->();
		return unless @s;
		push @ret, "\t# $id plugin";
		push @ret, dumpvalues(\%setup, @s);
		push @ret, "";
	}
	
	unshift @ret, "#!/usr/bin/perl
# Setup file for ikiwiki.
# Passing this to ikiwiki --setup will make ikiwiki generate wrappers and
# build the wiki.
#
# Remember to re-run ikiwiki --setup any time you edit this file.

use IkiWiki::Setup::Standard {";
	push @ret, "}";

	open (OUT, ">", $file) || die "$file: $!";
	print OUT "$_\n" foreach @ret;
	close OUT;
} #}}}

1