Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2896492
PhabricatorAuthManagementLDAPWorkflow.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
1 KB
Referenced Files
None
Subscribers
None
PhabricatorAuthManagementLDAPWorkflow.php
View Options
<?php
final
class
PhabricatorAuthManagementLDAPWorkflow
extends
PhabricatorAuthManagementWorkflow
{
protected
function
didConstruct
(
)
{
$this
->
setName
(
'ldap'
)
->
setExamples
(
'**ldap**'
)
->
setSynopsis
(
pht
(
'Analyze and diagnose issues with LDAP configuration.'
)
)
;
}
public
function
execute
(
PhutilArgumentParser
$args
)
{
$console
=
PhutilConsole
::
getConsole
(
)
;
$console
->
getServer
(
)
->
setEnableLog
(
true
)
;
$provider
=
new
PhabricatorAuthProviderLDAP
(
)
;
if
(
!
$provider
->
isEnabled
(
)
)
{
$console
->
writeOut
(
"%s\n"
,
"The LDAP authentication provider is not enabled."
)
;
exit
(
1
)
;
}
if
(
!
function_exists
(
'ldap_connect'
)
)
{
$console
->
writeOut
(
"%s\n"
,
"The LDAP extension is not enabled."
)
;
exit
(
1
)
;
}
$adapter
=
$provider
->
getAdapter
(
)
;
$adapter
->
setConsole
(
$console
)
;
$console
->
writeOut
(
"%s\n"
,
pht
(
'LDAP CONFIGURATION'
)
)
;
$adapter
->
printConfiguration
(
)
;
$console
->
writeOut
(
"%s\n"
,
pht
(
'Enter LDAP Credentials'
)
)
;
$username
=
phutil_console_prompt
(
"LDAP Username: "
)
;
if
(
!
strlen
(
$username
)
)
{
throw
new
PhutilArgumentUsageException
(
pht
(
"You must enter an LDAP username."
)
)
;
}
phutil_passthru
(
'stty -echo'
)
;
$password
=
phutil_console_prompt
(
"LDAP Password: "
)
;
phutil_passthru
(
'stty echo'
)
;
if
(
!
strlen
(
$password
)
)
{
throw
new
PhutilArgumentUsageException
(
pht
(
"You must enter an LDAP password."
)
)
;
}
$adapter
->
setLoginUsername
(
$username
)
;
$adapter
->
setLoginPassword
(
new
PhutilOpaqueEnvelope
(
$password
)
)
;
$console
->
writeOut
(
"\n"
)
;
$console
->
writeOut
(
"%s\n"
,
pht
(
'Connecting to LDAP...'
)
)
;
$account_id
=
$adapter
->
getAccountID
(
)
;
if
(
$account_id
)
{
$console
->
writeOut
(
"%s\n"
,
pht
(
'Found LDAP Account: %s'
,
$account_id
)
)
;
}
else
{
$console
->
writeOut
(
"%s\n"
,
pht
(
'Unable to find LDAP account!'
)
)
;
}
return
0
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Jan 19 2025, 23:11 (6 w, 3 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1129737
Default Alt Text
PhabricatorAuthManagementLDAPWorkflow.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment