2011-01-26 02:17:19 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
2012-01-31 19:30:40 +01:00
|
|
|
* Copyright 2012 Facebook, Inc.
|
2011-01-26 02:17:19 +01:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
abstract class DifferentialReviewRequestMail extends DifferentialMail {
|
|
|
|
|
|
|
|
protected $comments;
|
|
|
|
|
|
|
|
public function setComments($comments) {
|
|
|
|
$this->comments = $comments;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getComments() {
|
|
|
|
return $this->comments;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function __construct(
|
|
|
|
DifferentialRevision $revision,
|
2011-02-09 18:58:48 +01:00
|
|
|
PhabricatorObjectHandle $actor,
|
2011-01-26 02:17:19 +01:00
|
|
|
array $changesets) {
|
|
|
|
|
|
|
|
$this->setRevision($revision);
|
2011-02-09 18:58:48 +01:00
|
|
|
$this->setActorHandle($actor);
|
2011-01-26 02:17:19 +01:00
|
|
|
$this->setChangesets($changesets);
|
|
|
|
}
|
|
|
|
|
2011-07-01 03:10:26 +02:00
|
|
|
protected function renderReviewersLine() {
|
|
|
|
$reviewers = $this->getRevision()->getReviewers();
|
|
|
|
$handles = id(new PhabricatorObjectHandleData($reviewers))->loadHandles();
|
|
|
|
return 'Reviewers: '.$this->renderHandleList($handles, $reviewers);
|
|
|
|
}
|
|
|
|
|
2011-01-26 02:17:19 +01:00
|
|
|
protected function renderReviewRequestBody() {
|
|
|
|
$revision = $this->getRevision();
|
|
|
|
|
|
|
|
$body = array();
|
|
|
|
if ($this->isFirstMailToRecipients()) {
|
2012-01-31 19:30:40 +01:00
|
|
|
if ($revision->getSummary() != '') {
|
|
|
|
$body[] = $this->formatText($revision->getSummary());
|
|
|
|
$body[] = null;
|
|
|
|
}
|
2011-01-26 02:17:19 +01:00
|
|
|
|
|
|
|
$body[] = 'TEST PLAN';
|
|
|
|
$body[] = $this->formatText($revision->getTestPlan());
|
|
|
|
$body[] = null;
|
|
|
|
} else {
|
|
|
|
if (strlen($this->getComments())) {
|
|
|
|
$body[] = $this->formatText($this->getComments());
|
|
|
|
$body[] = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$body[] = $this->renderRevisionDetailLink();
|
|
|
|
$body[] = null;
|
|
|
|
|
|
|
|
$changesets = $this->getChangesets();
|
|
|
|
if ($changesets) {
|
|
|
|
$body[] = 'AFFECTED FILES';
|
|
|
|
foreach ($changesets as $changeset) {
|
|
|
|
$body[] = ' '.$changeset->getFilename();
|
|
|
|
}
|
|
|
|
$body[] = null;
|
|
|
|
}
|
|
|
|
|
2012-03-03 20:05:19 +01:00
|
|
|
$inline_key = 'metamta.differential.inline-patches';
|
|
|
|
$inline_max_length = PhabricatorEnv::getEnvConfig($inline_key);
|
|
|
|
if ($inline_max_length) {
|
|
|
|
$patch = $this->buildPatch();
|
|
|
|
if (count(explode("\n", $patch)) <= $inline_max_length) {
|
|
|
|
$body[] = 'CHANGE DETAILS';
|
|
|
|
$body[] = $patch;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-26 02:17:19 +01:00
|
|
|
return implode("\n", $body);
|
|
|
|
}
|
2011-10-14 21:08:31 +02:00
|
|
|
|
|
|
|
protected function buildAttachments() {
|
|
|
|
$attachments = array();
|
2012-03-03 20:05:19 +01:00
|
|
|
|
2011-10-14 21:08:31 +02:00
|
|
|
if (PhabricatorEnv::getEnvConfig('metamta.differential.attach-patches')) {
|
2012-03-06 01:44:11 +01:00
|
|
|
|
2012-03-07 19:20:17 +01:00
|
|
|
$revision = $this->getRevision();
|
|
|
|
$revision_id = $revision->getID();
|
2012-03-06 01:44:11 +01:00
|
|
|
|
|
|
|
$diffs = $revision->loadDiffs();
|
|
|
|
$diff_number = count($diffs);
|
|
|
|
|
2012-03-03 20:05:19 +01:00
|
|
|
$attachments[] = new PhabricatorMetaMTAAttachment(
|
|
|
|
$this->buildPatch(),
|
|
|
|
"D{$revision_id}.{$diff_number}.patch",
|
|
|
|
'text/x-patch; charset=utf-8'
|
|
|
|
);
|
|
|
|
}
|
2011-10-14 21:08:31 +02:00
|
|
|
|
2012-03-03 20:05:19 +01:00
|
|
|
return $attachments;
|
|
|
|
}
|
2011-10-14 21:08:31 +02:00
|
|
|
|
2012-03-03 20:05:19 +01:00
|
|
|
private function buildPatch() {
|
|
|
|
$revision = $this->getRevision();
|
|
|
|
$revision_id = $revision->getID();
|
2011-10-14 21:08:31 +02:00
|
|
|
|
2012-03-03 20:05:19 +01:00
|
|
|
$diffs = $revision->loadDiffs();
|
|
|
|
$diff_number = count($diffs);
|
|
|
|
$diff = array_pop($diffs);
|
2011-10-14 21:08:31 +02:00
|
|
|
|
2012-03-03 20:05:19 +01:00
|
|
|
$diff->attachChangesets($diff->loadChangesets());
|
|
|
|
// TODO: We could batch this to improve performance.
|
|
|
|
foreach ($diff->getChangesets() as $changeset) {
|
|
|
|
$changeset->attachHunks($changeset->loadHunks());
|
|
|
|
}
|
|
|
|
$diff_dict = $diff->getDiffDict();
|
2011-10-14 21:08:31 +02:00
|
|
|
|
2012-03-03 20:05:19 +01:00
|
|
|
$changes = array();
|
|
|
|
foreach ($diff_dict['changes'] as $changedict) {
|
|
|
|
$changes[] = ArcanistDiffChange::newFromDictionary($changedict);
|
|
|
|
}
|
|
|
|
$bundle = ArcanistBundle::newFromChanges($changes);
|
|
|
|
|
|
|
|
$format = PhabricatorEnv::getEnvConfig('metamta.differential.patch-format');
|
|
|
|
switch ($format) {
|
|
|
|
case 'git':
|
|
|
|
return $bundle->toGitPatch();
|
|
|
|
break;
|
|
|
|
case 'unified':
|
|
|
|
default:
|
|
|
|
return $bundle->toUnifiedDiff();
|
|
|
|
break;
|
2011-10-14 21:08:31 +02:00
|
|
|
}
|
|
|
|
}
|
2012-03-03 20:05:19 +01:00
|
|
|
|
2011-01-26 02:17:19 +01:00
|
|
|
}
|