Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
uw_cfg_common
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
WCMS
uw_cfg_common
Commits
7d93c298
Commit
7d93c298
authored
2 years ago
by
Igor Biki
Browse files
Options
Downloads
Patches
Plain Diff
EXPHR: Adding di services.
parent
a5b25af1
No related branches found
No related tags found
3 merge requests
!297
Feature/istwcms 5983 bulk account creation
,
!274
Draft: ISTWCMS-5551: fixing office hours display
,
!260
Feature/istwcms 5668 a5kulkar rename references to publications
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/Form/UwAddUsersForm.php
+37
-4
37 additions, 4 deletions
src/Form/UwAddUsersForm.php
with
37 additions
and
4 deletions
src/Form/UwAddUsersForm.php
+
37
−
4
View file @
7d93c298
...
...
@@ -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
_a
lias
.m
anager
'
)
->
getAliasByPath
(
'/user/'
.
$existing_user
->
uid
->
value
),
'@link'
=>
$this
->
path
A
lias
M
anager
->
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_l
dap
'
)
->
lookupPerson
(
$user
);
$person
=
$this
->
UWL
dap
->
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
_a
lias
.m
anager
'
)
->
getAliasByPath
(
'/user/'
.
$new_user
->
uid
->
value
),
'@link'
=>
$this
->
path
A
lias
M
anager
->
getAliasByPath
(
'/user/'
.
$new_user
->
uid
->
value
),
'@user'
=>
$user
,
]
));
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment