From 929a70a16d898051f37ee497f275a894d6fc1362 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Sun, 27 Jul 2008 15:44:11 -0400 Subject: [PATCH] password prompt for admin user --- IkiWiki/Setup/Automator.pm | 38 +++++++++++++++++++++++++++++++++----- doc/setup.mdwn | 1 + 2 files changed, 34 insertions(+), 5 deletions(-) diff --git a/IkiWiki/Setup/Automator.pm b/IkiWiki/Setup/Automator.pm index af98c9847..202c5541c 100644 --- a/IkiWiki/Setup/Automator.pm +++ b/IkiWiki/Setup/Automator.pm @@ -6,6 +6,7 @@ package IkiWiki::Setup::Automator; use warnings; use strict; use IkiWiki; +use IkiWiki::UserInfo; use Term::ReadLine; use File::Path; @@ -36,11 +37,11 @@ sub import (@) { #{{{ foreach my $key (qw{srcdir destdir repository dumpsetup}) { next unless exists $config{$key}; my $add=""; - while (-e $config{$key}.$add) { + while (-e $add.$config{$key}) { $add=1 if ! $add; $add++; } - $config{$key}.=$add; + $config{$key}=$add.$config{$key}; } IkiWiki::checkconfig(); @@ -76,10 +77,37 @@ sub import (@) { #{{{ } IkiWiki::Setup::dump($config{dumpsetup}); - # Build the wiki. + # Build the wiki, but w/o wrappers, so it's not live yet. mkpath($config{destdir}) || die "mkdir $config{destdir}: $!"; - if (system("ikiwiki", "--setup", $config{dumpsetup}) != 0) { - die "ikiwiki --setup $config{dumpsetup} failed"; + if (system("ikiwiki", "--refresh", "--setup", $config{dumpsetup}) != 0) { + die "ikiwiki --refresh --setup $config{dumpsetup} failed"; + } + + # Create admin user(s). + foreach my $admin (@{$config{adminuser}}) { + next if $admin=~/^http\?:\/\//; # openid + + # Prompt for password w/o echo. + system('stty -echo 2>/dev/null'); + local $|=1; + print "\n\nCreating wiki admin $admin ...\n"; + print "Choose a password: "; + chomp(my $password=); + print "\n\n\n"; + system('stty sane 2>/dev/null'); + + if (IkiWiki::userinfo_setall($admin, { regdate => time }) && + IkiWiki::Plugin::passwordauth::setpassword($admin, $password)) { + IkiWiki::userinfo_set($admin, "email", $config{adminemail}) if defined $config{adminemail}; + } + else { + error("problem setting up $admin user"); + } + } + + # Add wrappers, make live. + if (system("ikiwiki", "--wrappers", "--setup", $config{dumpsetup}) != 0) { + die "ikiwiki --wrappers --setup $config{dumpsetup} failed"; } # Done! diff --git a/doc/setup.mdwn b/doc/setup.mdwn index bc93da7b3..09ca55038 100644 --- a/doc/setup.mdwn +++ b/doc/setup.mdwn @@ -15,6 +15,7 @@ and answer a couple of questions. % ikiwiki -setup /etc/ikiwiki/simple.setup What will the wiki be named? mywiki What revision control system to use? git + What wiki user (or openid) will be wiki admin? joey Wait for it to tell you an url for your new wiki.. Done! -- 2.44.0