Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F106470223
DifferentialLandingStrategy.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Tue, Mar 25, 23:35
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Mar 27, 23:35 (2 d)
Engine
blob
Format
Raw Data
Handle
25179948
Attached To
rPH Phabricator
DifferentialLandingStrategy.php
View Options
<?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
);
}
}
/**
* might break if repository is not Mercurial.
*/
protected
function
getMercurialWorkspace
(
PhabricatorRepository
$repository
)
{
try
{
return
DifferentialGetWorkingCopy
::
getCleanMercurialWorkspace
(
$repository
);
}
catch
(
Exception
$e
)
{
throw
new
PhutilProxyException
(
'Failed to allocate a workspace'
,
$e
);
}
}
}
Event Timeline
Log In to Comment