Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99036114
ReleephBranchEditor.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
Sat, Jan 18, 15:32
Size
2 KB
Mime Type
text/x-php
Expires
Mon, Jan 20, 15:32 (2 d)
Engine
blob
Format
Raw Data
Handle
23694965
Attached To
rPH Phabricator
ReleephBranchEditor.php
View Options
<?php
final
class
ReleephBranchEditor
extends
PhabricatorEditor
{
private
$releephProject
;
private
$releephBranch
;
public
function
setReleephProject
(
ReleephProject
$rp
)
{
$this
->
releephProject
=
$rp
;
return
$this
;
}
public
function
setReleephBranch
(
ReleephBranch
$branch
)
{
$this
->
releephBranch
=
$branch
;
return
$this
;
}
public
function
newBranchFromCommit
(
PhabricatorRepositoryCommit
$cut_point
,
$branch_date
,
$symbolic_name
=
null
)
{
$template
=
$this
->
releephProject
->
getDetail
(
'branchTemplate'
);
if
(!
$template
)
{
$template
=
ReleephBranchTemplate
::
getRequiredDefaultTemplate
();
}
$cut_point_handle
=
id
(
new
PhabricatorHandleQuery
())
->
setViewer
(
$this
->
requireActor
())
->
withPHIDs
(
array
(
$cut_point
->
getPHID
()))
->
executeOne
();
list
(
$name
,
$errors
)
=
id
(
new
ReleephBranchTemplate
())
->
setCommitHandle
(
$cut_point_handle
)
->
setBranchDate
(
$branch_date
)
->
setReleephProjectName
(
$this
->
releephProject
->
getName
())
->
interpolate
(
$template
);
$basename
=
last
(
explode
(
'/'
,
$name
));
$table
=
id
(
new
ReleephBranch
());
$transaction
=
$table
->
openTransaction
();
$branch
=
id
(
new
ReleephBranch
())
->
setName
(
$name
)
->
setBasename
(
$basename
)
->
setReleephProjectID
(
$this
->
releephProject
->
getID
())
->
setCreatedByUserPHID
(
$this
->
requireActor
()->
getPHID
())
->
setCutPointCommitPHID
(
$cut_point
->
getPHID
())
->
setIsActive
(
1
)
->
setDetail
(
'branchDate'
,
$branch_date
)
->
save
();
/**
* Steal the symbolic name from any other branch that has it (in this
* project).
*/
if
(
$symbolic_name
)
{
$others
=
id
(
new
ReleephBranch
())->
loadAllWhere
(
'releephProjectID = %d'
,
$this
->
releephProject
->
getID
());
foreach
(
$others
as
$other
)
{
if
(
$other
->
getSymbolicName
()
==
$symbolic_name
)
{
$other
->
setSymbolicName
(
null
)
->
save
();
}
}
$branch
->
setSymbolicName
(
$symbolic_name
)
->
save
();
}
$table
->
saveTransaction
();
return
$branch
;
}
// aka "close" and "reopen"
public
function
changeBranchAccess
(
$is_active
)
{
$branch
=
$this
->
releephBranch
;
$branch
->
setIsActive
((
int
)
$is_active
)
->
save
();
}
}
Event Timeline
Log In to Comment