Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F118578098
20130619.authconf.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
Sat, Jun 21, 01:25
Size
5 KB
Mime Type
text/x-php
Expires
Mon, Jun 23, 01:25 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
26859723
Attached To
rPH Phabricator
20130619.authconf.php
View Options
<?php
$config_map
=
array
(
'PhabricatorAuthProviderLDAP'
=>
array
(
'enabled'
=>
'ldap.auth-enabled'
,
'registration'
=>
true
,
'type'
=>
'ldap'
,
'domain'
=>
'self'
,
),
'PhabricatorAuthProviderOAuthDisqus'
=>
array
(
'enabled'
=>
'disqus.auth-enabled'
,
'registration'
=>
'disqus.registration-enabled'
,
'permanent'
=>
'disqus.auth-permanent'
,
'oauth.id'
=>
'disqus.application-id'
,
'oauth.secret'
=>
'disqus.application-secret'
,
'type'
=>
'disqus'
,
'domain'
=>
'disqus.com'
,
),
'PhabricatorAuthProviderOAuthFacebook'
=>
array
(
'enabled'
=>
'facebook.auth-enabled'
,
'registration'
=>
'facebook.registration-enabled'
,
'permanent'
=>
'facebook.auth-permanent'
,
'oauth.id'
=>
'facebook.application-id'
,
'oauth.secret'
=>
'facebook.application-secret'
,
'type'
=>
'facebook'
,
'domain'
=>
'facebook.com'
,
),
'PhabricatorAuthProviderOAuthGitHub'
=>
array
(
'enabled'
=>
'github.auth-enabled'
,
'registration'
=>
'github.registration-enabled'
,
'permanent'
=>
'github.auth-permanent'
,
'oauth.id'
=>
'github.application-id'
,
'oauth.secret'
=>
'github.application-secret'
,
'type'
=>
'github'
,
'domain'
=>
'github.com'
,
),
'PhabricatorAuthProviderOAuthGoogle'
=>
array
(
'enabled'
=>
'google.auth-enabled'
,
'registration'
=>
'google.registration-enabled'
,
'permanent'
=>
'google.auth-permanent'
,
'oauth.id'
=>
'google.application-id'
,
'oauth.secret'
=>
'google.application-secret'
,
'type'
=>
'google'
,
'domain'
=>
'google.com'
,
),
'PhabricatorAuthProviderPassword'
=>
array
(
'enabled'
=>
'auth.password-auth-enabled'
,
'registration'
=>
false
,
'type'
=>
'password'
,
'domain'
=>
'self'
,
),
);
foreach
(
$config_map
as
$provider_class
=>
$spec
)
{
$enabled_key
=
idx
(
$spec
,
'enabled'
);
$enabled
=
PhabricatorEnv
::
getEnvConfigIfExists
(
$enabled_key
);
if
(!
$enabled
)
{
echo
pht
(
"Skipping %s (not enabled).
\n
"
,
$provider_class
);
// This provider was not previously enabled, so we can skip migrating it.
continue
;
}
else
{
echo
pht
(
"Migrating %s...
\n
"
,
$provider_class
);
}
$registration_key
=
idx
(
$spec
,
'registration'
);
if
(
$registration_key
===
true
)
{
$registration
=
1
;
}
else
if
(
$registration_key
===
false
)
{
$registration
=
0
;
}
else
{
$registration
=
(
int
)
PhabricatorEnv
::
getEnvConfigIfExists
(
$registration_key
,
true
);
}
$unlink_key
=
idx
(
$spec
,
'permanent'
);
if
(!
$unlink_key
)
{
$unlink
=
1
;
}
else
{
$unlink
=
(
int
)(!
PhabricatorEnv
::
getEnvConfigIfExists
(
$unlink_key
));
}
$config
=
id
(
new
PhabricatorAuthProviderConfig
())
->
setIsEnabled
(
1
)
->
setShouldAllowLogin
(
1
)
->
setShouldAllowRegistration
(
$registration
)
->
setShouldAllowLink
(
1
)
->
setShouldAllowUnlink
(
$unlink
)
->
setProviderType
(
idx
(
$spec
,
'type'
))
->
setProviderDomain
(
idx
(
$spec
,
'domain'
))
->
setProviderClass
(
$provider_class
);
if
(
isset
(
$spec
[
'oauth.id'
]))
{
$config
->
setProperty
(
PhabricatorAuthProviderOAuth
::
PROPERTY_APP_ID
,
PhabricatorEnv
::
getEnvConfigIfExists
(
idx
(
$spec
,
'oauth.id'
)));
$config
->
setProperty
(
PhabricatorAuthProviderOAuth
::
PROPERTY_APP_SECRET
,
PhabricatorEnv
::
getEnvConfigIfExists
(
idx
(
$spec
,
'oauth.secret'
)));
}
switch
(
$provider_class
)
{
case
'PhabricatorAuthProviderOAuthFacebook'
:
$config
->
setProperty
(
PhabricatorAuthProviderOAuthFacebook
::
KEY_REQUIRE_SECURE
,
(
int
)
PhabricatorEnv
::
getEnvConfigIfExists
(
'facebook.require-https-auth'
));
break
;
case
'PhabricatorAuthProviderLDAP'
:
$ldap_map
=
array
(
PhabricatorAuthProviderLDAP
::
KEY_HOSTNAME
=>
'ldap.hostname'
,
PhabricatorAuthProviderLDAP
::
KEY_PORT
=>
'ldap.port'
,
PhabricatorAuthProviderLDAP
::
KEY_DISTINGUISHED_NAME
=>
'ldap.base_dn'
,
PhabricatorAuthProviderLDAP
::
KEY_SEARCH_ATTRIBUTE
=>
'ldap.search_attribute'
,
PhabricatorAuthProviderLDAP
::
KEY_USERNAME_ATTRIBUTE
=>
'ldap.username-attribute'
,
PhabricatorAuthProviderLDAP
::
KEY_REALNAME_ATTRIBUTES
=>
'ldap.real_name_attributes'
,
PhabricatorAuthProviderLDAP
::
KEY_VERSION
=>
'ldap.version'
,
PhabricatorAuthProviderLDAP
::
KEY_REFERRALS
=>
'ldap.referrals'
,
PhabricatorAuthProviderLDAP
::
KEY_START_TLS
=>
'ldap.start-tls'
,
PhabricatorAuthProviderLDAP
::
KEY_ANONYMOUS_USERNAME
=>
'ldap.anonymous-user-name'
,
PhabricatorAuthProviderLDAP
::
KEY_ANONYMOUS_PASSWORD
=>
'ldap.anonymous-user-password'
,
PhabricatorAuthProviderLDAP
::
KEY_SEARCH_FIRST
=>
'ldap.search-first'
,
PhabricatorAuthProviderLDAP
::
KEY_ACTIVEDIRECTORY_DOMAIN
=>
'ldap.activedirectory_domain'
,
);
$defaults
=
array
(
'ldap.version'
=>
3
,
'ldap.port'
=>
389
,
);
foreach
(
$ldap_map
as
$pkey
=>
$ckey
)
{
$default
=
idx
(
$defaults
,
$ckey
);
$config
->
setProperty
(
$pkey
,
PhabricatorEnv
::
getEnvConfigIfExists
(
$ckey
,
$default
));
}
break
;
}
$config
->
save
();
}
echo
"Done.
\n
"
;
Event Timeline
Log In to Comment