mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-11 17:32:41 +01:00
56 lines
1.7 KiB
PHP
56 lines
1.7 KiB
PHP
|
<?php
|
||
|
|
||
|
final class PhabricatorMacroDisableController
|
||
|
extends PhabricatorMacroController {
|
||
|
|
||
|
private $id;
|
||
|
|
||
|
public function willProcessRequest(array $data) {
|
||
|
$this->id = $data['id'];
|
||
|
}
|
||
|
|
||
|
public function processRequest() {
|
||
|
$request = $this->getRequest();
|
||
|
$user = $request->getUser();
|
||
|
|
||
|
$macro = id(new PhabricatorFileImageMacro())->load($this->id);
|
||
|
if (!$macro) {
|
||
|
return new Aphront404Response();
|
||
|
}
|
||
|
|
||
|
$view_uri = $this->getApplicationURI('/view/'.$this->id.'/');
|
||
|
|
||
|
if ($request->isDialogFormPost() || $macro->getIsDisabled()) {
|
||
|
$xaction = id(new PhabricatorMacroTransaction())
|
||
|
->setTransactionType(PhabricatorMacroTransactionType::TYPE_DISABLED)
|
||
|
->setNewValue($macro->getIsDisabled() ? 0 : 1);
|
||
|
|
||
|
$editor = id(new PhabricatorMacroEditor())
|
||
|
->setActor($user)
|
||
|
->setContentSource(
|
||
|
PhabricatorContentSource::newForSource(
|
||
|
PhabricatorContentSource::SOURCE_WEB,
|
||
|
array(
|
||
|
'ip' => $request->getRemoteAddr(),
|
||
|
)))
|
||
|
->applyTransactions($macro, array($xaction));
|
||
|
|
||
|
return id(new AphrontRedirectResponse())->setURI($view_uri);
|
||
|
}
|
||
|
|
||
|
$dialog = new AphrontDialogView();
|
||
|
$dialog
|
||
|
->setUser($request->getUser())
|
||
|
->setTitle('Really disable macro?')
|
||
|
->appendChild(
|
||
|
'<p>Really disable the much-beloved image macro "'.
|
||
|
phutil_escape_html($macro->getName()).'"? It will be sorely missed.'.
|
||
|
'</p>')
|
||
|
->setSubmitURI($this->getApplicationURI('/disable/'.$this->id.'/'))
|
||
|
->addSubmitButton('Disable')
|
||
|
->addCancelButton($view_uri);
|
||
|
|
||
|
return id(new AphrontDialogResponse())->setDialog($dialog);
|
||
|
}
|
||
|
}
|