Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102327166
PhabricatorPeopleLdapController.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, Feb 19, 13:42
Size
4 KB
Mime Type
text/x-php
Expires
Fri, Feb 21, 13:42 (2 d)
Engine
blob
Format
Raw Data
Handle
24331726
Attached To
rPH Phabricator
PhabricatorPeopleLdapController.php
View Options
<?php
final
class
PhabricatorPeopleLdapController
extends
PhabricatorPeopleController
{
public
function
shouldRequireAdmin
()
{
return
true
;
}
private
$view
;
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$admin
=
$request
->
getUser
();
$content
=
array
();
$form
=
id
(
new
AphrontFormView
())
->
setAction
(
$request
->
getRequestURI
()
->
alter
(
'search'
,
'true'
)->
alter
(
'import'
,
null
))
->
setUser
(
$admin
)
->
appendChild
(
id
(
new
AphrontFormTextControl
())
->
setLabel
(
'LDAP username'
)
->
setName
(
'username'
))
->
appendChild
(
id
(
new
AphrontFormPasswordControl
())
->
setLabel
(
'Password'
)
->
setName
(
'password'
))
->
appendChild
(
id
(
new
AphrontFormTextControl
())
->
setLabel
(
'LDAP query'
)
->
setCaption
(
'A filter such as (objectClass=*)'
)
->
setName
(
'query'
))
->
appendChild
(
id
(
new
AphrontFormSubmitControl
())
->
setValue
(
'Search'
));
$panel
=
new
AphrontPanelView
();
$panel
->
setHeader
(
'Import LDAP Users'
);
$panel
->
appendChild
(
$form
);
if
(
$request
->
getStr
(
'import'
))
{
$content
[]
=
$this
->
processImportRequest
(
$request
);
}
$content
[]
=
$panel
;
if
(
$request
->
getStr
(
'search'
))
{
$content
[]
=
$this
->
processSearchRequest
(
$request
);
}
$nav
=
$this
->
buildSideNavView
();
$nav
->
selectFilter
(
'ldap'
);
$nav
->
appendChild
(
$content
);
return
$this
->
buildApplicationPage
(
$nav
,
array
(
'title'
=>
'Import Ldap Users'
,
));
}
private
function
processImportRequest
(
$request
)
{
$admin
=
$request
->
getUser
();
$usernames
=
$request
->
getArr
(
'usernames'
);
$emails
=
$request
->
getArr
(
'email'
);
$names
=
$request
->
getArr
(
'name'
);
$panel
=
new
AphrontErrorView
();
$panel
->
setSeverity
(
AphrontErrorView
::
SEVERITY_NOTICE
);
$panel
->
setTitle
(
"Import Successful"
);
$errors
=
array
(
"Successfully imported users from LDAP"
);
foreach
(
$usernames
as
$username
)
{
$user
=
new
PhabricatorUser
();
$user
->
setUsername
(
$username
);
$user
->
setRealname
(
$names
[
$username
]);
$email_obj
=
id
(
new
PhabricatorUserEmail
())
->
setAddress
(
$emails
[
$username
])
->
setIsVerified
(
1
);
try
{
id
(
new
PhabricatorUserEditor
())
->
setActor
(
$admin
)
->
createNewUser
(
$user
,
$email_obj
);
$ldap_info
=
new
PhabricatorUserLDAPInfo
();
$ldap_info
->
setLDAPUsername
(
$username
);
$ldap_info
->
setUserID
(
$user
->
getID
());
$ldap_info
->
save
();
$errors
[]
=
'Successfully added '
.
$username
;
}
catch
(
Exception
$ex
)
{
$errors
[]
=
'Failed to add '
.
$username
.
' '
.
$ex
->
getMessage
();
}
}
$panel
->
setErrors
(
$errors
);
return
$panel
;
}
private
function
processSearchRequest
(
$request
)
{
$panel
=
new
AphrontPanelView
();
$admin
=
$request
->
getUser
();
$username
=
$request
->
getStr
(
'username'
);
$password
=
$request
->
getStr
(
'password'
);
$search
=
$request
->
getStr
(
'query'
);
try
{
$ldap_provider
=
new
PhabricatorLDAPProvider
();
$envelope
=
new
PhutilOpaqueEnvelope
(
$password
);
$ldap_provider
->
auth
(
$username
,
$envelope
);
$results
=
$ldap_provider
->
search
(
$search
);
foreach
(
$results
as
$key
=>
$result
)
{
$results
[
$key
][]
=
$this
->
renderUserInputs
(
$result
);
}
$form
=
id
(
new
AphrontFormView
())
->
setUser
(
$admin
);
$table
=
new
AphrontTableView
(
$results
);
$table
->
setHeaders
(
array
(
'Username'
,
'Email'
,
'RealName'
,
'Import?'
,
));
$form
->
appendChild
(
$table
);
$form
->
setAction
(
$request
->
getRequestURI
()
->
alter
(
'import'
,
'true'
)->
alter
(
'search'
,
null
))
->
appendChild
(
id
(
new
AphrontFormSubmitControl
())
->
setValue
(
'Import'
));
$panel
->
appendChild
(
$form
);
}
catch
(
Exception
$ex
)
{
$error_view
=
new
AphrontErrorView
();
$error_view
->
setTitle
(
'LDAP Search Failed'
);
$error_view
->
setErrors
(
array
(
$ex
->
getMessage
()));
return
$error_view
;
}
return
$panel
;
}
private
function
renderUserInputs
(
$user
)
{
$username
=
$user
[
0
];
$inputs
=
phutil_tag
(
'input'
,
array
(
'type'
=>
'checkbox'
,
'name'
=>
'usernames[]'
,
'value'
=>
$username
,
),
''
);
$inputs
.=
phutil_tag
(
'input'
,
array
(
'type'
=>
'hidden'
,
'name'
=>
"email[$username]"
,
'value'
=>
$user
[
1
],
),
''
);
$inputs
.=
phutil_tag
(
'input'
,
array
(
'type'
=>
'hidden'
,
'name'
=>
"name[$username]"
,
'value'
=>
$user
[
2
],
),
''
);
return
$inputs
;
}
}
Event Timeline
Log In to Comment