Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F1068157
PhabricatorSettingsPanelExternalAccounts.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
3 KB
Referenced Files
None
Subscribers
None
PhabricatorSettingsPanelExternalAccounts.php
View Options
<?php
final
class
PhabricatorSettingsPanelExternalAccounts
extends
PhabricatorSettingsPanel
{
public
function
getPanelKey
()
{
return
'external'
;
}
public
function
getPanelName
()
{
return
pht
(
'External Accounts'
);
}
public
function
getPanelGroup
()
{
return
pht
(
'Authentication'
);
}
public
function
isEnabled
()
{
return
true
;
}
public
function
processRequest
(
AphrontRequest
$request
)
{
$viewer
=
$request
->
getUser
();
$providers
=
PhabricatorAuthProvider
::
getAllProviders
();
$accounts
=
id
(
new
PhabricatorExternalAccountQuery
())
->
setViewer
(
$viewer
)
->
withUserPHIDs
(
array
(
$viewer
->
getPHID
()))
->
needImages
(
true
)
->
execute
();
$linked_head
=
id
(
new
PHUIHeaderView
())
->
setHeader
(
pht
(
'Linked Accounts and Authentication'
));
$linked
=
id
(
new
PHUIObjectItemListView
())
->
setUser
(
$viewer
)
->
setFlush
(
true
)
->
setNoDataString
(
pht
(
'You have no linked accounts.'
));
$login_accounts
=
0
;
foreach
(
$accounts
as
$account
)
{
if
(
$account
->
isUsableForLogin
())
{
$login_accounts
++;
}
}
foreach
(
$accounts
as
$account
)
{
$item
=
id
(
new
PHUIObjectItemView
());
$provider
=
idx
(
$providers
,
$account
->
getProviderKey
());
if
(
$provider
)
{
$item
->
setHeader
(
$provider
->
getProviderName
());
$can_unlink
=
$provider
->
shouldAllowAccountUnlink
();
if
(!
$can_unlink
)
{
$item
->
addAttribute
(
pht
(
'Permanently Linked'
));
}
}
else
{
$item
->
setHeader
(
pht
(
'Unknown Account ("%s")'
,
$account
->
getProviderKey
()));
$can_unlink
=
true
;
}
$can_login
=
$account
->
isUsableForLogin
();
if
(!
$can_login
)
{
$item
->
addAttribute
(
pht
(
'Disabled (an administrator has disabled login for this '
.
'account provider).'
));
}
$can_unlink
=
$can_unlink
&&
(!
$can_login
||
(
$login_accounts
>
1
));
$can_refresh
=
$provider
&&
$provider
->
shouldAllowAccountRefresh
();
if
(
$can_refresh
)
{
$item
->
addAction
(
id
(
new
PHUIListItemView
())
->
setIcon
(
'fa-refresh'
)
->
setHref
(
'/auth/refresh/'
.
$account
->
getProviderKey
().
'/'
));
}
$item
->
addAction
(
id
(
new
PHUIListItemView
())
->
setIcon
(
'fa-times'
)
->
setWorkflow
(
true
)
->
setDisabled
(!
$can_unlink
)
->
setHref
(
'/auth/unlink/'
.
$account
->
getProviderKey
().
'/'
));
if
(
$provider
)
{
$provider
->
willRenderLinkedAccount
(
$viewer
,
$item
,
$account
);
}
$linked
->
addItem
(
$item
);
}
$linkable_head
=
id
(
new
PHUIHeaderView
())
->
setHeader
(
pht
(
'Add External Account'
));
$linkable
=
id
(
new
PHUIObjectItemListView
())
->
setUser
(
$viewer
)
->
setFlush
(
true
)
->
setNoDataString
(
pht
(
'Your account is linked with all available providers.'
));
$accounts
=
mpull
(
$accounts
,
null
,
'getProviderKey'
);
$providers
=
PhabricatorAuthProvider
::
getAllEnabledProviders
();
$providers
=
msort
(
$providers
,
'getProviderName'
);
foreach
(
$providers
as
$key
=>
$provider
)
{
if
(
isset
(
$accounts
[
$key
]))
{
continue
;
}
if
(!
$provider
->
shouldAllowAccountLink
())
{
continue
;
}
$link_uri
=
'/auth/link/'
.
$provider
->
getProviderKey
().
'/'
;
$item
=
id
(
new
PHUIObjectItemView
());
$item
->
setHeader
(
$provider
->
getProviderName
());
$item
->
setHref
(
$link_uri
);
$item
->
addAction
(
id
(
new
PHUIListItemView
())
->
setIcon
(
'fa-link'
)
->
setHref
(
$link_uri
));
$linkable
->
addItem
(
$item
);
}
$linked_box
=
id
(
new
PHUIObjectBoxView
())
->
setHeader
(
$linked_head
)
->
appendChild
(
$linked
);
$linkable_box
=
id
(
new
PHUIObjectBoxView
())
->
setHeader
(
$linkable_head
)
->
appendChild
(
$linkable
);
return
array
(
$linked_box
,
$linkable_box
,
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Jun 29, 1:46 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
261320
Default Alt Text
PhabricatorSettingsPanelExternalAccounts.php (3 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment