Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98585294
DiffusionMercurialRequest.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, Jan 14, 14:37
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Jan 16, 14:37 (2 d)
Engine
blob
Format
Raw Data
Handle
23598177
Attached To
rPH Phabricator
DiffusionMercurialRequest.php
View Options
<?php
/**
* @group diffusion
*/
final
class
DiffusionMercurialRequest
extends
DiffusionRequest
{
protected
function
getSupportsBranches
()
{
return
true
;
}
protected
function
didInitialize
()
{
// Expand abbreviated hashes to full hashes so "/rXnnnn" (i.e., fewer than
// 40 characters) works correctly.
if
(!
$this
->
commit
)
{
return
;
}
if
(
strlen
(
$this
->
commit
)
==
40
)
{
return
;
}
$this
->
expandCommitName
();
}
public
function
getBranch
()
{
if
(
$this
->
branch
)
{
return
$this
->
branch
;
}
if
(
$this
->
repository
)
{
return
$this
->
repository
->
getDefaultBranch
();
}
throw
new
Exception
(
"Unable to determine branch!"
);
}
public
function
getCommit
()
{
if
(
$this
->
commit
)
{
return
$this
->
commit
;
}
return
$this
->
getBranch
();
}
public
function
getStableCommitName
()
{
if
(!
$this
->
stableCommitName
)
{
if
(
$this
->
commit
)
{
$this
->
stableCommitName
=
$this
->
commit
;
}
else
{
// NOTE: For branches with spaces in their name like "a b", this
// does not work properly:
//
// $ hg log --rev 'a b'
//
// We can use revsets instead:
//
// $ hg log --rev branch('a b')
//
// ...but they require a somewhat newer version of Mercurial. Instead,
// use "-b" flag with limit 1 for greatest compatibility across
// versions.
list
(
$this
->
stableCommitName
)
=
$this
->
repository
->
execxLocalCommand
(
'log --template=%s -b %s --limit 1'
,
'{node}'
,
$this
->
getBranch
());
}
}
return
$this
->
stableCommitName
;
}
}
Event Timeline
Log In to Comment