mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-11 08:06:13 +01:00
50 lines
1.2 KiB
PHP
50 lines
1.2 KiB
PHP
|
<?php
|
||
|
|
||
|
final class AlmanacManagementUnlockWorkflow
|
||
|
extends AlmanacManagementWorkflow {
|
||
|
|
||
|
public 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;
|
||
|
}
|
||
|
|
||
|
}
|