2011-01-26 02:17:19 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright 2011 Facebook, Inc.
|
|
|
|
*
|
|
|
|
* 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()) {
|
|
|
|
$body[] = $this->formatText($revision->getSummary());
|
|
|
|
$body[] = null;
|
|
|
|
|
|
|
|
$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;
|
|
|
|
}
|
|
|
|
|
|
|
|
return implode("\n", $body);
|
|
|
|
}
|
|
|
|
}
|