mirror of
https://we.phorge.it/source/phorge.git
synced 2025-04-05 00:48:22 +02:00
Summary: This updates (all?) of Diffusion/Audit to new UI, included edit and other extra form pages. It's fairly complete but I don't know all the nooks and crannies so to speak to fully verify I didn't mess anything up. Test Plan: Tested creating new repositories, browsing, searching, auditing. Need more eyes. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D15487
80 lines
2.3 KiB
PHP
80 lines
2.3 KiB
PHP
<?php
|
|
|
|
final class DiffusionRepositoryEditStorageController
|
|
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/');
|
|
|
|
$v_local = $repository->getHumanReadableDetail('local-path');
|
|
$errors = array();
|
|
|
|
$crumbs = $this->buildApplicationCrumbs();
|
|
$crumbs->addTextCrumb(pht('Edit Storage'));
|
|
|
|
$title = pht('Edit %s', $repository->getName());
|
|
$header = id(new PHUIHeaderView())
|
|
->setHeader($title)
|
|
->setHeaderIcon('fa-pencil');
|
|
|
|
$service_phid = $repository->getAlmanacServicePHID();
|
|
if ($service_phid) {
|
|
$handles = $this->loadViewerHandles(array($service_phid));
|
|
$v_service = $handles[$service_phid]->renderLink();
|
|
} else {
|
|
$v_service = phutil_tag(
|
|
'em',
|
|
array(),
|
|
pht('Local'));
|
|
}
|
|
|
|
$form = id(new AphrontFormView())
|
|
->setUser($viewer)
|
|
->appendChild(
|
|
id(new AphrontFormMarkupControl())
|
|
->setLabel(pht('Storage Service'))
|
|
->setValue($v_service))
|
|
->appendChild(
|
|
id(new AphrontFormMarkupControl())
|
|
->setName('local')
|
|
->setLabel(pht('Storage Path'))
|
|
->setValue($v_local))
|
|
->appendRemarkupInstructions(
|
|
pht(
|
|
"You can not adjust the local path for this repository from the ".
|
|
"web interface. To edit it, run this command:\n\n %s",
|
|
sprintf(
|
|
'phabricator/ $ ./bin/repository edit %s --as %s --local-path ...',
|
|
$repository->getMonogram(),
|
|
$viewer->getUsername())))
|
|
->appendChild(
|
|
id(new AphrontFormSubmitControl())
|
|
->addCancelButton($edit_uri, pht('Done')));
|
|
|
|
$form_box = id(new PHUIObjectBoxView())
|
|
->setHeaderText(pht('Storage'))
|
|
->setBackground(PHUIObjectBoxView::BLUE_PROPERTY)
|
|
->setForm($form);
|
|
|
|
$view = id(new PHUITwoColumnView())
|
|
->setHeader($header)
|
|
->setFooter(array(
|
|
$form_box,
|
|
));
|
|
|
|
return $this->newPage()
|
|
->setTitle($title)
|
|
->setCrumbs($crumbs)
|
|
->appendChild($view);
|
|
}
|
|
|
|
}
|