mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-14 19:02:41 +01:00
44 lines
1.2 KiB
PHP
44 lines
1.2 KiB
PHP
|
<?php
|
||
|
|
||
|
abstract class DifferentialLandingStrategy {
|
||
|
|
||
|
public abstract function processLandRequest(
|
||
|
AphrontRequest $request,
|
||
|
DifferentialRevision $revision,
|
||
|
PhabricatorRepository $repository);
|
||
|
|
||
|
/**
|
||
|
* returns PhabricatorActionView or an array of PhabricatorActionView or null.
|
||
|
*/
|
||
|
abstract function createMenuItems(
|
||
|
PhabricatorUser $viewer,
|
||
|
DifferentialRevision $revision,
|
||
|
PhabricatorRepository $repository);
|
||
|
|
||
|
/**
|
||
|
* returns PhabricatorActionView which can be attached to the revision view.
|
||
|
*/
|
||
|
protected function createActionView($revision, $name, $disabled = false) {
|
||
|
$strategy = get_class($this);
|
||
|
$revision_id = $revision->getId();
|
||
|
return id(new PhabricatorActionView())
|
||
|
->setRenderAsForm(true)
|
||
|
->setName($name)
|
||
|
->setHref("/differential/revision/land/{$revision_id}/{$strategy}/")
|
||
|
->setDisabled($disabled);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* might break if repository is not Git.
|
||
|
*/
|
||
|
protected function getGitWorkspace(PhabricatorRepository $repository) {
|
||
|
try {
|
||
|
return DifferentialGetWorkingCopy::getCleanGitWorkspace($repository);
|
||
|
} catch (Exception $e) {
|
||
|
throw new PhutilProxyException (
|
||
|
'Failed to allocate a workspace',
|
||
|
$e);
|
||
|
}
|
||
|
}
|
||
|
}
|