mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 03:12:41 +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
62 lines
2 KiB
PHP
62 lines
2 KiB
PHP
<?php
|
|
|
|
final class DiffusionRepositoryEditDangerousController
|
|
extends DiffusionRepositoryEditController {
|
|
|
|
public function handleRequest(AphrontRequest $request) {
|
|
$response = $this->loadDiffusionContextForEdit();
|
|
if ($response) {
|
|
return $response;
|
|
}
|
|
|
|
$viewer = $this->getViewer();
|
|
$drequest = $this->getDiffusionRequest();
|
|
$repository = $drequest->getRepository();
|
|
|
|
if (!$repository->canAllowDangerousChanges()) {
|
|
return new Aphront400Response();
|
|
}
|
|
|
|
$edit_uri = $this->getRepositoryControllerURI($repository, 'edit/');
|
|
|
|
if ($request->isFormPost()) {
|
|
$xaction = id(new PhabricatorRepositoryTransaction())
|
|
->setTransactionType(PhabricatorRepositoryTransaction::TYPE_DANGEROUS)
|
|
->setNewValue(!$repository->shouldAllowDangerousChanges());
|
|
|
|
$editor = id(new PhabricatorRepositoryEditor())
|
|
->setContinueOnNoEffect(true)
|
|
->setContentSourceFromRequest($request)
|
|
->setActor($viewer)
|
|
->applyTransactions($repository, array($xaction));
|
|
|
|
return id(new AphrontReloadResponse())->setURI($edit_uri);
|
|
}
|
|
|
|
$force = phutil_tag('tt', array(), '--force');
|
|
|
|
if ($repository->shouldAllowDangerousChanges()) {
|
|
return $this->newDialog()
|
|
->setTitle(pht('Prevent Dangerous changes?'))
|
|
->appendChild(
|
|
pht(
|
|
'It will no longer be possible to delete branches from this '.
|
|
'repository, or %s push to this repository.',
|
|
$force))
|
|
->addSubmitButton(pht('Prevent Dangerous Changes'))
|
|
->addCancelButton($edit_uri);
|
|
} else {
|
|
return $this->newDialog()
|
|
->setTitle(pht('Allow Dangerous Changes?'))
|
|
->appendChild(
|
|
pht(
|
|
'If you allow dangerous changes, it will be possible to delete '.
|
|
'branches and %s push this repository. These operations can '.
|
|
'alter a repository in a way that is difficult to recover from.',
|
|
$force))
|
|
->addSubmitButton(pht('Allow Dangerous Changes'))
|
|
->addCancelButton($edit_uri);
|
|
}
|
|
}
|
|
|
|
}
|