Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102519371
PassphraseCredentialConduitController.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, Feb 21, 14:13
Size
2 KB
Mime Type
text/x-php
Expires
Sun, Feb 23, 14:13 (2 d)
Engine
blob
Format
Raw Data
Handle
24339273
Attached To
rPH Phabricator
PassphraseCredentialConduitController.php
View Options
<?php
final
class
PassphraseCredentialConduitController
extends
PassphraseController
{
private
$id
;
public
function
willProcessRequest
(
array
$data
)
{
$this
->
id
=
$data
[
'id'
];
}
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$viewer
=
$request
->
getUser
();
$credential
=
id
(
new
PassphraseCredentialQuery
())
->
setViewer
(
$viewer
)
->
withIDs
(
array
(
$this
->
id
))
->
requireCapabilities
(
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
PhabricatorPolicyCapability
::
CAN_EDIT
,
))
->
executeOne
();
if
(!
$credential
)
{
return
new
Aphront404Response
();
}
$view_uri
=
'/K'
.
$credential
->
getID
();
$token
=
id
(
new
PhabricatorAuthSessionEngine
())->
requireHighSecuritySession
(
$viewer
,
$request
,
$view_uri
);
$type
=
PassphraseCredentialType
::
getTypeByConstant
(
$credential
->
getCredentialType
());
if
(!
$type
)
{
throw
new
Exception
(
pht
(
'Credential has invalid type "%s"!'
,
$type
));
}
if
(
$request
->
isFormPost
())
{
$xactions
=
array
();
$xactions
[]
=
id
(
new
PassphraseCredentialTransaction
())
->
setTransactionType
(
PassphraseCredentialTransaction
::
TYPE_CONDUIT
)
->
setNewValue
(!
$credential
->
getAllowConduit
());
$editor
=
id
(
new
PassphraseCredentialTransactionEditor
())
->
setActor
(
$viewer
)
->
setContinueOnMissingFields
(
true
)
->
setContentSourceFromRequest
(
$request
)
->
applyTransactions
(
$credential
,
$xactions
);
return
id
(
new
AphrontRedirectResponse
())->
setURI
(
$view_uri
);
}
if
(
$credential
->
getAllowConduit
())
{
return
$this
->
newDialog
()
->
setTitle
(
pht
(
'Prevent Conduit access?'
))
->
appendChild
(
pht
(
'This credential and its secret will no longer be able '
.
'to be retrieved using the `%s` method in Conduit.'
,
'passphrase.query'
))
->
addSubmitButton
(
pht
(
'Prevent Conduit Access'
))
->
addCancelButton
(
$view_uri
);
}
else
{
return
$this
->
newDialog
()
->
setTitle
(
pht
(
'Allow Conduit access?'
))
->
appendChild
(
pht
(
'This credential will be able to be retrieved via the Conduit '
.
'API by users who have access to this credential. You should '
.
'only enable this for credentials which need to be accessed '
.
'programmatically (such as from build agents).'
))
->
addSubmitButton
(
pht
(
'Allow Conduit Access'
))
->
addCancelButton
(
$view_uri
);
}
}
}
Event Timeline
Log In to Comment