Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F107003173
DiffusionGitExpandShortNameQuery.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
Thu, Apr 3, 10:36
Size
1 KB
Mime Type
text/x-php
Expires
Sat, Apr 5, 10:36 (2 d)
Engine
blob
Format
Raw Data
Handle
25329859
Attached To
rPH Phabricator
DiffusionGitExpandShortNameQuery.php
View Options
<?php
final
class
DiffusionGitExpandShortNameQuery
extends
DiffusionExpandShortNameQuery
{
protected
function
executeQuery
()
{
$repository
=
$this
->
getRepository
();
$commit
=
$this
->
getCommit
();
$future
=
$repository
->
getLocalCommandFuture
(
'cat-file --batch'
);
$future
->
write
(
$commit
);
list
(
$stdout
)
=
$future
->
resolvex
();
list
(
$hash
,
$type
)
=
explode
(
' '
,
$stdout
);
if
(
$type
==
'missing'
)
{
throw
new
DiffusionExpandCommitQueryException
(
DiffusionExpandCommitQueryException
::
CODE_MISSING
,
"Bad commit '{$this->commit}'."
);
}
switch
(
$type
)
{
case
'tag'
:
$this
->
commitType
=
'tag'
;
$matches
=
null
;
$ok
=
preg_match
(
'/^object ([a-f0-9]+)$.*?
\n\n
(.*)$/sm'
,
$stdout
,
$matches
);
if
(!
$ok
)
{
throw
new
DiffusionExpandCommitQueryException
(
DiffusionExpandCommitQueryException
::
CODE_UNPARSEABLE
,
"Unparseable output from cat-file: {$stdout}"
);
}
$hash
=
$matches
[
1
];
$this
->
tagContent
=
trim
(
$matches
[
2
]);
break
;
case
'commit'
:
break
;
default
:
throw
new
DiffusionExpandCommitQueryException
(
DiffusionExpandCommitQueryException
::
CODE_INVALID
,
"The reference '{$this->commit}' does not name a valid "
.
'commit or a tag in this repository.'
);
break
;
}
$this
->
commit
=
$hash
;
}
}
Event Timeline
Log In to Comment