Skip to content
Snippets Groups Projects
Commit ad200c89 authored by Kevin Paxman's avatar Kevin Paxman
Browse files

EXPHR: Get bulk account creation basically working, minus WatIAM lookup and link on people page

parent 5a0cf99e
No related branches found
No related tags found
3 merge requests!297Feature/istwcms 5983 bulk account creation,!274Draft: ISTWCMS-5551: fixing office hours display,!260Feature/istwcms 5668 a5kulkar rename references to publications
...@@ -22,10 +22,10 @@ class UwAddUsersForm extends FormBase { ...@@ -22,10 +22,10 @@ class UwAddUsersForm extends FormBase {
*/ */
public function buildForm(array $form, FormStateInterface $form_state) { public function buildForm(array $form, FormStateInterface $form_state) {
// The list of users this form. // The list of users from this form.
$form['users'] = [ $form['users'] = [
'#title' => $this->t('WatIAM user ID(s) (maximum 8 characters per ID)'), '#title' => $this->t('WatIAM user ID(s): (maximum 8 characters per ID)'),
'#description' => $this->t('Enter a single WatIAM user ID, or multiple WatIAM user IDs, one per line.<br>You can use <a href="https://idm.uwaterloo.ca/search/" target="_blank">authenticated WatIAM search</a> if you don\'t know their user ID (will open a new window).'), '#description' => $this->t('Enter a single WatIAM user ID, or multiple WatIAM user IDs, one per line. All letters will be converted to lower case. Duplicates will be ignored.<br>You can use <a href="https://idm.uwaterloo.ca/search/" target="_blank">authenticated WatIAM search</a> if you don\'t know their user ID (will open a new window).'),
'#type' => 'textarea', '#type' => 'textarea',
'#required' => TRUE, '#required' => TRUE,
]; ];
...@@ -46,16 +46,78 @@ class UwAddUsersForm extends FormBase { ...@@ -46,16 +46,78 @@ class UwAddUsersForm extends FormBase {
*/ */
public function submitForm(array &$form, FormStateInterface $form_state) { public function submitForm(array &$form, FormStateInterface $form_state) {
// The permissions array that was submitted in the form. // The user ID list that was submitted in the form.
$submitted_users = explode(PHP_EOL, $form_state->getValue('users')); $submitted_users = explode(PHP_EOL, $form_state->getValue('users'));
// Be nice and remove whitespace.
$submitted_users = array_map('trim', $submitted_users);
// Remove any duplicates.
$submitted_users = array_unique($submitted_users);
// Step through each of the submitted users to create if needed/possible, // Step through each of the submitted users to create if needed/possible,
// or show a message if not. // or show a message if not.
foreach ($submitted_users as $user) { foreach ($submitted_users as $user) {
// Let's be nice and remove whitespace. // Make sure the user ID is in lower case.
$user = trim($user); $user = strtolower($user);
$this->messenger()->addStatus($this->t('Normally something would happen here...'));
// Ignore blank lines.
if (!strlen($user)) {
continue;
}
// Don't process long user IDs.
if (strlen($user) > 8) {
$this->messenger()->addError($this->t('The user ID <em>@user</em> is too long and was skipped.', array('@user' => $user)));
continue;
}
// Don't process user IDs with invalid characters.
if (!preg_match('/^[a-z0-9]+$/', $user)) {
$this->messenger()->addError($this->t('The user ID <em>@user</em> contains invalid characters and was skipped.', array('@user' => $user)));
continue;
}
$existing_user = user_load_by_name($user);
if ($existing_user) {
$this->messenger()->addError($this->t('The user ID <a href="@link"><em>@user</em></a> already exists and was skipped.', array('@link' => \Drupal::service('path_alias.manager')->getAliasByPath('/user/' . $existing_user->uid->value),'@user' => $user)));
continue;
}
// Seems OK.
// Create a strong random password.
$sets[] = 'abcdefghijklmnopqrstuvwxyz';
$sets[] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
$sets[] = '0123456789';
$sets[] = '!@#$%^&*()-_=+[]{}?`~"';
$password = '';
$password_length = rand(16,32);
while(strlen($password) < $password_length) {
foreach ($sets as $set) {
$password .= $set[array_rand(str_split($set))];
if (strlen($password) == $password_length) {
break;
}
}
}
$password = str_shuffle($password);
// Add the user.
// TODO: look up info from WatIAM.
$new_user = \Drupal\user\Entity\User::create();
$new_user->setPassword($password);
$new_user->enforceIsNew();
$new_user->setEmail($user . '@uwaterloo.ca');
$new_user->setUsername($user);
$new_user->set('field_uw_first_name', 'Firstname');
$new_user->set('field_uw_last_name', 'Lastname');
$new_user->activate();
$new_user->save();
$this->messenger()->addStatus($this->t('Created a new user with the user ID <a href="@link"><em>@user</em></a>.', array('@link' => \Drupal::service('path_alias.manager')->getAliasByPath('/user/' . $new_user->uid->value),'@user' => $user)));
} }
// Set the message that the users have been created. // Set the message that the users have been created.
$this->messenger()->addStatus($this->t('Finished creating users.')); $this->messenger()->addStatus($this->t('Finished creating users.'));
} }
......
...@@ -51,7 +51,7 @@ uw_cfg_common.uw_menu_report_csv: ...@@ -51,7 +51,7 @@ uw_cfg_common.uw_menu_report_csv:
uw_add_users.form: uw_add_users.form:
path: '/admin/add-uwaterloo-users' path: '/admin/add-uwaterloo-users'
defaults: defaults:
_title: 'Add UWaterloo User(s)' _title: 'Add UWaterloo user(s)'
_form: '\Drupal\uw_cfg_common\Form\UwAddUsersForm' _form: '\Drupal\uw_cfg_common\Form\UwAddUsersForm'
requirements: requirements:
_permission: 'administer users' _permission: 'administer users'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment