From e19ad8ab8a55d39493fd257eb58f644554e873ef Mon Sep 17 00:00:00 2001 From: epriestley Date: Mon, 2 Dec 2013 11:25:42 -0800 Subject: [PATCH] Warn users about using `bin/accountadmin` for first time setup Summary: The "easy setup" is sort of an exaggeration since it basically just amounts to getting you logged in correctly, but it will probably be more true in the future. Test Plan: Ran `bin/accountadmin` with zero and more than zero accounts. Reviewers: asherkin, btrahan Reviewed By: btrahan CC: aran Differential Revision: https://secure.phabricator.com/D7678 --- scripts/user/account_admin.php | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/scripts/user/account_admin.php b/scripts/user/account_admin.php index 0cb9087eca..bb0b060940 100755 --- a/scripts/user/account_admin.php +++ b/scripts/user/account_admin.php @@ -4,6 +4,29 @@ $root = dirname(dirname(dirname(__FILE__))); require_once $root.'/scripts/__init_script__.php'; +$table = new PhabricatorUser(); +$any_user = queryfx_one( + $table->establishConnection('r'), + 'SELECT * FROM %T LIMIT 1', + $table->getTableName()); +$is_first_user = (!$any_user); + +if ($is_first_user) { + echo pht( + "WARNING\n\n". + "You're about to create the first account on this install. Normally, you ". + "should use the web interface to create the first account, not this ". + "script.\n\n". + "If you use the web interface, it will drop you into a nice UI workflow ". + "which gives you more help setting up your install. If you create an ". + "account with this script instead, you will skip the setup help and you ". + "will not be able to access it later."); + if (!phutil_console_confirm(pht("Skip easy setup and create account?"))) { + echo pht("Cancelled.")."\n"; + exit(1); + } +} + echo "Enter a username to create a new account or edit an existing account."; $username = phutil_console_prompt("Enter a username:");