2013-10-07 02:10:29 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class HeraldDisableController extends HeraldController {
|
|
|
|
|
|
|
|
private $id;
|
|
|
|
private $action;
|
|
|
|
|
|
|
|
public function willProcessRequest(array $data) {
|
|
|
|
$this->id = $data['id'];
|
|
|
|
$this->action = $data['action'];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function processRequest() {
|
|
|
|
$request = $this->getRequest();
|
|
|
|
$viewer = $request->getUser();
|
|
|
|
$id = $this->id;
|
|
|
|
|
|
|
|
$rule = id(new HeraldRuleQuery())
|
|
|
|
->setViewer($viewer)
|
|
|
|
->withIDs(array($id))
|
|
|
|
->requireCapabilities(
|
|
|
|
array(
|
|
|
|
PhabricatorPolicyCapability::CAN_VIEW,
|
|
|
|
PhabricatorPolicyCapability::CAN_EDIT,
|
|
|
|
))
|
|
|
|
->executeOne();
|
|
|
|
if (!$rule) {
|
|
|
|
return new Aphront404Response();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($rule->getRuleType() == HeraldRuleTypeConfig::RULE_TYPE_GLOBAL) {
|
|
|
|
$this->requireApplicationCapability(
|
2013-10-09 22:44:41 +02:00
|
|
|
HeraldCapabilityManageGlobalRules::CAPABILITY);
|
2013-10-07 02:10:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$view_uri = $this->getApplicationURI("rule/{$id}/");
|
|
|
|
|
|
|
|
$is_disable = ($this->action === 'disable');
|
|
|
|
|
|
|
|
if ($request->isFormPost()) {
|
|
|
|
$xaction = id(new HeraldRuleTransaction())
|
|
|
|
->setTransactionType(HeraldRuleTransaction::TYPE_DISABLE)
|
|
|
|
->setNewValue($is_disable);
|
|
|
|
|
|
|
|
id(new HeraldRuleEditor())
|
|
|
|
->setActor($viewer)
|
|
|
|
->setContinueOnNoEffect(true)
|
|
|
|
->setContentSourceFromRequest($request)
|
|
|
|
->applyTransactions($rule, array($xaction));
|
|
|
|
|
|
|
|
return id(new AphrontRedirectResponse())->setURI($view_uri);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($is_disable) {
|
|
|
|
$title = pht('Really disable this rule?');
|
|
|
|
$body = pht('This rule will no longer activate.');
|
|
|
|
$button = pht('Disable Rule');
|
|
|
|
} else {
|
|
|
|
$title = pht('Really enable this rule?');
|
|
|
|
$body = pht('This rule will become active again.');
|
|
|
|
$button = pht('Enable Rule');
|
|
|
|
}
|
|
|
|
|
|
|
|
$dialog = id(new AphrontDialogView())
|
|
|
|
->setUser($viewer)
|
|
|
|
->setTitle($title)
|
|
|
|
->appendChild($body)
|
|
|
|
->addSubmitButton($button)
|
|
|
|
->addCancelButton($view_uri);
|
|
|
|
|
|
|
|
return id(new AphrontDialogResponse())->setDialog($dialog);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|