Something went wrong. Try again.
@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
Something went wrong. Try again.
1.9 kB · 71 lines
PHP
at commit e0faa667
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172<?php
final class DiffusionPathValidateController extends DiffusionController {
protected function shouldLoadDiffusionRequest() { return false; }
protected function processDiffusionRequest(AphrontRequest $request) {
$repository_phid = $request->getStr('repositoryPHID'); $repository = id(new PhabricatorRepositoryQuery()) ->setViewer($request->getUser()) ->withPHIDs(array($repository_phid)) ->executeOne(); if (!$repository) { return new Aphront400Response(); }
$path = $request->getStr('path'); $path = ltrim($path, '/');
$drequest = DiffusionRequest::newFromDictionary( array( 'user' => $request->getUser(), '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 = pht('Not found in %s', $branch); } else { $message = pht('Not found at %s', 'HEAD'); } } else { $message = pht('OK'); }
$output['message'] = $message;
return id(new AphrontAjaxResponse())->setContent($output); }}