1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 09:18:48 +02:00

Add a "--force" flag to bin/auth revoke

Summary: Ref T13043. I'd like to replace the manual credential revocation in the Phacility export workflow with shared code in `bin/auth revoke`, but we need it to run non-interactively. Add a `--force` flag purely to make our lives easier.

Test Plan: Ran `bin/auth revoke --everywhere ...` with and without `--force`. Got prompted without, got total annihilation with.

Reviewers: amckinley

Reviewed By: amckinley

Maniphest Tasks: T13043

Differential Revision: https://secure.phabricator.com/D18895
This commit is contained in:
epriestley 2018-01-20 17:41:31 -08:00
parent 9c00a43784
commit 42e2cd9af0

View file

@ -34,6 +34,10 @@ final class PhabricatorAuthManagementRevokeWorkflow
'name' => 'everywhere',
'help' => pht('Revoke from all credential owners.'),
),
array(
'name' => 'force',
'help' => pht('Revoke credentials without prompting.'),
),
));
}
@ -41,6 +45,7 @@ final class PhabricatorAuthManagementRevokeWorkflow
$viewer = PhabricatorUser::getOmnipotentUser();
$all_types = PhabricatorAuthRevoker::getAllRevokers();
$is_force = $args->getArg('force');
$type = $args->getArg('type');
$is_everything = $args->getArg('everything');
@ -97,7 +102,7 @@ final class PhabricatorAuthManagementRevokeWorkflow
}
}
if ($is_everywhere) {
if ($is_everywhere && !$is_force) {
echo id(new PhutilConsoleBlock())
->addParagraph(
pht(