Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F19081934
ReleephBranchEditor.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
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
();
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Thu, Dec 4, 8:47 AM (1 d, 22 h)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
8248320
Default Alt Text
ReleephBranchEditor.php (2 KB)
Attached To
Mode
rP Phabricator
Attached
Detach File
Event Timeline
Log In to Comment