mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-25 00:02:41 +01:00
ff6ccd5f68
Summary: Ref T9134. It looks like this functionality was removed in D13848. Test Plan: Submitted a diff successfully. Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: Korvin Maniphest Tasks: T9134 Differential Revision: https://secure.phabricator.com/D13869
161 lines
4.9 KiB
PHP
161 lines
4.9 KiB
PHP
<?php
|
|
|
|
final class DifferentialCreateDiffConduitAPIMethod
|
|
extends DifferentialConduitAPIMethod {
|
|
|
|
public function getAPIMethodName() {
|
|
return 'differential.creatediff';
|
|
}
|
|
|
|
public function getMethodDescription() {
|
|
return pht('Create a new Differential diff.');
|
|
}
|
|
|
|
protected function defineParamTypes() {
|
|
$vcs_const = $this->formatStringConstants(
|
|
array(
|
|
'svn',
|
|
'git',
|
|
'hg',
|
|
));
|
|
|
|
$status_const = $this->formatStringConstants(
|
|
array(
|
|
'none',
|
|
'skip',
|
|
'okay',
|
|
'warn',
|
|
'fail',
|
|
));
|
|
|
|
return array(
|
|
'changes' => 'required list<dict>',
|
|
'sourceMachine' => 'required string',
|
|
'sourcePath' => 'required string',
|
|
'branch' => 'required string',
|
|
'bookmark' => 'optional string',
|
|
'sourceControlSystem' => 'required '.$vcs_const,
|
|
'sourceControlPath' => 'required string',
|
|
'sourceControlBaseRevision' => 'required string',
|
|
'creationMethod' => 'optional string',
|
|
'lintStatus' => 'required '.$status_const,
|
|
'unitStatus' => 'required '.$status_const,
|
|
'repositoryPHID' => 'optional phid',
|
|
|
|
'parentRevisionID' => 'deprecated',
|
|
'authorPHID' => 'deprecated',
|
|
'repositoryUUID' => 'deprecated',
|
|
);
|
|
}
|
|
|
|
protected function defineReturnType() {
|
|
return 'nonempty dict';
|
|
}
|
|
|
|
protected function execute(ConduitAPIRequest $request) {
|
|
$viewer = $request->getUser();
|
|
$change_data = $request->getValue('changes');
|
|
|
|
$changes = array();
|
|
foreach ($change_data as $dict) {
|
|
$changes[] = ArcanistDiffChange::newFromDictionary($dict);
|
|
}
|
|
|
|
$diff = DifferentialDiff::newFromRawChanges($viewer, $changes);
|
|
|
|
// TODO: Remove repository UUID eventually; for now continue writing
|
|
// the UUID. Note that we'll overwrite it below if we identify a
|
|
// repository, and `arc` no longer sends it. This stuff is retained for
|
|
// backward compatibility.
|
|
|
|
$repository_uuid = $request->getValue('repositoryUUID');
|
|
$repository_phid = $request->getValue('repositoryPHID');
|
|
if ($repository_phid) {
|
|
$repository = id(new PhabricatorRepositoryQuery())
|
|
->setViewer($viewer)
|
|
->withPHIDs(array($repository_phid))
|
|
->executeOne();
|
|
if ($repository) {
|
|
$repository_phid = $repository->getPHID();
|
|
$repository_uuid = $repository->getUUID();
|
|
}
|
|
}
|
|
|
|
switch ($request->getValue('lintStatus')) {
|
|
case 'skip':
|
|
$lint_status = DifferentialLintStatus::LINT_SKIP;
|
|
break;
|
|
case 'okay':
|
|
$lint_status = DifferentialLintStatus::LINT_OKAY;
|
|
break;
|
|
case 'warn':
|
|
$lint_status = DifferentialLintStatus::LINT_WARN;
|
|
break;
|
|
case 'fail':
|
|
$lint_status = DifferentialLintStatus::LINT_FAIL;
|
|
break;
|
|
case 'none':
|
|
default:
|
|
$lint_status = DifferentialLintStatus::LINT_NONE;
|
|
break;
|
|
}
|
|
|
|
switch ($request->getValue('unitStatus')) {
|
|
case 'skip':
|
|
$unit_status = DifferentialUnitStatus::UNIT_SKIP;
|
|
break;
|
|
case 'okay':
|
|
$unit_status = DifferentialUnitStatus::UNIT_OKAY;
|
|
break;
|
|
case 'warn':
|
|
$unit_status = DifferentialUnitStatus::UNIT_WARN;
|
|
break;
|
|
case 'fail':
|
|
$unit_status = DifferentialUnitStatus::UNIT_FAIL;
|
|
break;
|
|
case 'none':
|
|
default:
|
|
$unit_status = DifferentialUnitStatus::UNIT_NONE;
|
|
break;
|
|
}
|
|
|
|
$diff_data_dict = array(
|
|
'sourcePath' => $request->getValue('sourcePath'),
|
|
'sourceMachine' => $request->getValue('sourceMachine'),
|
|
'branch' => $request->getValue('branch'),
|
|
'creationMethod' => $request->getValue('creationMethod'),
|
|
'authorPHID' => $viewer->getPHID(),
|
|
'bookmark' => $request->getValue('bookmark'),
|
|
'repositoryUUID' => $repository_uuid,
|
|
'repositoryPHID' => $repository_phid,
|
|
'sourceControlSystem' => $request->getValue('sourceControlSystem'),
|
|
'sourceControlPath' => $request->getValue('sourceControlPath'),
|
|
'sourceControlBaseRevision' =>
|
|
$request->getValue('sourceControlBaseRevision'),
|
|
'lintStatus' => $lint_status,
|
|
'unitStatus' => $unit_status,
|
|
);
|
|
|
|
$xactions = array(
|
|
id(new DifferentialTransaction())
|
|
->setTransactionType(DifferentialDiffTransaction::TYPE_DIFF_CREATE)
|
|
->setNewValue($diff_data_dict),
|
|
);
|
|
|
|
id(new DifferentialDiffEditor())
|
|
->setActor($viewer)
|
|
->setContentSourceFromConduitRequest($request)
|
|
->setContinueOnNoEffect(true)
|
|
->applyTransactions($diff, $xactions);
|
|
|
|
$path = '/differential/diff/'.$diff->getID().'/';
|
|
$uri = PhabricatorEnv::getURI($path);
|
|
|
|
return array(
|
|
'diffid' => $diff->getID(),
|
|
'phid' => $diff->getPHID(),
|
|
'uri' => $uri,
|
|
);
|
|
}
|
|
|
|
}
|