mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 11:22:40 +01:00
649f882720
Summary: Ref T4245. Prepares edit endpoints for more flexible repository identifiers. Test Plan: - Added, edited, deleted mirror. - Created repository. - Edited basic repository information. - Edited policies for a repository. - Activated/deactivated repository. - Updated a repository. - Hit "Delete" dialog for a repository. - Edited hosting. - Toggled dangerous changes. - Edited branches. - Edited automation. - Tested automation. - Edited storage. - Edited staging. - Edited encoding. - Edited symbols. - Edited branches. - Edited actions. - Tried to do edits as an unprivileged user. Reviewers: chad Reviewed By: chad Maniphest Tasks: T4245 Differential Revision: https://secure.phabricator.com/D14945
46 lines
1.3 KiB
PHP
46 lines
1.3 KiB
PHP
<?php
|
|
|
|
final class DiffusionRepositoryEditDeleteController
|
|
extends DiffusionRepositoryEditController {
|
|
|
|
public function handleRequest(AphrontRequest $request) {
|
|
$response = $this->loadDiffusionContextForEdit();
|
|
if ($response) {
|
|
return $response;
|
|
}
|
|
|
|
$viewer = $this->getViewer();
|
|
$drequest = $this->getDiffusionRequest();
|
|
$repository = $drequest->getRepository();
|
|
|
|
$edit_uri = $this->getRepositoryControllerURI($repository, 'edit/');
|
|
|
|
$dialog = new AphrontDialogView();
|
|
$text_1 = pht(
|
|
'If you really want to delete the repository, run this command from '.
|
|
'the command line:');
|
|
$command = csprintf(
|
|
'phabricator/ $ ./bin/remove destroy %R',
|
|
$repository->getMonogram());
|
|
$text_2 = pht(
|
|
'Repositories touch many objects and as such deletes are '.
|
|
'prohibitively expensive to run from the web UI.');
|
|
$body = phutil_tag(
|
|
'div',
|
|
array(
|
|
'class' => 'phabricator-remarkup',
|
|
),
|
|
array(
|
|
phutil_tag('p', array(), $text_1),
|
|
phutil_tag('p', array(),
|
|
phutil_tag('tt', array(), $command)),
|
|
phutil_tag('p', array(), $text_2),
|
|
));
|
|
|
|
return $this->newDialog()
|
|
->setTitle(pht('Really want to delete the repository?'))
|
|
->appendChild($body)
|
|
->addCancelButton($edit_uri, pht('Okay'));
|
|
}
|
|
|
|
}
|