2013-11-23 00:23:50 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class DiffusionMirrorDeleteController
|
|
|
|
extends DiffusionController {
|
|
|
|
|
|
|
|
private $id;
|
|
|
|
|
|
|
|
public function willProcessRequest(array $data) {
|
|
|
|
$this->id = $data['id'];
|
|
|
|
parent::willProcessRequest($data);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function processRequest() {
|
|
|
|
$request = $this->getRequest();
|
|
|
|
$viewer = $request->getUser();
|
|
|
|
$drequest = $this->diffusionRequest;
|
|
|
|
$repository = $drequest->getRepository();
|
|
|
|
|
|
|
|
$mirror = id(new PhabricatorRepositoryMirrorQuery())
|
|
|
|
->setViewer($viewer)
|
|
|
|
->withIDs(array($this->id))
|
2014-12-11 00:23:55 +01:00
|
|
|
->requireCapabilities(
|
|
|
|
array(
|
|
|
|
PhabricatorPolicyCapability::CAN_VIEW,
|
|
|
|
PhabricatorPolicyCapability::CAN_EDIT,
|
|
|
|
))
|
2013-11-23 00:23:50 +01:00
|
|
|
->executeOne();
|
|
|
|
if (!$mirror) {
|
|
|
|
return new Aphront404Response();
|
|
|
|
}
|
|
|
|
|
|
|
|
$edit_uri = $this->getRepositoryControllerURI($repository, 'edit/#mirrors');
|
|
|
|
|
|
|
|
if ($request->isFormPost()) {
|
|
|
|
$mirror->delete();
|
|
|
|
return id(new AphrontReloadResponse())->setURI($edit_uri);
|
|
|
|
}
|
|
|
|
|
|
|
|
$dialog = id(new AphrontDialogView())
|
|
|
|
->setUser($viewer)
|
|
|
|
->setTitle(pht('Really delete mirror?'))
|
|
|
|
->appendChild(
|
|
|
|
pht('Phabricator will stop pushing updates to this mirror.'))
|
|
|
|
->addSubmitButton(pht('Delete Mirror'))
|
|
|
|
->addCancelButton($edit_uri);
|
|
|
|
|
|
|
|
return id(new AphrontDialogResponse())
|
|
|
|
->setDialog($dialog);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|