2013-10-25 22:58:03 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class DiffusionRepositoryEditSubversionController
|
2013-10-26 00:58:58 +02:00
|
|
|
extends DiffusionRepositoryEditController {
|
2013-10-25 22:58:03 +02:00
|
|
|
|
2016-01-05 17:49:10 +01:00
|
|
|
public function handleRequest(AphrontRequest $request) {
|
|
|
|
$response = $this->loadDiffusionContextForEdit();
|
|
|
|
if ($response) {
|
|
|
|
return $response;
|
2013-10-25 22:58:03 +02:00
|
|
|
}
|
|
|
|
|
2016-01-05 17:49:10 +01:00
|
|
|
$viewer = $this->getViewer();
|
|
|
|
$drequest = $this->getDiffusionRequest();
|
|
|
|
$repository = $drequest->getRepository();
|
|
|
|
|
2013-10-25 22:58:03 +02:00
|
|
|
switch ($repository->getVersionControlSystem()) {
|
|
|
|
case PhabricatorRepositoryType::REPOSITORY_TYPE_GIT:
|
|
|
|
case PhabricatorRepositoryType::REPOSITORY_TYPE_MERCURIAL:
|
|
|
|
throw new Exception(
|
|
|
|
pht('Git and Mercurial do not support editing SVN properties!'));
|
|
|
|
case PhabricatorRepositoryType::REPOSITORY_TYPE_SVN:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
throw new Exception(
|
|
|
|
pht('Repository has unknown version control system!'));
|
|
|
|
}
|
|
|
|
|
|
|
|
$edit_uri = $this->getRepositoryControllerURI($repository, 'edit/');
|
|
|
|
|
|
|
|
$v_subpath = $repository->getHumanReadableDetail('svn-subpath');
|
|
|
|
$v_uuid = $repository->getUUID();
|
|
|
|
|
|
|
|
if ($request->isFormPost()) {
|
|
|
|
$v_subpath = $request->getStr('subpath');
|
|
|
|
$v_uuid = $request->getStr('uuid');
|
|
|
|
|
|
|
|
$xactions = array();
|
|
|
|
$template = id(new PhabricatorRepositoryTransaction());
|
|
|
|
|
|
|
|
$type_subpath = PhabricatorRepositoryTransaction::TYPE_SVN_SUBPATH;
|
|
|
|
$type_uuid = PhabricatorRepositoryTransaction::TYPE_UUID;
|
|
|
|
|
|
|
|
$xactions[] = id(clone $template)
|
|
|
|
->setTransactionType($type_subpath)
|
|
|
|
->setNewValue($v_subpath);
|
|
|
|
|
|
|
|
$xactions[] = id(clone $template)
|
|
|
|
->setTransactionType($type_uuid)
|
|
|
|
->setNewValue($v_uuid);
|
|
|
|
|
|
|
|
id(new PhabricatorRepositoryEditor())
|
|
|
|
->setContinueOnNoEffect(true)
|
|
|
|
->setContentSourceFromRequest($request)
|
|
|
|
->setActor($viewer)
|
|
|
|
->applyTransactions($repository, $xactions);
|
|
|
|
|
|
|
|
return id(new AphrontRedirectResponse())->setURI($edit_uri);
|
|
|
|
}
|
|
|
|
|
|
|
|
$content = array();
|
|
|
|
|
2013-10-26 00:58:58 +02:00
|
|
|
$crumbs = $this->buildApplicationCrumbs();
|
2013-12-19 02:47:34 +01:00
|
|
|
$crumbs->addTextCrumb(pht('Edit Subversion Info'));
|
2013-10-25 22:58:03 +02:00
|
|
|
|
|
|
|
$title = pht('Edit Subversion Info (%s)', $repository->getName());
|
|
|
|
|
|
|
|
$policies = id(new PhabricatorPolicyQuery())
|
|
|
|
->setViewer($viewer)
|
|
|
|
->setObject($repository)
|
|
|
|
->execute();
|
|
|
|
|
|
|
|
$form = id(new AphrontFormView())
|
|
|
|
->setUser($viewer)
|
|
|
|
->appendRemarkupInstructions(
|
|
|
|
pht(
|
|
|
|
"You can set the **Repository UUID**, which will help Phabriactor ".
|
|
|
|
"provide better context in some cases. You can find the UUID of a ".
|
2015-05-22 09:27:56 +02:00
|
|
|
"repository by running `%s`.\n\n".
|
2013-10-25 22:58:03 +02:00
|
|
|
"If you want to import only part of a repository, like `trunk/`, ".
|
|
|
|
"you can set a path in **Import Only**. Phabricator will ignore ".
|
2015-05-22 09:27:56 +02:00
|
|
|
"commits which do not affect this path.",
|
|
|
|
'svn info'))
|
2013-10-25 22:58:03 +02:00
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormTextControl())
|
|
|
|
->setName('uuid')
|
|
|
|
->setLabel(pht('Repository UUID'))
|
|
|
|
->setValue($v_uuid))
|
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormTextControl())
|
|
|
|
->setName('subpath')
|
|
|
|
->setLabel(pht('Import Only'))
|
|
|
|
->setValue($v_subpath))
|
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormSubmitControl())
|
|
|
|
->setValue(pht('Save Subversion Info'))
|
|
|
|
->addCancelButton($edit_uri));
|
|
|
|
|
|
|
|
$form_box = id(new PHUIObjectBoxView())
|
|
|
|
->setHeaderText($title)
|
|
|
|
->setForm($form);
|
|
|
|
|
2016-01-05 17:49:10 +01:00
|
|
|
return $this->newPage()
|
|
|
|
->setTitle($title)
|
|
|
|
->setCrumbs($crumbs)
|
|
|
|
->appendChild($form_box);
|
2013-10-25 22:58:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|