Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97209256
PhabricatorAuthLinkController.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
Fri, Jan 3, 11:27
Size
2 KB
Mime Type
text/x-php
Expires
Sun, Jan 5, 11:27 (2 d)
Engine
blob
Format
Raw Data
Handle
23354978
Attached To
rPH Phabricator
PhabricatorAuthLinkController.php
View Options
<?php
final
class
PhabricatorAuthLinkController
extends
PhabricatorAuthController
{
private
$providerKey
;
public
function
willProcessRequest
(
array
$data
)
{
$this
->
providerKey
=
$data
[
'pkey'
];
}
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$viewer
=
$request
->
getUser
();
$provider
=
PhabricatorAuthProvider
::
getEnabledProviderByKey
(
$this
->
providerKey
);
if
(!
$provider
)
{
return
new
Aphront404Response
();
}
if
(!
$provider
->
shouldAllowAccountLink
())
{
return
$this
->
renderErrorPage
(
pht
(
'Account Not Linkable'
),
array
(
pht
(
'This provider is not configured to allow linking.'
),
));
}
$account
=
id
(
new
PhabricatorExternalAccount
())->
loadOneWhere
(
'accountType = %s AND accountDomain = %s AND userPHID = %s'
,
$provider
->
getProviderType
(),
$provider
->
getProviderDomain
(),
$viewer
->
getPHID
());
if
(
$account
)
{
return
$this
->
renderErrorPage
(
pht
(
'Account Already Linked'
),
array
(
pht
(
'Your Phabricator account is already linked to an external '
.
'account for this provider.'
),
));
}
$panel_uri
=
'/settings/panel/external/'
;
$request
->
setCookie
(
'phcid'
,
Filesystem
::
readRandomCharacters
(
16
));
$form
=
$provider
->
buildLinkForm
(
$this
);
if
(
$provider
->
isLoginFormAButton
())
{
require_celerity_resource
(
'auth-css'
);
$form
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'phabricator-link-button pl'
,
),
$form
);
}
$crumbs
=
$this
->
buildApplicationCrumbs
();
$crumbs
->
addCrumb
(
id
(
new
PhabricatorCrumbView
())
->
setName
(
pht
(
'Link Account'
))
->
setHref
(
$panel_uri
));
$crumbs
->
addCrumb
(
id
(
new
PhabricatorCrumbView
())
->
setName
(
$provider
->
getProviderName
()));
return
$this
->
buildApplicationPage
(
array
(
$crumbs
,
$form
,
),
array
(
'title'
=>
pht
(
'Link %s Account'
,
$provider
->
getProviderName
()),
'dust'
=>
true
,
'device'
=>
true
,
));
}
}
Event Timeline
Log In to Comment