mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-02 01:48:23 +01:00
48 lines
1.2 KiB
PHP
48 lines
1.2 KiB
PHP
|
<?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))
|
||
|
->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);
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|