Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F122129553
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
Wed, Jul 16, 00:01
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Jul 18, 00:01 (2 d)
Engine
blob
Format
Raw Data
Handle
27438544
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