establishConnection('w'); $xaccount = new PhabricatorExternalAccount(); echo pht('Migrating LDAP to %s...', 'ExternalAccount')."\n"; $rows = queryfx_all($conn_w, 'SELECT * FROM %T', $table_name); foreach ($rows as $row) { echo pht('Migrating row ID #%d.', $row['id'])."\n"; $user = id(new PhabricatorUser())->loadOneWhere( 'id = %d', $row['userID']); if (!$user) { echo pht('Bad user ID!')."\n"; continue; } $xaccount = id(new PhabricatorExternalAccount()) ->setUserPHID($user->getPHID()) ->setAccountType('ldap') ->setAccountDomain('self') ->setAccountID($row['ldapUsername']) ->setUsername($row['ldapUsername']) ->setDateCreated($row['dateCreated']); try { $xaccount->save(); } catch (Exception $ex) { phlog($ex); } } echo pht('Done.')."\n";