Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F119877741
PhabricatorOAuthClientViewController.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
Mon, Jun 30, 03:40
Size
3 KB
Mime Type
text/x-php
Expires
Wed, Jul 2, 03:40 (2 d)
Engine
blob
Format
Raw Data
Handle
27089901
Attached To
rPH Phabricator
PhabricatorOAuthClientViewController.php
View Options
<?php
final
class
PhabricatorOAuthClientViewController
extends
PhabricatorOAuthClientController
{
public
function
handleRequest
(
AphrontRequest
$request
)
{
$viewer
=
$this
->
getViewer
();
$client
=
id
(
new
PhabricatorOAuthServerClientQuery
())
->
setViewer
(
$viewer
)
->
withIDs
(
array
(
$request
->
getURIData
(
'id'
)))
->
executeOne
();
if
(!
$client
)
{
return
new
Aphront404Response
();
}
$header
=
$this
->
buildHeaderView
(
$client
);
$actions
=
$this
->
buildActionView
(
$client
);
$properties
=
$this
->
buildPropertyListView
(
$client
);
$properties
->
setActionList
(
$actions
);
$crumbs
=
$this
->
buildApplicationCrumbs
();
$crumbs
->
addTextCrumb
(
$client
->
getName
());
$box
=
id
(
new
PHUIObjectBoxView
())
->
setHeader
(
$header
)
->
addPropertyList
(
$properties
);
$title
=
pht
(
'OAuth Application: %s'
,
$client
->
getName
());
return
$this
->
newPage
()
->
setCrumbs
(
$crumbs
)
->
setTitle
(
$title
)
->
appendChild
(
$box
);
}
private
function
buildHeaderView
(
PhabricatorOAuthServerClient
$client
)
{
$viewer
=
$this
->
getViewer
();
$header
=
id
(
new
PHUIHeaderView
())
->
setUser
(
$viewer
)
->
setHeader
(
pht
(
'OAuth Application: %s'
,
$client
->
getName
()))
->
setPolicyObject
(
$client
);
return
$header
;
}
private
function
buildActionView
(
PhabricatorOAuthServerClient
$client
)
{
$viewer
=
$this
->
getViewer
();
$can_edit
=
PhabricatorPolicyFilter
::
hasCapability
(
$viewer
,
$client
,
PhabricatorPolicyCapability
::
CAN_EDIT
);
$authorization
=
id
(
new
PhabricatorOAuthClientAuthorizationQuery
())
->
setViewer
(
$viewer
)
->
withUserPHIDs
(
array
(
$viewer
->
getPHID
()))
->
withClientPHIDs
(
array
(
$client
->
getPHID
()))
->
executeOne
();
$is_authorized
=
(
bool
)
$authorization
;
$id
=
$client
->
getID
();
$view
=
id
(
new
PhabricatorActionListView
())
->
setUser
(
$viewer
);
$view
->
addAction
(
id
(
new
PhabricatorActionView
())
->
setName
(
pht
(
'Edit Application'
))
->
setIcon
(
'fa-pencil'
)
->
setWorkflow
(!
$can_edit
)
->
setDisabled
(!
$can_edit
)
->
setHref
(
$client
->
getEditURI
()));
$view
->
addAction
(
id
(
new
PhabricatorActionView
())
->
setName
(
pht
(
'Show Application Secret'
))
->
setIcon
(
'fa-eye'
)
->
setHref
(
$this
->
getApplicationURI
(
"client/secret/{$id}/"
))
->
setDisabled
(!
$can_edit
)
->
setWorkflow
(
true
));
$view
->
addAction
(
id
(
new
PhabricatorActionView
())
->
setName
(
pht
(
'Delete Application'
))
->
setIcon
(
'fa-times'
)
->
setWorkflow
(
true
)
->
setDisabled
(!
$can_edit
)
->
setHref
(
$client
->
getDeleteURI
()));
$view
->
addAction
(
id
(
new
PhabricatorActionView
())
->
setName
(
pht
(
'Create Test Authorization'
))
->
setIcon
(
'fa-wrench'
)
->
setWorkflow
(
true
)
->
setDisabled
(
$is_authorized
)
->
setHref
(
$this
->
getApplicationURI
(
"client/test/{$id}/"
)));
return
$view
;
}
private
function
buildPropertyListView
(
PhabricatorOAuthServerClient
$client
)
{
$viewer
=
$this
->
getRequest
()->
getUser
();
$view
=
id
(
new
PHUIPropertyListView
())
->
setUser
(
$viewer
);
$view
->
addProperty
(
pht
(
'Client PHID'
),
$client
->
getPHID
());
$view
->
addProperty
(
pht
(
'Redirect URI'
),
$client
->
getRedirectURI
());
$view
->
addProperty
(
pht
(
'Created'
),
phabricator_datetime
(
$client
->
getDateCreated
(),
$viewer
));
return
$view
;
}
}
Event Timeline
Log In to Comment