mirror of
https://we.phorge.it/source/phorge.git
synced 2025-04-04 16:38:24 +02:00
Summary: Ref T4195. Same as D7793, but for mercurial. (As usual, SVN needs some goofy nonsense instead, so the next diff will just make this field work.) Test Plan: Ran `reparse.php` on Git and Mercurial commits, var_dump'd the output and it looked correct. Reviewers: btrahan Reviewed By: btrahan CC: aran Maniphest Tasks: T4195 Differential Revision: https://secure.phabricator.com/D7795
41 lines
1 KiB
PHP
41 lines
1 KiB
PHP
<?php
|
|
|
|
final class DiffusionLowLevelMercurialCommitQuery
|
|
extends DiffusionLowLevelQuery {
|
|
|
|
private $identifier;
|
|
|
|
public function withIdentifier($identifier) {
|
|
$this->identifier = $identifier;
|
|
return $this;
|
|
}
|
|
|
|
protected function executeQuery() {
|
|
$repository = $this->getRepository();
|
|
|
|
list($stdout) = $repository->execxLocalCommand(
|
|
'log --template %s --rev %s',
|
|
'{author}\\n{desc}',
|
|
hgsprintf('%s', $this->identifier));
|
|
|
|
list($author, $message) = explode("\n", $stdout, 2);
|
|
|
|
$author = phutil_utf8ize($author);
|
|
$message = phutil_utf8ize($message);
|
|
|
|
$email = new PhutilEmailAddress($author);
|
|
if ($email->getDisplayName() || $email->getDomainName()) {
|
|
$author_name = $email->getDisplayName();
|
|
$author_email = $email->getAddress();
|
|
} else {
|
|
$author_name = $email->getAddress();
|
|
$author_email = null;
|
|
}
|
|
|
|
return id(new DiffusionCommitRef())
|
|
->setAuthorName($author_name)
|
|
->setAuthorEmail($author_email)
|
|
->setMessage($message);
|
|
}
|
|
|
|
}
|