Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2364326
DifferentialLandingStrategy.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
DifferentialLandingStrategy.php
View Options
<?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
);
}
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Sep 16, 5:24 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
356565
Default Alt Text
DifferentialLandingStrategy.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment