[ Index ]

PHP Cross Reference of Phabricator

title

Body

[close]

/bin/ -> accountadmin (source)

   1  #!/usr/bin/env php
   2  <?php
   3  
   4  $root = dirname(dirname(dirname(__FILE__)));
   5  require_once $root.'/scripts/__init_script__.php';
   6  
   7  $table = new PhabricatorUser();
   8  $any_user = queryfx_one(
   9    $table->establishConnection('r'),
  10    'SELECT * FROM %T LIMIT 1',
  11    $table->getTableName());
  12  $is_first_user = (!$any_user);
  13  
  14  if ($is_first_user) {
  15    echo pht(
  16      "WARNING\n\n".
  17      "You're about to create the first account on this install. Normally, you ".
  18      "should use the web interface to create the first account, not this ".
  19      "script.\n\n".
  20      "If you use the web interface, it will drop you into a nice UI workflow ".
  21      "which gives you more help setting up your install. If you create an ".
  22      "account with this script instead, you will skip the setup help and you ".
  23      "will not be able to access it later.");
  24    if (!phutil_console_confirm(pht('Skip easy setup and create account?'))) {
  25      echo pht('Cancelled.')."\n";
  26      exit(1);
  27    }
  28  }
  29  
  30  echo 'Enter a username to create a new account or edit an existing account.';
  31  
  32  $username = phutil_console_prompt('Enter a username:');
  33  if (!strlen($username)) {
  34    echo "Cancelled.\n";
  35    exit(1);
  36  }
  37  
  38  if (!PhabricatorUser::validateUsername($username)) {
  39    $valid = PhabricatorUser::describeValidUsername();
  40    echo "The username '{$username}' is invalid. {$valid}\n";
  41    exit(1);
  42  }
  43  
  44  
  45  $user = id(new PhabricatorUser())->loadOneWhere(
  46    'username = %s',
  47    $username);
  48  
  49  if (!$user) {
  50    $original = new PhabricatorUser();
  51  
  52    echo "There is no existing user account '{$username}'.\n";
  53    $ok = phutil_console_confirm(
  54      "Do you want to create a new '{$username}' account?",
  55      $default_no = false);
  56    if (!$ok) {
  57      echo "Cancelled.\n";
  58      exit(1);
  59    }
  60    $user = new PhabricatorUser();
  61    $user->setUsername($username);
  62  
  63    $is_new = true;
  64  } else {
  65    $original = clone $user;
  66  
  67    echo "There is an existing user account '{$username}'.\n";
  68    $ok = phutil_console_confirm(
  69      "Do you want to edit the existing '{$username}' account?",
  70      $default_no = false);
  71    if (!$ok) {
  72      echo "Cancelled.\n";
  73      exit(1);
  74    }
  75  
  76    $is_new = false;
  77  }
  78  
  79  $user_realname = $user->getRealName();
  80  if (strlen($user_realname)) {
  81    $realname_prompt = ' ['.$user_realname.']';
  82  } else {
  83    $realname_prompt = '';
  84  }
  85  $realname = nonempty(
  86    phutil_console_prompt("Enter user real name{$realname_prompt}:"),
  87    $user_realname);
  88  $user->setRealName($realname);
  89  
  90  // When creating a new user we prompt for an email address; when editing an
  91  // existing user we just skip this because it would be quite involved to provide
  92  // a reasonable CLI interface for editing multiple addresses and managing email
  93  // verification and primary addresses.
  94  
  95  $create_email = null;
  96  if ($is_new) {
  97    do {
  98      $email = phutil_console_prompt('Enter user email address:');
  99      $duplicate = id(new PhabricatorUserEmail())->loadOneWhere(
 100        'address = %s',
 101        $email);
 102      if ($duplicate) {
 103        echo "ERROR: There is already a user with that email address. ".
 104             "Each user must have a unique email address.\n";
 105      } else {
 106        break;
 107      }
 108    } while (true);
 109  
 110    $create_email = $email;
 111  }
 112  
 113  $changed_pass = false;
 114  // This disables local echo, so the user's password is not shown as they type
 115  // it.
 116  phutil_passthru('stty -echo');
 117  $password = phutil_console_prompt(
 118    'Enter a password for this user [blank to leave unchanged]:');
 119  phutil_passthru('stty echo');
 120  if (strlen($password)) {
 121    $changed_pass = $password;
 122  }
 123  
 124  $is_system_agent = $user->getIsSystemAgent();
 125  $set_system_agent = phutil_console_confirm(
 126    'Is this user a bot/script?',
 127    $default_no = !$is_system_agent);
 128  
 129  $verify_email = null;
 130  $set_verified = false;
 131  // Allow administrators to verify primary email addresses at this time in edit
 132  // scenarios. (Create will work just fine from here as we auto-verify email
 133  // on create.)
 134  if (!$is_new) {
 135    $verify_email = $user->loadPrimaryEmail();
 136    if (!$verify_email->getIsVerified()) {
 137      $set_verified = phutil_console_confirm(
 138        'Should the primary email address be verified?',
 139        $default_no = true);
 140    } else {
 141      // already verified so let's not make a fuss
 142      $verify_email = null;
 143    }
 144  }
 145  
 146  $is_admin = $user->getIsAdmin();
 147  $set_admin = phutil_console_confirm(
 148    'Should this user be an administrator?',
 149    $default_no = !$is_admin);
 150  
 151  echo "\n\nACCOUNT SUMMARY\n\n";
 152  $tpl = "%12s   %-30s   %-30s\n";
 153  printf($tpl, null, 'OLD VALUE', 'NEW VALUE');
 154  printf($tpl, 'Username', $original->getUsername(), $user->getUsername());
 155  printf($tpl, 'Real Name', $original->getRealName(), $user->getRealName());
 156  if ($is_new) {
 157    printf($tpl, 'Email', '', $create_email);
 158  }
 159  printf($tpl, 'Password', null,
 160    ($changed_pass !== false)
 161      ? 'Updated'
 162      : 'Unchanged');
 163  
 164  printf(
 165    $tpl,
 166    'Bot/Script',
 167    $original->getIsSystemAgent() ? 'Y' : 'N',
 168    $set_system_agent ? 'Y' : 'N');
 169  
 170  if ($verify_email) {
 171    printf(
 172      $tpl,
 173      'Verify Email',
 174      $verify_email->getIsVerified() ? 'Y' : 'N',
 175      $set_verified ? 'Y' : 'N');
 176  }
 177  
 178  printf(
 179    $tpl,
 180    'Admin',
 181    $original->getIsAdmin() ? 'Y' : 'N',
 182    $set_admin ? 'Y' : 'N');
 183  
 184  echo "\n";
 185  
 186  if (!phutil_console_confirm('Save these changes?', $default_no = false)) {
 187    echo "Cancelled.\n";
 188    exit(1);
 189  }
 190  
 191  $user->openTransaction();
 192  
 193    $editor = new PhabricatorUserEditor();
 194  
 195    // TODO: This is wrong, but we have a chicken-and-egg problem when you use
 196    // this script to create the first user.
 197    $editor->setActor($user);
 198  
 199    if ($is_new) {
 200      $email = id(new PhabricatorUserEmail())
 201        ->setAddress($create_email)
 202        ->setIsVerified(1);
 203  
 204      // Unconditionally approve new accounts created from the CLI.
 205      $user->setIsApproved(1);
 206  
 207      $editor->createNewUser($user, $email);
 208    } else {
 209      if ($verify_email) {
 210        $user->setIsEmailVerified(1);
 211        $verify_email->setIsVerified($set_verified ? 1 : 0);
 212      }
 213      $editor->updateUser($user, $verify_email);
 214    }
 215  
 216    $editor->makeAdminUser($user, $set_admin);
 217    $editor->makeSystemAgentUser($user, $set_system_agent);
 218  
 219    if ($changed_pass !== false) {
 220      $envelope = new PhutilOpaqueEnvelope($changed_pass);
 221      $editor->changePassword($user, $envelope);
 222    }
 223  
 224  $user->saveTransaction();
 225  
 226  echo "Saved changes.\n";


Generated: Sun Nov 30 09:20:46 2014 Cross-referenced by PHPXref 0.7.1