2013-11-23 00:23:50 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class DiffusionMirrorDeleteController
|
|
|
|
extends DiffusionController {
|
|
|
|
|
2016-01-05 17:13:05 +01:00
|
|
|
public function handleRequest(AphrontRequest $request) {
|
|
|
|
$response = $this->loadDiffusionContext();
|
|
|
|
if ($response) {
|
|
|
|
return $response;
|
|
|
|
}
|
|
|
|
|
|
|
|
$viewer = $this->getViewer();
|
|
|
|
$drequest = $this->getDiffusionRequest();
|
2013-11-23 00:23:50 +01:00
|
|
|
$repository = $drequest->getRepository();
|
|
|
|
|
|
|
|
$mirror = id(new PhabricatorRepositoryMirrorQuery())
|
|
|
|
->setViewer($viewer)
|
2015-01-09 22:29:08 +01:00
|
|
|
->withIDs(array($request->getURIData('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);
|
|
|
|
}
|
|
|
|
|
2016-01-05 17:49:10 +01:00
|
|
|
return $this->newDialog()
|
2013-11-23 00:23:50 +01:00
|
|
|
->setTitle(pht('Really delete mirror?'))
|
|
|
|
->appendChild(
|
|
|
|
pht('Phabricator will stop pushing updates to this mirror.'))
|
|
|
|
->addSubmitButton(pht('Delete Mirror'))
|
|
|
|
->addCancelButton($edit_uri);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|