Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98191933
PhabricatorConduitTokenEditController.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, Jan 10, 21:42
Size
2 KB
Mime Type
text/x-php
Expires
Sun, Jan 12, 21:42 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23530862
Attached To
rPH Phabricator
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'
);
}
if
(
$viewer
->
getPHID
()
==
$object
->
getPHID
())
{
$panel_uri
=
'/settings/panel/apitokens/'
;
}
else
{
$panel_uri
=
'/settings/'
.
$object
->
getID
().
'/panel/apitokens/'
;
}
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 by Phabricator, and used '
.
'to make requests between nodes in a Phabricator 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
;
}
}
Event Timeline
Log In to Comment