Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F105952503
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
Fri, Mar 21, 01:11
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Mar 23, 01:11 (2 d)
Engine
blob
Format
Raw Data
Handle
25083198
Attached To
rPH Phabricator
PhabricatorOAuthClientDeleteController.php
View Options
<?php
/**
* @group oauthserver
*/
final
class
PhabricatorOAuthClientDeleteController
extends
PhabricatorOAuthClientBaseController
{
public
function
processRequest
()
{
$phid
=
$this
->
getClientPHID
();
$title
=
'Delete OAuth Client'
;
$request
=
$this
->
getRequest
();
$current_user
=
$request
->
getUser
();
$client
=
id
(
new
PhabricatorOAuthServerClient
())
->
loadOneWhere
(
'phid = %s'
,
$phid
);
if
(
empty
(
$client
))
{
return
new
Aphront404Response
();
}
if
(
$client
->
getCreatorPHID
()
!=
$current_user
->
getPHID
())
{
$message
=
'Access denied to client with phid '
.
$phid
.
'. '
.
'Only the user who created the client has permission to '
.
'delete the client.'
;
return
id
(
new
Aphront403Response
())
->
setForbiddenText
(
$message
);
}
if
(
$request
->
isFormPost
())
{
$client
->
delete
();
return
id
(
new
AphrontRedirectResponse
())
->
setURI
(
'/oauthserver/client/?deleted=1'
);
}
$client_name
=
phutil_escape_html
(
$client
->
getName
());
$title
.=
' '
.
$client_name
;
$dialog
=
new
AphrontDialogView
();
$dialog
->
setUser
(
$current_user
);
$dialog
->
setTitle
(
$title
);
$dialog
->
appendChild
(
'<p>Are you sure you want to delete this client?</p>'
);
$dialog
->
addSubmitButton
();
$dialog
->
addCancelButton
(
$client
->
getEditURI
());
return
id
(
new
AphrontDialogResponse
())->
setDialog
(
$dialog
);
}
}
Event Timeline
Log In to Comment