mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 10:22:42 +01:00
6081370391
Summary: Fixes T6658. Test Plan: made a diff with no repository and default policy and it worked! Reviewers: epriestley, chad Reviewed By: chad Subscribers: Korvin, epriestley Maniphest Tasks: T6658 Differential Revision: https://secure.phabricator.com/D10910
78 lines
2.2 KiB
PHP
78 lines
2.2 KiB
PHP
<?php
|
|
|
|
final class DifferentialCreateRawDiffConduitAPIMethod
|
|
extends DifferentialConduitAPIMethod {
|
|
|
|
public function getAPIMethodName() {
|
|
return 'differential.createrawdiff';
|
|
}
|
|
|
|
public function getMethodDescription() {
|
|
return pht('Create a new Differential diff from a raw diff source.');
|
|
}
|
|
|
|
public function defineParamTypes() {
|
|
return array(
|
|
'diff' => 'required string',
|
|
'repositoryPHID' => 'optional string',
|
|
'viewPolicy' => 'optional string',
|
|
);
|
|
}
|
|
|
|
public function defineReturnType() {
|
|
return 'nonempty dict';
|
|
}
|
|
|
|
public function defineErrorTypes() {
|
|
return array(
|
|
);
|
|
}
|
|
|
|
protected function execute(ConduitAPIRequest $request) {
|
|
$viewer = $request->getUser();
|
|
$raw_diff = $request->getValue('diff');
|
|
|
|
$repository_phid = $request->getValue('repositoryPHID');
|
|
if ($repository_phid) {
|
|
$repository = id(new PhabricatorRepositoryQuery())
|
|
->setViewer($viewer)
|
|
->withPHIDs(array($repository_phid))
|
|
->executeOne();
|
|
if (!$repository) {
|
|
throw new Exception(
|
|
pht('No such repository "%s"!', $repository_phid));
|
|
}
|
|
}
|
|
|
|
$parser = new ArcanistDiffParser();
|
|
$changes = $parser->parseDiff($raw_diff);
|
|
$diff = DifferentialDiff::newFromRawChanges($viewer, $changes);
|
|
|
|
$diff_data_dict = array(
|
|
'creationMethod' => 'web',
|
|
'authorPHID' => $viewer->getPHID(),
|
|
'repositoryPHID' => $repository_phid,
|
|
'lintStatus' => DifferentialLintStatus::LINT_SKIP,
|
|
'unitStatus' => DifferentialUnitStatus::UNIT_SKIP,);
|
|
|
|
$xactions = array(id(new DifferentialTransaction())
|
|
->setTransactionType(DifferentialDiffTransaction::TYPE_DIFF_CREATE)
|
|
->setNewValue($diff_data_dict),);
|
|
|
|
if ($request->getValue('viewPolicy')) {
|
|
$xactions[] = id(new DifferentialTransaction())
|
|
->setTransactionType(PhabricatorTransactions::TYPE_VIEW_POLICY)
|
|
->setNewValue($request->getValue('viewPolicy'));
|
|
}
|
|
|
|
id(new DifferentialDiffEditor())
|
|
->setActor($viewer)
|
|
->setContentSourceFromConduitRequest($request)
|
|
->setContinueOnNoEffect(true)
|
|
->setLookupRepository(false) // respect user choice
|
|
->applyTransactions($diff, $xactions);
|
|
|
|
return $this->buildDiffInfoDictionary($diff);
|
|
}
|
|
|
|
}
|