mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 19:32: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
165 lines
4.9 KiB
PHP
165 lines
4.9 KiB
PHP
<?php
|
|
|
|
final class DiffusionRepositoryEditBasicController
|
|
extends DiffusionRepositoryEditController {
|
|
|
|
public function handleRequest(AphrontRequest $request) {
|
|
$response = $this->loadDiffusionContextForEdit();
|
|
if ($response) {
|
|
return $response;
|
|
}
|
|
|
|
$viewer = $request->getUser();
|
|
$drequest = $this->getDiffusionRequest();
|
|
$repository = $drequest->getRepository();
|
|
|
|
$edit_uri = $this->getRepositoryControllerURI($repository, 'edit/');
|
|
|
|
$v_name = $repository->getName();
|
|
$v_desc = $repository->getDetail('description');
|
|
$v_clone_name = $repository->getDetail('clone-name');
|
|
$v_projects = PhabricatorEdgeQuery::loadDestinationPHIDs(
|
|
$repository->getPHID(),
|
|
PhabricatorProjectObjectHasProjectEdgeType::EDGECONST);
|
|
$e_name = true;
|
|
$errors = array();
|
|
|
|
if ($request->isFormPost()) {
|
|
$v_name = $request->getStr('name');
|
|
$v_desc = $request->getStr('description');
|
|
$v_projects = $request->getArr('projectPHIDs');
|
|
|
|
if ($repository->isHosted()) {
|
|
$v_clone_name = $request->getStr('cloneName');
|
|
}
|
|
|
|
if (!strlen($v_name)) {
|
|
$e_name = pht('Required');
|
|
$errors[] = pht('Repository name is required.');
|
|
} else {
|
|
$e_name = null;
|
|
}
|
|
|
|
if (!$errors) {
|
|
$xactions = array();
|
|
$template = id(new PhabricatorRepositoryTransaction());
|
|
|
|
$type_name = PhabricatorRepositoryTransaction::TYPE_NAME;
|
|
$type_desc = PhabricatorRepositoryTransaction::TYPE_DESCRIPTION;
|
|
$type_edge = PhabricatorTransactions::TYPE_EDGE;
|
|
$type_clone_name = PhabricatorRepositoryTransaction::TYPE_CLONE_NAME;
|
|
|
|
$xactions[] = id(clone $template)
|
|
->setTransactionType($type_name)
|
|
->setNewValue($v_name);
|
|
|
|
$xactions[] = id(clone $template)
|
|
->setTransactionType($type_desc)
|
|
->setNewValue($v_desc);
|
|
|
|
$xactions[] = id(clone $template)
|
|
->setTransactionType($type_clone_name)
|
|
->setNewValue($v_clone_name);
|
|
|
|
$xactions[] = id(clone $template)
|
|
->setTransactionType($type_edge)
|
|
->setMetadataValue(
|
|
'edge:type',
|
|
PhabricatorProjectObjectHasProjectEdgeType::EDGECONST)
|
|
->setNewValue(
|
|
array(
|
|
'=' => array_fuse($v_projects),
|
|
));
|
|
|
|
id(new PhabricatorRepositoryEditor())
|
|
->setContinueOnNoEffect(true)
|
|
->setContentSourceFromRequest($request)
|
|
->setActor($viewer)
|
|
->applyTransactions($repository, $xactions);
|
|
|
|
return id(new AphrontRedirectResponse())->setURI($edit_uri);
|
|
}
|
|
}
|
|
|
|
$crumbs = $this->buildApplicationCrumbs();
|
|
$crumbs->addTextCrumb(pht('Edit Basics'));
|
|
|
|
$title = pht('Edit %s', $repository->getName());
|
|
|
|
$form = id(new AphrontFormView())
|
|
->setUser($viewer)
|
|
->appendChild(
|
|
id(new AphrontFormTextControl())
|
|
->setName('name')
|
|
->setLabel(pht('Name'))
|
|
->setValue($v_name)
|
|
->setError($e_name));
|
|
|
|
if ($repository->isHosted()) {
|
|
$form
|
|
->appendChild(
|
|
id(new AphrontFormTextControl())
|
|
->setName('cloneName')
|
|
->setLabel(pht('Clone/Checkout As'))
|
|
->setValue($v_clone_name)
|
|
->setCaption(
|
|
pht(
|
|
'Optional directory name to use when cloning or checking out '.
|
|
'this repository.')));
|
|
}
|
|
|
|
$form
|
|
->appendChild(
|
|
id(new PhabricatorRemarkupControl())
|
|
->setUser($viewer)
|
|
->setName('description')
|
|
->setLabel(pht('Description'))
|
|
->setValue($v_desc))
|
|
->appendControl(
|
|
id(new AphrontFormTokenizerControl())
|
|
->setDatasource(new PhabricatorProjectDatasource())
|
|
->setName('projectPHIDs')
|
|
->setLabel(pht('Projects'))
|
|
->setValue($v_projects))
|
|
->appendChild(
|
|
id(new AphrontFormSubmitControl())
|
|
->setValue(pht('Save'))
|
|
->addCancelButton($edit_uri))
|
|
->appendChild(id(new PHUIFormDividerControl()))
|
|
->appendRemarkupInstructions($this->getReadmeInstructions());
|
|
|
|
$object_box = id(new PHUIObjectBoxView())
|
|
->setHeaderText($title)
|
|
->setForm($form)
|
|
->setFormErrors($errors);
|
|
|
|
return $this->newPage()
|
|
->setTitle($title)
|
|
->setCrumbs($crumbs)
|
|
->appendChild($object_box);
|
|
}
|
|
|
|
private function getReadmeInstructions() {
|
|
return pht(<<<EOTEXT
|
|
You can also create a `%s` file at the repository root (or in any
|
|
subdirectory) to provide information about the repository. These formats are
|
|
supported:
|
|
|
|
| File Name | Rendered As... |
|
|
|-----------|-----------------|
|
|
| `%s` | Plain Text |
|
|
| `%s` | Plain Text |
|
|
| `%s` | Remarkup |
|
|
| `%s` | Remarkup |
|
|
| `%s` | \xC2\xA1Fiesta! |
|
|
EOTEXT
|
|
,
|
|
'README',
|
|
'README',
|
|
'README.txt',
|
|
'README.remarkup',
|
|
'README.md',
|
|
'README.rainbow');
|
|
}
|
|
|
|
}
|