Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F3295566
PhabricatorConduitTokenEditController.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
2 KB
Referenced Files
None
Subscribers
None
PhabricatorConduitTokenEditController.php
View Options
<?php
final
class
PhabricatorConduitTokenEditController
extends
PhabricatorConduitController
{
public
function
handleRequest
(
AphrontRequest
$request
)
{
$viewer
=
$request
->
getViewer
(
)
;
$id
=
$request
->
getURIData
(
'id'
)
;
if
(
$id
)
{
$token
=
id
(
new
PhabricatorConduitTokenQuery
(
)
)
->
setViewer
(
$viewer
)
->
withIDs
(
array
(
$id
)
)
->
withExpired
(
false
)
->
requireCapabilities
(
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
PhabricatorPolicyCapability
::
CAN_EDIT
,
)
)
->
executeOne
(
)
;
if
(
!
$token
)
{
return
new
Aphront404Response
(
)
;
}
$object
=
$token
->
getObject
(
)
;
$is_new
=
false
;
$title
=
pht
(
'View API Token'
)
;
}
else
{
$object
=
id
(
new
PhabricatorObjectQuery
(
)
)
->
setViewer
(
$viewer
)
->
withPHIDs
(
array
(
$request
->
getStr
(
'objectPHID'
)
)
)
->
requireCapabilities
(
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
PhabricatorPolicyCapability
::
CAN_EDIT
,
)
)
->
executeOne
(
)
;
if
(
!
$object
)
{
return
new
Aphront404Response
(
)
;
}
$token
=
PhabricatorConduitToken
::
initializeNewToken
(
$object
->
getPHID
(
)
,
PhabricatorConduitToken
::
TYPE_STANDARD
)
;
$is_new
=
true
;
$title
=
pht
(
'Generate API Token'
)
;
$submit_button
=
pht
(
'Generate Token'
)
;
}
$panel_uri
=
id
(
new
PhabricatorConduitTokensSettingsPanel
(
)
)
->
setViewer
(
$viewer
)
->
setUser
(
$object
)
->
getPanelURI
(
)
;
id
(
new
PhabricatorAuthSessionEngine
(
)
)
->
requireHighSecuritySession
(
$viewer
,
$request
,
$panel_uri
)
;
if
(
$request
->
isFormPost
(
)
)
{
$token
->
save
(
)
;
if
(
$is_new
)
{
$token_uri
=
'/conduit/token/edit/'
.
$token
->
getID
(
)
.
'/'
;
}
else
{
$token_uri
=
$panel_uri
;
}
return
id
(
new
AphrontRedirectResponse
(
)
)
->
setURI
(
$token_uri
)
;
}
$dialog
=
$this
->
newDialog
(
)
->
setTitle
(
$title
)
->
addHiddenInput
(
'objectPHID'
,
$object
->
getPHID
(
)
)
;
if
(
$is_new
)
{
$dialog
->
appendParagraph
(
pht
(
'Generate a new API token?'
)
)
->
addSubmitButton
(
$submit_button
)
->
addCancelButton
(
$panel_uri
)
;
}
else
{
$form
=
id
(
new
AphrontFormView
(
)
)
->
setUser
(
$viewer
)
;
if
(
$token
->
getTokenType
(
)
===
PhabricatorConduitToken
::
TYPE_CLUSTER
)
{
$dialog
->
appendChild
(
pht
(
'This token is automatically generated, and used to make '
.
'requests between nodes in a cluster. You can not use this '
.
'token in external applications.'
)
)
;
}
else
{
$form
->
appendChild
(
id
(
new
AphrontFormTextControl
(
)
)
->
setLabel
(
pht
(
'Token'
)
)
->
setValue
(
$token
->
getToken
(
)
)
)
;
}
$dialog
->
appendForm
(
$form
)
->
addCancelButton
(
$panel_uri
,
pht
(
'Done'
)
)
;
}
return
$dialog
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Thu, Mar 27, 02:29 (3 w, 3 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1114305
Default Alt Text
PhabricatorConduitTokenEditController.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment