2013-12-18 23:18:45 +01:00
|
|
|
<?php
|
|
|
|
|
2014-01-03 21:24:28 +01:00
|
|
|
final class HeraldPreCommitContentAdapter extends HeraldPreCommitAdapter {
|
2013-12-18 23:18:45 +01:00
|
|
|
|
2013-12-18 23:18:58 +01:00
|
|
|
private $changesets;
|
2013-12-19 15:55:57 +01:00
|
|
|
private $commitRef;
|
2013-12-20 21:39:01 +01:00
|
|
|
private $fields;
|
|
|
|
private $revision = false;
|
2013-12-18 23:18:45 +01:00
|
|
|
|
|
|
|
public function getAdapterContentName() {
|
|
|
|
return pht('Commit Hook: Commit Content');
|
|
|
|
}
|
|
|
|
|
2013-12-27 22:16:33 +01:00
|
|
|
public function getAdapterSortOrder() {
|
|
|
|
return 2500;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getAdapterContentDescription() {
|
|
|
|
return pht(
|
|
|
|
"React to commits being pushed to hosted repositories.\n".
|
2014-03-26 18:44:06 +01:00
|
|
|
"Hook rules can block changes and send push summary mail.");
|
2013-12-27 22:16:33 +01:00
|
|
|
}
|
|
|
|
|
2015-07-08 21:26:00 +02:00
|
|
|
public function isPreCommitRefAdapter() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-12-18 23:18:45 +01:00
|
|
|
public function getFields() {
|
|
|
|
return array_merge(
|
|
|
|
array(
|
2013-12-18 23:18:58 +01:00
|
|
|
self::FIELD_BODY,
|
2013-12-19 20:05:31 +01:00
|
|
|
self::FIELD_AUTHOR,
|
2013-12-27 22:16:00 +01:00
|
|
|
self::FIELD_AUTHOR_RAW,
|
2013-12-19 20:05:31 +01:00
|
|
|
self::FIELD_COMMITTER,
|
2013-12-27 22:16:00 +01:00
|
|
|
self::FIELD_COMMITTER_RAW,
|
2013-12-26 19:40:16 +01:00
|
|
|
self::FIELD_BRANCHES,
|
2013-12-18 23:18:58 +01:00
|
|
|
self::FIELD_DIFF_FILE,
|
|
|
|
self::FIELD_DIFF_CONTENT,
|
|
|
|
self::FIELD_DIFF_ADDED_CONTENT,
|
|
|
|
self::FIELD_DIFF_REMOVED_CONTENT,
|
2014-01-06 21:12:30 +01:00
|
|
|
self::FIELD_DIFF_ENORMOUS,
|
2013-12-18 23:18:45 +01:00
|
|
|
self::FIELD_REPOSITORY,
|
2014-01-03 21:24:28 +01:00
|
|
|
self::FIELD_REPOSITORY_PROJECTS,
|
2013-12-18 23:18:45 +01:00
|
|
|
self::FIELD_PUSHER,
|
|
|
|
self::FIELD_PUSHER_PROJECTS,
|
2014-03-12 23:24:33 +01:00
|
|
|
self::FIELD_PUSHER_IS_COMMITTER,
|
2013-12-20 21:39:01 +01:00
|
|
|
self::FIELD_DIFFERENTIAL_REVISION,
|
2013-12-20 21:39:13 +01:00
|
|
|
self::FIELD_DIFFERENTIAL_ACCEPTED,
|
2013-12-20 21:39:01 +01:00
|
|
|
self::FIELD_DIFFERENTIAL_REVIEWERS,
|
|
|
|
self::FIELD_DIFFERENTIAL_CCS,
|
2013-12-20 21:39:40 +01:00
|
|
|
self::FIELD_IS_MERGE_COMMIT,
|
2013-12-18 23:18:45 +01:00
|
|
|
),
|
|
|
|
parent::getFields());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getHeraldName() {
|
2014-01-03 21:24:28 +01:00
|
|
|
return pht('Push Log (Content)');
|
2013-12-18 23:18:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getHeraldField($field) {
|
|
|
|
$log = $this->getObject();
|
|
|
|
switch ($field) {
|
2013-12-19 15:55:57 +01:00
|
|
|
case self::FIELD_BODY:
|
|
|
|
return $this->getCommitRef()->getMessage();
|
2013-12-19 20:05:31 +01:00
|
|
|
case self::FIELD_AUTHOR:
|
|
|
|
return $this->getAuthorPHID();
|
2013-12-27 22:16:00 +01:00
|
|
|
case self::FIELD_AUTHOR_RAW:
|
|
|
|
return $this->getAuthorRaw();
|
2013-12-19 20:05:31 +01:00
|
|
|
case self::FIELD_COMMITTER:
|
|
|
|
return $this->getCommitterPHID();
|
2013-12-27 22:16:00 +01:00
|
|
|
case self::FIELD_COMMITTER_RAW:
|
|
|
|
return $this->getCommitterRaw();
|
2013-12-26 19:40:16 +01:00
|
|
|
case self::FIELD_BRANCHES:
|
|
|
|
return $this->getBranches();
|
2013-12-18 23:18:58 +01:00
|
|
|
case self::FIELD_DIFF_FILE:
|
|
|
|
return $this->getDiffContent('name');
|
|
|
|
case self::FIELD_DIFF_CONTENT:
|
|
|
|
return $this->getDiffContent('*');
|
|
|
|
case self::FIELD_DIFF_ADDED_CONTENT:
|
|
|
|
return $this->getDiffContent('+');
|
|
|
|
case self::FIELD_DIFF_REMOVED_CONTENT:
|
|
|
|
return $this->getDiffContent('-');
|
2014-01-06 21:12:30 +01:00
|
|
|
case self::FIELD_DIFF_ENORMOUS:
|
|
|
|
$this->getDiffContent('*');
|
|
|
|
return ($this->changesets instanceof Exception);
|
2013-12-18 23:18:45 +01:00
|
|
|
case self::FIELD_REPOSITORY:
|
2014-01-03 21:24:28 +01:00
|
|
|
return $this->getHookEngine()->getRepository()->getPHID();
|
|
|
|
case self::FIELD_REPOSITORY_PROJECTS:
|
|
|
|
return $this->getHookEngine()->getRepository()->getProjectPHIDs();
|
2013-12-18 23:18:45 +01:00
|
|
|
case self::FIELD_PUSHER:
|
2014-01-03 21:24:28 +01:00
|
|
|
return $this->getHookEngine()->getViewer()->getPHID();
|
2013-12-18 23:18:45 +01:00
|
|
|
case self::FIELD_PUSHER_PROJECTS:
|
2014-01-03 21:24:28 +01:00
|
|
|
return $this->getHookEngine()->loadViewerProjectPHIDsForHerald();
|
2013-12-20 21:39:01 +01:00
|
|
|
case self::FIELD_DIFFERENTIAL_REVISION:
|
|
|
|
$revision = $this->getRevision();
|
|
|
|
if (!$revision) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return $revision->getPHID();
|
2013-12-20 21:39:13 +01:00
|
|
|
case self::FIELD_DIFFERENTIAL_ACCEPTED:
|
|
|
|
$revision = $this->getRevision();
|
|
|
|
if (!$revision) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
$status_accepted = ArcanistDifferentialRevisionStatus::ACCEPTED;
|
|
|
|
if ($revision->getStatus() != $status_accepted) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return $revision->getPHID();
|
2013-12-20 21:39:01 +01:00
|
|
|
case self::FIELD_DIFFERENTIAL_REVIEWERS:
|
|
|
|
$revision = $this->getRevision();
|
|
|
|
if (!$revision) {
|
|
|
|
return array();
|
|
|
|
}
|
|
|
|
return $revision->getReviewers();
|
|
|
|
case self::FIELD_DIFFERENTIAL_CCS:
|
|
|
|
$revision = $this->getRevision();
|
|
|
|
if (!$revision) {
|
|
|
|
return array();
|
|
|
|
}
|
|
|
|
return $revision->getCCPHIDs();
|
2013-12-20 21:39:40 +01:00
|
|
|
case self::FIELD_IS_MERGE_COMMIT:
|
|
|
|
return $this->getIsMergeCommit();
|
2014-03-12 23:24:33 +01:00
|
|
|
case self::FIELD_PUSHER_IS_COMMITTER:
|
|
|
|
$pusher_phid = $this->getHookEngine()->getViewer()->getPHID();
|
|
|
|
return ($this->getCommitterPHID() == $pusher_phid);
|
2013-12-18 23:18:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return parent::getHeraldField($field);
|
|
|
|
}
|
|
|
|
|
2013-12-18 23:18:58 +01:00
|
|
|
private function getDiffContent($type) {
|
|
|
|
if ($this->changesets === null) {
|
|
|
|
try {
|
2014-01-03 21:24:28 +01:00
|
|
|
$this->changesets = $this->getHookEngine()->loadChangesetsForCommit(
|
|
|
|
$this->getObject()->getRefNew());
|
2013-12-18 23:18:58 +01:00
|
|
|
} catch (Exception $ex) {
|
|
|
|
$this->changesets = $ex;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->changesets instanceof Exception) {
|
|
|
|
$ex_class = get_class($this->changesets);
|
|
|
|
$ex_message = $this->changesets->getmessage();
|
|
|
|
if ($type === 'name') {
|
|
|
|
return array("<{$ex_class}: {$ex_message}>");
|
|
|
|
} else {
|
|
|
|
return array("<{$ex_class}>" => $ex_message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$result = array();
|
|
|
|
if ($type === 'name') {
|
|
|
|
foreach ($this->changesets as $change) {
|
|
|
|
$result[] = $change->getFilename();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
foreach ($this->changesets as $change) {
|
|
|
|
$lines = array();
|
|
|
|
foreach ($change->getHunks() as $hunk) {
|
|
|
|
switch ($type) {
|
|
|
|
case '-':
|
|
|
|
$lines[] = $hunk->makeOldFile();
|
|
|
|
break;
|
|
|
|
case '+':
|
|
|
|
$lines[] = $hunk->makeNewFile();
|
|
|
|
break;
|
|
|
|
case '*':
|
|
|
|
default:
|
|
|
|
$lines[] = $hunk->makeChanges();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$result[$change->getFilename()] = implode('', $lines);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
2013-12-19 15:55:57 +01:00
|
|
|
private function getCommitRef() {
|
|
|
|
if ($this->commitRef === null) {
|
2014-01-03 21:24:28 +01:00
|
|
|
$this->commitRef = $this->getHookEngine()->loadCommitRefForCommit(
|
|
|
|
$this->getObject()->getRefNew());
|
2013-12-19 15:55:57 +01:00
|
|
|
}
|
|
|
|
return $this->commitRef;
|
|
|
|
}
|
|
|
|
|
2013-12-19 20:05:31 +01:00
|
|
|
private function getAuthorPHID() {
|
2014-01-03 21:24:28 +01:00
|
|
|
$repository = $this->getHookEngine()->getRepository();
|
2013-12-19 20:05:31 +01:00
|
|
|
$vcs = $repository->getVersionControlSystem();
|
|
|
|
switch ($vcs) {
|
|
|
|
case PhabricatorRepositoryType::REPOSITORY_TYPE_GIT:
|
|
|
|
case PhabricatorRepositoryType::REPOSITORY_TYPE_MERCURIAL:
|
|
|
|
$ref = $this->getCommitRef();
|
|
|
|
$author = $ref->getAuthor();
|
|
|
|
if (!strlen($author)) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return $this->lookupUser($author);
|
|
|
|
case PhabricatorRepositoryType::REPOSITORY_TYPE_SVN:
|
|
|
|
// In Subversion, the pusher is always the author.
|
2014-01-03 21:24:28 +01:00
|
|
|
return $this->getHookEngine()->getViewer()->getPHID();
|
2013-12-19 20:05:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private function getCommitterPHID() {
|
2014-01-03 21:24:28 +01:00
|
|
|
$repository = $this->getHookEngine()->getRepository();
|
2013-12-19 20:05:31 +01:00
|
|
|
$vcs = $repository->getVersionControlSystem();
|
|
|
|
switch ($vcs) {
|
|
|
|
case PhabricatorRepositoryType::REPOSITORY_TYPE_GIT:
|
|
|
|
case PhabricatorRepositoryType::REPOSITORY_TYPE_MERCURIAL:
|
2014-03-12 23:24:33 +01:00
|
|
|
// If there's no committer information, we're going to return the
|
|
|
|
// author instead. However, if there's committer information and we
|
|
|
|
// can't resolve it, return `null`.
|
2013-12-19 20:05:31 +01:00
|
|
|
$ref = $this->getCommitRef();
|
|
|
|
$committer = $ref->getCommitter();
|
|
|
|
if (!strlen($committer)) {
|
|
|
|
return $this->getAuthorPHID();
|
|
|
|
}
|
2014-03-12 23:24:33 +01:00
|
|
|
return $this->lookupUser($committer);
|
2013-12-19 20:05:31 +01:00
|
|
|
case PhabricatorRepositoryType::REPOSITORY_TYPE_SVN:
|
|
|
|
// In Subversion, the pusher is always the committer.
|
2014-01-03 21:24:28 +01:00
|
|
|
return $this->getHookEngine()->getViewer()->getPHID();
|
2013-12-19 20:05:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-27 22:16:00 +01:00
|
|
|
private function getAuthorRaw() {
|
2014-01-03 21:24:28 +01:00
|
|
|
$repository = $this->getHookEngine()->getRepository();
|
2013-12-27 22:16:00 +01:00
|
|
|
$vcs = $repository->getVersionControlSystem();
|
|
|
|
switch ($vcs) {
|
|
|
|
case PhabricatorRepositoryType::REPOSITORY_TYPE_GIT:
|
|
|
|
case PhabricatorRepositoryType::REPOSITORY_TYPE_MERCURIAL:
|
|
|
|
$ref = $this->getCommitRef();
|
|
|
|
return $ref->getAuthor();
|
|
|
|
case PhabricatorRepositoryType::REPOSITORY_TYPE_SVN:
|
|
|
|
// In Subversion, the pusher is always the author.
|
2014-01-03 21:24:28 +01:00
|
|
|
return $this->getHookEngine()->getViewer()->getUsername();
|
2013-12-27 22:16:00 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private function getCommitterRaw() {
|
2014-01-03 21:24:28 +01:00
|
|
|
$repository = $this->getHookEngine()->getRepository();
|
2013-12-27 22:16:00 +01:00
|
|
|
$vcs = $repository->getVersionControlSystem();
|
|
|
|
switch ($vcs) {
|
|
|
|
case PhabricatorRepositoryType::REPOSITORY_TYPE_GIT:
|
|
|
|
case PhabricatorRepositoryType::REPOSITORY_TYPE_MERCURIAL:
|
|
|
|
// Here, if there's no committer, we're going to return the author
|
|
|
|
// instead.
|
|
|
|
$ref = $this->getCommitRef();
|
|
|
|
$committer = $ref->getCommitter();
|
|
|
|
if (strlen($committer)) {
|
|
|
|
return $committer;
|
|
|
|
}
|
|
|
|
return $ref->getAuthor();
|
|
|
|
case PhabricatorRepositoryType::REPOSITORY_TYPE_SVN:
|
|
|
|
// In Subversion, the pusher is always the committer.
|
2014-01-03 21:24:28 +01:00
|
|
|
return $this->getHookEngine()->getViewer()->getUsername();
|
2013-12-27 22:16:00 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-19 20:05:31 +01:00
|
|
|
private function lookupUser($author) {
|
|
|
|
return id(new DiffusionResolveUserQuery())
|
|
|
|
->withName($author)
|
|
|
|
->execute();
|
|
|
|
}
|
|
|
|
|
2013-12-20 21:39:01 +01:00
|
|
|
private function getCommitFields() {
|
|
|
|
if ($this->fields === null) {
|
|
|
|
$this->fields = id(new DiffusionLowLevelCommitFieldsQuery())
|
2014-01-03 21:24:28 +01:00
|
|
|
->setRepository($this->getHookEngine()->getRepository())
|
2013-12-20 21:39:01 +01:00
|
|
|
->withCommitRef($this->getCommitRef())
|
|
|
|
->execute();
|
|
|
|
}
|
|
|
|
return $this->fields;
|
|
|
|
}
|
|
|
|
|
|
|
|
private function getRevision() {
|
|
|
|
if ($this->revision === false) {
|
|
|
|
$fields = $this->getCommitFields();
|
|
|
|
$revision_id = idx($fields, 'revisionID');
|
|
|
|
if (!$revision_id) {
|
|
|
|
$this->revision = null;
|
|
|
|
} else {
|
|
|
|
$this->revision = id(new DifferentialRevisionQuery())
|
|
|
|
->setViewer(PhabricatorUser::getOmnipotentUser())
|
|
|
|
->withIDs(array($revision_id))
|
|
|
|
->needRelationships(true)
|
|
|
|
->executeOne();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->revision;
|
|
|
|
}
|
|
|
|
|
2013-12-20 21:39:40 +01:00
|
|
|
private function getIsMergeCommit() {
|
2014-01-03 21:24:28 +01:00
|
|
|
$repository = $this->getHookEngine()->getRepository();
|
2013-12-20 21:39:40 +01:00
|
|
|
$vcs = $repository->getVersionControlSystem();
|
|
|
|
switch ($vcs) {
|
|
|
|
case PhabricatorRepositoryType::REPOSITORY_TYPE_GIT:
|
|
|
|
case PhabricatorRepositoryType::REPOSITORY_TYPE_MERCURIAL:
|
|
|
|
$parents = id(new DiffusionLowLevelParentsQuery())
|
|
|
|
->setRepository($repository)
|
2014-01-03 21:24:28 +01:00
|
|
|
->withIdentifier($this->getObject()->getRefNew())
|
2013-12-20 21:39:40 +01:00
|
|
|
->execute();
|
|
|
|
|
|
|
|
return (count($parents) > 1);
|
|
|
|
case PhabricatorRepositoryType::REPOSITORY_TYPE_SVN:
|
|
|
|
// NOTE: For now, we ignore "svn:mergeinfo" at all levels. We might
|
|
|
|
// change this some day, but it's not nearly as clear a signal as
|
|
|
|
// ancestry is in Git/Mercurial.
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-26 19:40:16 +01:00
|
|
|
private function getBranches() {
|
2014-01-03 21:24:28 +01:00
|
|
|
return $this->getHookEngine()->loadBranches(
|
|
|
|
$this->getObject()->getRefNew());
|
2013-12-26 19:40:16 +01:00
|
|
|
}
|
|
|
|
|
2013-12-18 23:18:45 +01:00
|
|
|
}
|