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()); } } }