2 # Ikiwiki setup automator.
4 package IkiWiki::Setup::Automator;
15 my ($question, $default)=@_;
17 my $r=Term::ReadLine->new("ikiwiki");
18 $r->readline(encode_utf8($question)." ", $default);
23 $dir=~s/^\Q$ENV{HOME}\E\//~\//;
29 IkiWiki::Setup::merge({@_});
31 # Sanitize this to avoid problimatic directory names.
32 $config{wikiname}=~s/[^-A-Za-z0-9_]//g;
33 if (! length $config{wikiname}) {
34 error gettext("you must enter a wikiname (that contains alphanumerics)");
37 # Avoid overwriting any existing files.
38 foreach my $key (qw{srcdir destdir repository dumpsetup}) {
39 next unless exists $config{$key};
41 my $dir=IkiWiki::dirname($config{$key})."/";
42 my $base=IkiWiki::basename($config{$key});
43 while (-e $dir.$add.$base) {
47 $config{$key}=$dir.$add.$base;
52 if ($config{rcs} eq 'git') {
53 $config{git_wrapper}=$config{repository}."/hooks/post-update";
55 elsif ($config{rcs} eq 'svn') {
56 $config{svn_wrapper}=$config{repository}."/hooks/post-commit";
58 elsif ($config{rcs} eq 'monotone') {
59 $config{mtn_wrapper}=$config{srcdir}."_MTN/ikiwiki-netsync-hook";
61 elsif ($config{rcs} eq 'darcs') {
62 $config{darcs_wrapper}=$config{repository}."/_darcs/ikiwiki-wrapper";
64 elsif ($config{rcs} eq 'bzr') {
67 elsif ($config{rcs} eq 'mercurial') {
71 error sprintf(gettext("unsupported revision control system %s"),
76 IkiWiki::checkconfig();
78 print "\n\nSetting up $config{wikiname} ...\n";
81 mkpath($config{srcdir}) || die "mkdir $config{srcdir}: $!";
82 # Copy in example wiki.
83 if (exists $config{example}) {
85 # Another reason not to use -a is so that pages such as blog
86 # posts will not have old creation dates on this new wiki.
87 system("cp -R $IkiWiki::installdir/share/ikiwiki/examples/$config{example}/* $config{srcdir}");
88 delete $config{example};
91 # Set up the repository.
92 delete $config{repository} if ! $config{rcs} || $config{rcs}=~/bzr|mercurial/;
94 my @params=($config{rcs}, $config{srcdir});
95 push @params, $config{repository} if exists $config{repository};
96 if (system("ikiwiki-makerepo", @params) != 0) {
97 error gettext("failed to set up the repository with ikiwiki-makerepo");
101 # Make sure that all the listed plugins can load
102 # and checkconfig is ok. If a plugin fails to work,
103 # remove it from the configuration and keep on truckin'.
104 my %bakconfig=%config; # checkconfig can modify %config so back up
105 if (! eval { IkiWiki::loadplugins(); IkiWiki::checkconfig() }) {
106 foreach my $plugin (@{$config{default_plugins}}, @{$bakconfig{add_plugins}}) {
108 # delete all hooks so that only this plugins's
109 # checkconfig will be run
111 IkiWiki::loadplugin($plugin);
112 IkiWiki::run_hooks(checkconfig => sub { shift->() });
115 print STDERR sprintf(gettext("** Disabling plugin %s, since it is failing with this message:"),
118 push @{$bakconfig{disable_plugins}}, $plugin;
124 # Generate setup file.
125 require IkiWiki::Setup;
126 IkiWiki::Setup::dump($config{dumpsetup});
128 # Build the wiki, but w/o wrappers, so it's not live yet.
129 mkpath($config{destdir}) || die "mkdir $config{destdir}: $!";
130 if (system("ikiwiki", "--refresh", "--setup", $config{dumpsetup}) != 0) {
131 die "ikiwiki --refresh --setup $config{dumpsetup} failed";
134 # Create admin user(s).
135 foreach my $admin (@{$config{adminuser}}) {
136 next if $admin=~/^http\?:\/\//; # openid
138 # Prompt for password w/o echo.
139 my ($password, $password2);
140 system('stty -echo 2>/dev/null');
142 print "\n\nCreating wiki admin $admin ...\n";
144 print "Choose a password: ";
145 chomp($password=<STDIN>);
147 print "Confirm password: ";
148 chomp($password2=<STDIN>);
150 last if $password2 eq $password;
152 print "Password mismatch.\n\n";
155 system('stty sane 2>/dev/null');
157 if (IkiWiki::userinfo_setall($admin, { regdate => time }) &&
158 IkiWiki::Plugin::passwordauth::setpassword($admin, $password)) {
159 IkiWiki::userinfo_set($admin, "email", $config{adminemail}) if defined $config{adminemail};
162 error("problem setting up $admin user");
166 # Add wrappers, make live.
167 if (system("ikiwiki", "--wrappers", "--setup", $config{dumpsetup}) != 0) {
168 die "ikiwiki --wrappers --setup $config{dumpsetup} failed";
171 # Add it to the wikilist.
172 mkpath("$ENV{HOME}/.ikiwiki");
173 open (WIKILIST, ">>$ENV{HOME}/.ikiwiki/wikilist") || die "$ENV{HOME}/.ikiwiki/wikilist: $!";
174 print WIKILIST "$ENV{USER} $config{dumpsetup}\n";
176 if (system("ikiwiki-update-wikilist") != 0) {
177 print STDERR "** Failed to add you to the system wikilist file.\n";
178 print STDERR "** (Probably ikiwiki-update-wikilist is not SUID root.)\n";
179 print STDERR "** Your wiki will not be automatically updated when ikiwiki is upgraded.\n";
183 print "\n\nSuccessfully set up $config{wikiname}:\n";
184 foreach my $key (qw{url srcdir destdir repository}) {
185 next unless exists $config{$key};
186 print "\t$key: ".(" " x (10 - length($key)))." ".
187 prettydir($config{$key})."\n";
189 print "To modify settings, edit ".prettydir($config{dumpsetup})." and then run:\n";
190 print " ikiwiki -setup ".prettydir($config{dumpsetup})."\n";