mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 11:22:40 +01:00
a42851501f
Summary: see title. Ref T2784. Test Plan: In diffusion, for each of SVN, Mercurial, and Git, I loaded up /diffusion/CALLSIGN/. I verified the README was displayed and things looked good. Next I clicked on "browse" on the top-most commit and verified things looked correct. Also clicked through to a file for a good measure and things looked good. In owners, for each of SVN, Mercurial, and Git, I played around with the path typeahead / validator. It worked correctly! Reviewers: epriestley Reviewed By: epriestley CC: chad, aran, Korvin Maniphest Tasks: T2784 Differential Revision: https://secure.phabricator.com/D5883
70 lines
1.7 KiB
PHP
70 lines
1.7 KiB
PHP
<?php
|
|
|
|
final class DiffusionPathValidateController extends DiffusionController {
|
|
|
|
public function willProcessRequest(array $data) {
|
|
// Don't build a DiffusionRequest.
|
|
}
|
|
|
|
public function processRequest() {
|
|
$request = $this->getRequest();
|
|
|
|
$repository_phid = $request->getStr('repositoryPHID');
|
|
$repository = id(new PhabricatorRepository())->loadOneWhere(
|
|
'phid = %s',
|
|
$repository_phid);
|
|
if (!$repository) {
|
|
return new Aphront400Response();
|
|
}
|
|
|
|
$path = $request->getStr('path');
|
|
$path = ltrim($path, '/');
|
|
|
|
$drequest = DiffusionRequest::newFromDictionary(
|
|
array(
|
|
'repository' => $repository,
|
|
'path' => $path,
|
|
));
|
|
$this->setDiffusionRequest($drequest);
|
|
|
|
$browse_results = DiffusionBrowseResultSet::newFromConduit(
|
|
$this->callConduitWithDiffusionRequest(
|
|
'diffusion.browsequery',
|
|
array(
|
|
'path' => $drequest->getPath(),
|
|
'commit' => $drequest->getCommit(),
|
|
'needValidityOnly' => true,
|
|
)));
|
|
$valid = $browse_results->isValidResults();
|
|
|
|
if (!$valid) {
|
|
switch ($browse_results->getReasonForEmptyResultSet()) {
|
|
case DiffusionBrowseResultSet::REASON_IS_FILE:
|
|
$valid = true;
|
|
break;
|
|
case DiffusionBrowseResultSet::REASON_IS_EMPTY:
|
|
$valid = true;
|
|
break;
|
|
}
|
|
}
|
|
|
|
$output = array(
|
|
'valid' => (bool)$valid,
|
|
);
|
|
|
|
if (!$valid) {
|
|
$branch = $drequest->getBranch();
|
|
if ($branch) {
|
|
$message = 'Not found in '.$branch;
|
|
} else {
|
|
$message = 'Not found at HEAD';
|
|
}
|
|
} else {
|
|
$message = 'OK';
|
|
}
|
|
|
|
$output['message'] = $message;
|
|
|
|
return id(new AphrontAjaxResponse())->setContent($output);
|
|
}
|
|
}
|