Skip to content
Snippets Groups Projects
Commit 7d93c298 authored by Igor Biki's avatar Igor Biki
Browse files

EXPHR: Adding di services.

parent a5b25af1
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
......@@ -4,12 +4,45 @@ namespace Drupal\uw_cfg_common\Form;
use Drupal\Core\Form\FormBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\path_alias\AliasManager;
use Drupal\user\Entity\User;
use Drupal\uw_cfg_common\Service\UWLdap;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* Form class for the content access form.
*/
class UwAddUsersForm extends FormBase {
/**
* Path alias manager from core.
*/
protected AliasManager $pathAliasManager;
/**
* UW Ldap service from uw_cfg_common module.
*/
protected UWLdap $uwLdap;
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
// Instantiates this form class.
return new static(
$container->get('path_alias.manager'),
$container->get('uw_cfg_common.uw_ldap')
);
}
/**
* Class constructor.
*/
public function __construct(AliasManager $pathAliasManager, UWLdap $uwLdap) {
$this->pathAliasManager = $pathAliasManager;
$this->uwLdap = $uwLdap;
}
/**
* {@inheritdoc}
*/
......@@ -82,7 +115,7 @@ class UwAddUsersForm extends FormBase {
if ($existing_user) {
$this->messenger()->addError($this->t('The user ID <a href="@link"><em>@user</em></a> already exists and was skipped.',
[
'@link' => \Drupal::service('path_alias.manager')->getAliasByPath('/user/' . $existing_user->uid->value),
'@link' => $this->pathAliasManager->getAliasByPath('/user/' . $existing_user->uid->value),
'@user' => $user,
]
));
......@@ -108,7 +141,7 @@ class UwAddUsersForm extends FormBase {
$password = str_shuffle($password);
// Do the LDAP lookup.
$person = \Drupal::service('uw_cfg_common.uw_ldap')->lookupPerson($user);
$person = $this->UWLdap->lookupPerson($user);
if (!$person) {
$this->messenger()->addError($this->t('The user ID <em>@user</em> could not be found (or was set to private) and was skipped.', ['@user' => $user]));
continue;
......@@ -118,7 +151,7 @@ class UwAddUsersForm extends FormBase {
$email = empty($person['mail'][0]) ? $user . '@uwaterloo.ca' : $person['mail'][0];
// Add the user.
$new_user = \Drupal\user\Entity\User::create();
$new_user = User::create();
$new_user->setPassword($password);
$new_user->enforceIsNew();
$new_user->setEmail($email);
......@@ -130,7 +163,7 @@ class UwAddUsersForm extends FormBase {
$this->messenger()->addStatus($this->t('Created a new user with the user ID <a href="@link"><em>@user</em></a>.',
[
'@link' => \Drupal::service('path_alias.manager')->getAliasByPath('/user/' . $new_user->uid->value),
'@link' => $this->pathAliasManager->getAliasByPath('/user/' . $new_user->uid->value),
'@user' => $user,
]
));
......
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