mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-11 08:06:13 +01:00
daadf95537
Summary: Ref T6822. Test Plan: `grep`. This method is only called from within `PhutilArgumentWorkflow::__construct`. Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: Korvin, epriestley Maniphest Tasks: T6822 Differential Revision: https://secure.phabricator.com/D11415
49 lines
1.2 KiB
PHP
49 lines
1.2 KiB
PHP
<?php
|
|
|
|
final class AlmanacManagementUnlockWorkflow
|
|
extends AlmanacManagementWorkflow {
|
|
|
|
protected function didConstruct() {
|
|
$this
|
|
->setName('unlock')
|
|
->setSynopsis(pht('Unlock a service to allow it to be edited.'))
|
|
->setArguments(
|
|
array(
|
|
array(
|
|
'name' => 'services',
|
|
'wildcard' => true,
|
|
),
|
|
));
|
|
}
|
|
|
|
public function execute(PhutilArgumentParser $args) {
|
|
$console = PhutilConsole::getConsole();
|
|
|
|
$services = $this->loadServices($args->getArg('services'));
|
|
if (!$services) {
|
|
throw new PhutilArgumentUsageException(
|
|
pht('Specify at least one service to unlock.'));
|
|
}
|
|
|
|
foreach ($services as $service) {
|
|
if (!$service->getIsLocked()) {
|
|
throw new PhutilArgumentUsageException(
|
|
pht(
|
|
'Service "%s" is not locked!',
|
|
$service->getName()));
|
|
}
|
|
}
|
|
|
|
foreach ($services as $service) {
|
|
$this->updateServiceLock($service, false);
|
|
|
|
$console->writeOut(
|
|
"**<bg:green> %s </bg>** %s\n",
|
|
pht('UNLOCKED'),
|
|
pht('Service "%s" was unlocked.', $service->getName()));
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
}
|