2012-02-24 23:14:39 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright 2012 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
final class DiffusionCommentView extends AphrontView {
|
|
|
|
|
|
|
|
private $user;
|
|
|
|
private $comment;
|
|
|
|
private $commentNumber;
|
|
|
|
private $handles;
|
2012-02-27 22:00:23 +01:00
|
|
|
private $isPreview;
|
2012-03-20 03:56:06 +01:00
|
|
|
private $pathMap;
|
|
|
|
|
|
|
|
private $inlineComments;
|
2012-02-27 22:00:23 +01:00
|
|
|
|
|
|
|
private $engine;
|
2012-02-24 23:14:39 +01:00
|
|
|
|
|
|
|
public function setUser(PhabricatorUser $user) {
|
|
|
|
$this->user = $user;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setComment(PhabricatorAuditComment $comment) {
|
|
|
|
$this->comment = $comment;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setCommentNumber($comment_number) {
|
|
|
|
$this->commentNumber = $comment_number;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setHandles(array $handles) {
|
|
|
|
$this->handles = $handles;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-02-27 22:00:23 +01:00
|
|
|
public function setIsPreview($is_preview) {
|
|
|
|
$this->isPreview = $is_preview;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-03-20 03:56:06 +01:00
|
|
|
public function setInlineComments(array $inline_comments) {
|
|
|
|
$this->inlineComments = $inline_comments;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setPathMap(array $path_map) {
|
|
|
|
$this->pathMap = $path_map;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-02-27 22:00:23 +01:00
|
|
|
public function getRequiredHandlePHIDs() {
|
|
|
|
return array($this->comment->getActorPHID());
|
|
|
|
}
|
|
|
|
|
2012-02-24 23:14:39 +01:00
|
|
|
private function getHandle($phid) {
|
|
|
|
if (empty($this->handles[$phid])) {
|
|
|
|
throw new Exception("Unloaded handle '{$phid}'!");
|
|
|
|
}
|
|
|
|
return $this->handles[$phid];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function render() {
|
|
|
|
$comment = $this->comment;
|
|
|
|
$author = $this->getHandle($comment->getActorPHID());
|
|
|
|
$author_link = $author->renderLink();
|
|
|
|
|
|
|
|
$actions = $this->renderActions();
|
|
|
|
$content = $this->renderContent();
|
|
|
|
$classes = $this->renderClasses();
|
|
|
|
|
|
|
|
$xaction_view = id(new PhabricatorTransactionView())
|
|
|
|
->setUser($this->user)
|
|
|
|
->setImageURI($author->getImageURI())
|
|
|
|
->setActions($actions)
|
|
|
|
->appendChild($content);
|
|
|
|
|
2012-02-27 22:00:23 +01:00
|
|
|
if ($this->isPreview) {
|
|
|
|
$xaction_view->setIsPreview(true);
|
|
|
|
} else {
|
|
|
|
$xaction_view
|
|
|
|
->setAnchor('comment-'.$this->commentNumber, '#'.$this->commentNumber)
|
|
|
|
->setEpoch($comment->getDateCreated());
|
|
|
|
}
|
|
|
|
|
2012-02-24 23:14:39 +01:00
|
|
|
foreach ($classes as $class) {
|
|
|
|
$xaction_view->addClass($class);
|
|
|
|
}
|
|
|
|
|
2012-02-27 22:00:23 +01:00
|
|
|
return $xaction_view->render();
|
2012-02-24 23:14:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private function renderActions() {
|
|
|
|
$comment = $this->comment;
|
|
|
|
$author = $this->getHandle($comment->getActorPHID());
|
|
|
|
$author_link = $author->renderLink();
|
|
|
|
|
2012-03-26 18:44:06 +02:00
|
|
|
$action = $comment->getAction();
|
|
|
|
$verb = PhabricatorAuditActionConstants::getActionPastTenseVerb($action);
|
|
|
|
|
2012-02-24 23:14:39 +01:00
|
|
|
$actions = array();
|
2012-03-26 18:44:06 +02:00
|
|
|
$actions[] = "{$author_link} ".phutil_escape_html($verb)." this commit.";
|
2012-02-24 23:14:39 +01:00
|
|
|
|
|
|
|
foreach ($actions as $key => $action) {
|
|
|
|
$actions[$key] = '<div>'.$action.'</div>';
|
|
|
|
}
|
|
|
|
|
|
|
|
return $actions;
|
|
|
|
}
|
|
|
|
|
|
|
|
private function renderContent() {
|
|
|
|
$comment = $this->comment;
|
2012-02-27 22:00:23 +01:00
|
|
|
$engine = $this->getEngine();
|
2012-02-24 23:14:39 +01:00
|
|
|
|
2012-03-26 19:05:15 +02:00
|
|
|
if (!strlen($comment->getContent()) && empty($this->inlineComments)) {
|
2012-03-26 18:44:06 +02:00
|
|
|
return null;
|
|
|
|
} else {
|
|
|
|
return
|
|
|
|
'<div class="phabricator-remarkup">'.
|
|
|
|
$engine->markupText($comment->getContent()).
|
|
|
|
$this->renderSingleView($this->renderInlines()).
|
|
|
|
'</div>';
|
|
|
|
}
|
2012-02-24 23:14:39 +01:00
|
|
|
}
|
|
|
|
|
2012-03-20 03:56:06 +01:00
|
|
|
private function renderInlines() {
|
|
|
|
if (!$this->inlineComments) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
$inlines_by_path = mgroup($this->inlineComments, 'getPathID');
|
|
|
|
|
|
|
|
$view = new PhabricatorInlineSummaryView();
|
|
|
|
foreach ($inlines_by_path as $path_id => $inlines) {
|
|
|
|
$path = idx($this->pathMap, $path_id);
|
|
|
|
if ($path === null) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$items = array();
|
|
|
|
foreach ($inlines as $inline) {
|
|
|
|
$items[] = array(
|
|
|
|
'id' => $inline->getID(),
|
|
|
|
'line' => $inline->getLineNumber(),
|
|
|
|
'length' => $inline->getLineLength(),
|
|
|
|
'content' => PhabricatorInlineSummaryView::renderCommentContent(
|
|
|
|
$inline,
|
|
|
|
$this->getEngine()),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
$view->addCommentGroup($path, $items);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $view;
|
|
|
|
}
|
|
|
|
|
2012-02-27 22:00:23 +01:00
|
|
|
private function getEngine() {
|
|
|
|
if (!$this->engine) {
|
|
|
|
$this->engine = PhabricatorMarkupEngine::newDiffusionMarkupEngine();
|
|
|
|
}
|
|
|
|
return $this->engine;
|
|
|
|
}
|
|
|
|
|
2012-02-24 23:14:39 +01:00
|
|
|
private function renderClasses() {
|
|
|
|
$comment = $this->comment;
|
|
|
|
|
|
|
|
$classes = array();
|
|
|
|
switch ($comment->getAction()) {
|
|
|
|
case PhabricatorAuditActionConstants::ACCEPT:
|
|
|
|
$classes[] = 'audit-accept';
|
|
|
|
break;
|
|
|
|
case PhabricatorAuditActionConstants::CONCERN:
|
|
|
|
$classes[] = 'audit-concern';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $classes;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|