Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91005354
AlmanacManagementUntrustKeyWorkflow.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, Nov 6, 20:48
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Nov 8, 20:48 (2 d)
Engine
blob
Format
Raw Data
Handle
22178067
Attached To
rPH Phabricator
AlmanacManagementUntrustKeyWorkflow.php
View Options
<?php
final
class
AlmanacManagementUntrustKeyWorkflow
extends
AlmanacManagementWorkflow
{
protected
function
didConstruct
()
{
$this
->
setName
(
'untrust-key'
)
->
setSynopsis
(
pht
(
'Revoke trust of a public key.'
))
->
setArguments
(
array
(
array
(
'name'
=>
'id'
,
'param'
=>
'id'
,
'help'
=>
pht
(
'ID of the key to revoke trust for.'
),
),
));
}
public
function
execute
(
PhutilArgumentParser
$args
)
{
$console
=
PhutilConsole
::
getConsole
();
$id
=
$args
->
getArg
(
'id'
);
if
(!
$id
)
{
throw
new
PhutilArgumentUsageException
(
pht
(
'Specify a public key to revoke trust for with --id.'
));
}
$key
=
id
(
new
PhabricatorAuthSSHKeyQuery
())
->
setViewer
(
$this
->
getViewer
())
->
withIDs
(
array
(
$id
))
->
executeOne
();
if
(!
$key
)
{
throw
new
PhutilArgumentUsageException
(
pht
(
'No public key exists with ID "%s".'
,
$id
));
}
if
(!
$key
->
getIsTrusted
())
{
throw
new
PhutilArgumentUsageException
(
pht
(
'Public key with ID %s is not trusted.'
,
$id
));
}
$key
->
setIsTrusted
(
0
);
$key
->
save
();
$console
->
writeOut
(
"**<bg:green> %s </bg>** %s
\n
"
,
pht
(
'TRUST REVOKED'
),
pht
(
'Trust has been revoked for public key %s.'
,
$id
));
}
}
Event Timeline
Log In to Comment