Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97778669
PhabricatorOAuthClientDeleteController.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, Jan 6, 08:55
Size
1 KB
Mime Type
text/x-php
Expires
Wed, Jan 8, 08:55 (2 d)
Engine
blob
Format
Raw Data
Handle
23446821
Attached To
rPH Phabricator
PhabricatorOAuthClientDeleteController.php
View Options
<?php
final
class
PhabricatorOAuthClientDeleteController
extends
PhabricatorOAuthClientController
{
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$viewer
=
$request
->
getUser
();
$client
=
id
(
new
PhabricatorOAuthServerClientQuery
())
->
setViewer
(
$viewer
)
->
withPHIDs
(
array
(
$this
->
getClientPHID
()))
->
requireCapabilities
(
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
PhabricatorPolicyCapability
::
CAN_EDIT
,
))
->
executeOne
();
if
(!
$client
)
{
return
new
Aphront404Response
();
}
if
(
$request
->
isFormPost
())
{
$client
->
delete
();
$app_uri
=
$this
->
getApplicationURI
();
return
id
(
new
AphrontRedirectResponse
())->
setURI
(
$app_uri
);
}
$dialog
=
id
(
new
AphrontDialogView
())
->
setUser
(
$viewer
)
->
setTitle
(
pht
(
'Delete OAuth Application?'
))
->
appendParagraph
(
pht
(
'Really delete the OAuth application %s?'
,
phutil_tag
(
'strong'
,
array
(),
$client
->
getName
())))
->
addCancelButton
(
$client
->
getViewURI
())
->
addSubmitButton
(
pht
(
'Delete Application'
));
return
id
(
new
AphrontDialogResponse
())->
setDialog
(
$dialog
);
}
}
Event Timeline
Log In to Comment