Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F449014
DiffusionHovercardEngineExtension.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
DiffusionHovercardEngineExtension.php
View Options
<?php
final
class
DiffusionHovercardEngineExtension
extends
PhabricatorHovercardEngineExtension
{
const
EXTENSIONKEY
=
'diffusion'
;
public
function
isExtensionEnabled
()
{
return
PhabricatorApplication
::
isClassInstalled
(
'PhabricatorDiffusionApplication'
);
}
public
function
getExtensionName
()
{
return
pht
(
'Diffusion Commits'
);
}
public
function
canRenderObjectHovercard
(
$object
)
{
return
(
$object
instanceof
PhabricatorRepositoryCommit
);
}
public
function
renderHovercard
(
PHUIHovercardView
$hovercard
,
PhabricatorObjectHandle
$handle
,
$commit
,
$data
)
{
$viewer
=
$this
->
getViewer
();
$commit
=
id
(
new
DiffusionCommitQuery
())
->
setViewer
(
$viewer
)
->
needIdentities
(
true
)
->
needCommitData
(
true
)
->
withPHIDs
(
array
(
$commit
->
getPHID
()))
->
executeOne
();
if
(!
$commit
)
{
return
;
}
$author_phid
=
$commit
->
getAuthorDisplayPHID
();
$committer_phid
=
$commit
->
getCommitterDisplayPHID
();
$repository_phid
=
$commit
->
getRepository
()->
getPHID
();
$phids
=
array
();
$phids
[]
=
$author_phid
;
$phids
[]
=
$committer_phid
;
$phids
[]
=
$repository_phid
;
$handles
=
$viewer
->
loadHandles
(
$phids
);
$hovercard
->
setTitle
(
$handle
->
getName
());
// See T13620. Use a longer slice of the message than the "summary" here,
// since we have at least a few lines of room in the UI.
$commit_message
=
$commit
->
getCommitMessageForDisplay
();
$message_limit
=
512
;
$short_message
=
id
(
new
PhutilUTF8StringTruncator
())
->
setMaximumBytes
(
$message_limit
*
4
)
->
setMaximumGlyphs
(
$message_limit
)
->
truncateString
(
$commit_message
);
$short_message
=
phutil_escape_html_newlines
(
$short_message
);
$hovercard
->
setDetail
(
$short_message
);
$repository
=
$handles
[
$repository_phid
]->
renderLink
();
$hovercard
->
addField
(
pht
(
'Repository'
),
$repository
);
$author
=
$handles
[
$author_phid
]->
renderLink
();
if
(
$author_phid
)
{
$hovercard
->
addField
(
pht
(
'Author'
),
$author
);
}
if
(
$committer_phid
&&
(
$committer_phid
!==
$author_phid
))
{
$committer
=
$handles
[
$committer_phid
]->
renderLink
();
$hovercard
->
addField
(
pht
(
'Committer'
),
$committer
);
}
$date
=
phabricator_date
(
$commit
->
getEpoch
(),
$viewer
);
$hovercard
->
addField
(
pht
(
'Commit Date'
),
$date
);
if
(!
$commit
->
isAuditStatusNoAudit
())
{
$status
=
$commit
->
getAuditStatusObject
();
$hovercard
->
addField
(
pht
(
'Audit Status'
),
$status
->
getName
());
}
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, May 4, 6:59 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
67309
Default Alt Text
DiffusionHovercardEngineExtension.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment