mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-11 09:22:40 +01:00
b6d745b666
Summary: All classes should extend from some other class. See D13275 for some explanation. Test Plan: `arc unit` Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D13283
87 lines
2.4 KiB
PHP
87 lines
2.4 KiB
PHP
<?php
|
|
|
|
abstract class DifferentialLandingStrategy extends Phobject {
|
|
|
|
abstract public function processLandRequest(
|
|
AphrontRequest $request,
|
|
DifferentialRevision $revision,
|
|
PhabricatorRepository $repository);
|
|
|
|
/**
|
|
* @return PhabricatorActionView or null.
|
|
*/
|
|
abstract public function createMenuItem(
|
|
PhabricatorUser $viewer,
|
|
DifferentialRevision $revision,
|
|
PhabricatorRepository $repository);
|
|
|
|
/**
|
|
* @return PhabricatorActionView which can be attached to the revision view.
|
|
*/
|
|
protected function createActionView($revision, $name) {
|
|
$strategy = get_class($this);
|
|
$revision_id = $revision->getId();
|
|
return id(new PhabricatorActionView())
|
|
->setRenderAsForm(true)
|
|
->setWorkflow(true)
|
|
->setName($name)
|
|
->setHref("/differential/revision/land/{$revision_id}/{$strategy}/");
|
|
}
|
|
|
|
/**
|
|
* Check if this action should be disabled, and explain why.
|
|
*
|
|
* By default, this method checks for push permissions, and for the
|
|
* revision being Accepted.
|
|
*
|
|
* @return False for "not disabled"; human-readable text explaining why, if
|
|
* it is disabled.
|
|
*/
|
|
public function isActionDisabled(
|
|
PhabricatorUser $viewer,
|
|
DifferentialRevision $revision,
|
|
PhabricatorRepository $repository) {
|
|
|
|
$status = $revision->getStatus();
|
|
if ($status != ArcanistDifferentialRevisionStatus::ACCEPTED) {
|
|
return pht('Only Accepted revisions can be landed.');
|
|
}
|
|
|
|
if (!PhabricatorPolicyFilter::hasCapability(
|
|
$viewer,
|
|
$repository,
|
|
DiffusionPushCapability::CAPABILITY)) {
|
|
return pht('You do not have permissions to push to this repository.');
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Might break if repository is not Git.
|
|
*/
|
|
protected function getGitWorkspace(PhabricatorRepository $repository) {
|
|
try {
|
|
return DifferentialGetWorkingCopy::getCleanGitWorkspace($repository);
|
|
} catch (Exception $e) {
|
|
throw new PhutilProxyException(
|
|
pht('Failed to allocate a workspace.'),
|
|
$e);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Might break if repository is not Mercurial.
|
|
*/
|
|
protected function getMercurialWorkspace(PhabricatorRepository $repository) {
|
|
try {
|
|
return DifferentialGetWorkingCopy::getCleanMercurialWorkspace(
|
|
$repository);
|
|
} catch (Exception $e) {
|
|
throw new PhutilProxyException(
|
|
pht('Failed to allocate a workspace.'),
|
|
$e);
|
|
}
|
|
}
|
|
|
|
}
|