'#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 {
// 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_usersas$user){
foreach($submitted_usersas$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)));
$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.