2013-07-26 22:52:57 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class PonderQuestionTransaction
|
|
|
|
extends PhabricatorApplicationTransaction {
|
|
|
|
|
2013-07-29 00:02:18 +02:00
|
|
|
const TYPE_TITLE = 'ponder.question:question';
|
|
|
|
const TYPE_CONTENT = 'ponder.question:content';
|
2013-07-29 00:59:53 +02:00
|
|
|
const TYPE_ANSWERS = 'ponder.question:answer';
|
2013-07-29 02:52:35 +02:00
|
|
|
const TYPE_STATUS = 'ponder.question:status';
|
2013-07-29 00:02:18 +02:00
|
|
|
|
2013-07-26 22:52:57 +02:00
|
|
|
public function getApplicationName() {
|
|
|
|
return 'ponder';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getTableName() {
|
|
|
|
return 'ponder_questiontransaction';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getApplicationTransactionType() {
|
|
|
|
return PonderPHIDTypeQuestion::TYPECONST;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getApplicationTransactionCommentObject() {
|
|
|
|
return new PonderQuestionTransactionComment();
|
|
|
|
}
|
|
|
|
|
2013-09-19 00:15:25 +02:00
|
|
|
public function getRequiredHandlePHIDs() {
|
|
|
|
$phids = parent::getRequiredHandlePHIDs();
|
|
|
|
|
|
|
|
switch ($this->getTransactionType()) {
|
|
|
|
case self::TYPE_ANSWERS:
|
|
|
|
$phids[] = $this->getNewAnswerPHID();
|
|
|
|
$phids[] = $this->getObjectPHID();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $phids;
|
|
|
|
}
|
|
|
|
|
2013-07-29 02:52:35 +02:00
|
|
|
public function getTitle() {
|
|
|
|
$author_phid = $this->getAuthorPHID();
|
2013-09-19 00:15:25 +02:00
|
|
|
$object_phid = $this->getObjectPHID();
|
2013-07-29 02:52:35 +02:00
|
|
|
|
|
|
|
$old = $this->getOldValue();
|
|
|
|
$new = $this->getNewValue();
|
|
|
|
|
|
|
|
switch ($this->getTransactionType()) {
|
|
|
|
case self::TYPE_TITLE:
|
|
|
|
if ($old === null) {
|
|
|
|
return pht(
|
2013-07-29 17:38:25 +02:00
|
|
|
'%s asked this question.',
|
2013-07-29 02:52:35 +02:00
|
|
|
$this->renderHandleLink($author_phid));
|
|
|
|
} else {
|
|
|
|
return pht(
|
|
|
|
'%s edited the question title from "%s" to "%s".',
|
|
|
|
$this->renderHandleLink($author_phid),
|
|
|
|
$old,
|
|
|
|
$new);
|
|
|
|
}
|
|
|
|
case self::TYPE_CONTENT:
|
|
|
|
return pht(
|
|
|
|
'%s edited the question description.',
|
|
|
|
$this->renderHandleLink($author_phid));
|
|
|
|
case self::TYPE_ANSWERS:
|
2013-09-19 00:15:25 +02:00
|
|
|
$answer_handle = $this->getHandle($this->getNewAnswerPHID());
|
|
|
|
$question_handle = $this->getHandle($object_phid);
|
2013-07-29 02:52:35 +02:00
|
|
|
return pht(
|
2013-09-19 00:15:25 +02:00
|
|
|
'%s answered %s',
|
|
|
|
$this->renderHandleLink($author_phid),
|
|
|
|
$answer_handle->renderLink($question_handle->getFullName()));
|
2013-07-29 02:52:35 +02:00
|
|
|
case self::TYPE_STATUS:
|
|
|
|
switch ($new) {
|
|
|
|
case PonderQuestionStatus::STATUS_OPEN:
|
|
|
|
return pht(
|
|
|
|
'%s reopened this question.',
|
|
|
|
$this->renderHandleLink($author_phid));
|
|
|
|
case PonderQuestionStatus::STATUS_CLOSED:
|
|
|
|
return pht(
|
|
|
|
'%s closed this question.',
|
|
|
|
$this->renderHandleLink($author_phid));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return parent::getTitle();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getIcon() {
|
|
|
|
$old = $this->getOldValue();
|
|
|
|
$new = $this->getNewValue();
|
|
|
|
|
|
|
|
switch ($this->getTransactionType()) {
|
|
|
|
case self::TYPE_TITLE:
|
|
|
|
case self::TYPE_CONTENT:
|
2014-04-22 17:25:54 +02:00
|
|
|
return 'fa-pencil';
|
2013-07-29 02:52:35 +02:00
|
|
|
case self::TYPE_STATUS:
|
|
|
|
switch ($new) {
|
|
|
|
case PonderQuestionStatus::STATUS_OPEN:
|
2014-04-22 17:25:54 +02:00
|
|
|
return 'fa-check-circle';
|
2013-07-29 02:52:35 +02:00
|
|
|
case PonderQuestionStatus::STATUS_CLOSED:
|
2014-04-22 17:25:54 +02:00
|
|
|
return 'fa-minus-circle';
|
2013-07-29 02:52:35 +02:00
|
|
|
}
|
|
|
|
case self::TYPE_ANSWERS:
|
2014-04-22 17:25:54 +02:00
|
|
|
return 'fa-plus';
|
2013-07-29 02:52:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return parent::getIcon();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getColor() {
|
|
|
|
$old = $this->getOldValue();
|
|
|
|
$new = $this->getNewValue();
|
|
|
|
|
|
|
|
switch ($this->getTransactionType()) {
|
|
|
|
case self::TYPE_TITLE:
|
|
|
|
case self::TYPE_CONTENT:
|
|
|
|
return PhabricatorTransactions::COLOR_BLUE;
|
|
|
|
case self::TYPE_ANSWERS:
|
|
|
|
return PhabricatorTransactions::COLOR_GREEN;
|
|
|
|
case self::TYPE_STATUS:
|
|
|
|
switch ($new) {
|
|
|
|
case PonderQuestionStatus::STATUS_OPEN:
|
|
|
|
return PhabricatorTransactions::COLOR_GREEN;
|
|
|
|
case PonderQuestionStatus::STATUS_CLOSED:
|
|
|
|
return PhabricatorTransactions::COLOR_BLACK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function hasChangeDetails() {
|
|
|
|
switch ($this->getTransactionType()) {
|
|
|
|
case self::TYPE_CONTENT:
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return parent::hasChangeDetails();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function renderChangeDetails(PhabricatorUser $viewer) {
|
Allow CustomField to provide ApplicationTransaction change details
Summary:
Ref T3886. Ref T418. For fields like "Summary" and "Test Plan" where changes can't be summarized in one line, allow CustomField to provide a "(Show Details)" link and render a diff.
Also consolidate some of the existing copy/paste, and simplify this featuer slightly now that we've move to dialogs.
Test Plan:
{F115918}
- Viewed "description"-style field changes in phlux, pholio, legalpad, maniphest, differential, ponder (questions), ponder (answers), and repositories.
Reviewers: btrahan
Reviewed By: btrahan
CC: aran
Maniphest Tasks: T3886, T418
Differential Revision: https://secure.phabricator.com/D8284
2014-02-21 20:53:04 +01:00
|
|
|
return $this->renderTextCorpusChangeDetails(
|
|
|
|
$viewer,
|
|
|
|
$this->getOldValue(),
|
|
|
|
$this->getNewValue());
|
2013-07-29 02:52:35 +02:00
|
|
|
}
|
|
|
|
|
2013-07-29 17:38:25 +02:00
|
|
|
public function getActionStrength() {
|
|
|
|
$old = $this->getOldValue();
|
|
|
|
$new = $this->getNewValue();
|
|
|
|
|
|
|
|
switch ($this->getTransactionType()) {
|
|
|
|
case self::TYPE_TITLE:
|
|
|
|
if ($old === null) {
|
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case self::TYPE_ANSWERS:
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
return parent::getActionStrength();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getActionName() {
|
|
|
|
$old = $this->getOldValue();
|
|
|
|
$new = $this->getNewValue();
|
|
|
|
|
|
|
|
switch ($this->getTransactionType()) {
|
|
|
|
case self::TYPE_TITLE:
|
|
|
|
if ($old === null) {
|
|
|
|
return pht('Asked');
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case self::TYPE_ANSWERS:
|
|
|
|
return pht('Answered');
|
|
|
|
}
|
|
|
|
|
|
|
|
return parent::getActionName();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function shouldHide() {
|
|
|
|
switch ($this->getTransactionType()) {
|
|
|
|
case self::TYPE_CONTENT:
|
|
|
|
if ($this->getOldValue() === null) {
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return parent::shouldHide();
|
|
|
|
}
|
|
|
|
|
2013-09-19 00:15:25 +02:00
|
|
|
public function getTitleForFeed(PhabricatorFeedStory $story) {
|
2013-07-29 15:30:07 +02:00
|
|
|
$author_phid = $this->getAuthorPHID();
|
|
|
|
$object_phid = $this->getObjectPHID();
|
|
|
|
|
|
|
|
$old = $this->getOldValue();
|
|
|
|
$new = $this->getNewValue();
|
2013-07-29 02:52:35 +02:00
|
|
|
|
2013-07-29 15:30:07 +02:00
|
|
|
switch ($this->getTransactionType()) {
|
|
|
|
case self::TYPE_TITLE:
|
|
|
|
if ($old === null) {
|
|
|
|
return pht(
|
|
|
|
'%s asked a question: %s',
|
|
|
|
$this->renderHandleLink($author_phid),
|
|
|
|
$this->renderHandleLink($object_phid));
|
|
|
|
} else {
|
|
|
|
return pht(
|
|
|
|
'%s edited the title of %s (was "%s")',
|
|
|
|
$this->renderHandleLink($author_phid),
|
|
|
|
$this->renderHandleLink($object_phid),
|
|
|
|
$old);
|
|
|
|
}
|
|
|
|
case self::TYPE_CONTENT:
|
|
|
|
return pht(
|
|
|
|
'%s edited the description of %s',
|
|
|
|
$this->renderHandleLink($author_phid),
|
|
|
|
$this->renderHandleLink($object_phid));
|
|
|
|
case self::TYPE_ANSWERS:
|
2013-09-19 00:15:25 +02:00
|
|
|
$answer_handle = $this->getHandle($this->getNewAnswerPHID());
|
|
|
|
$question_handle = $this->getHandle($object_phid);
|
2013-07-29 15:30:07 +02:00
|
|
|
return pht(
|
|
|
|
'%s answered %s',
|
|
|
|
$this->renderHandleLink($author_phid),
|
2013-09-19 00:15:25 +02:00
|
|
|
$answer_handle->renderLink($question_handle->getFullName()));
|
2013-07-29 15:30:07 +02:00
|
|
|
case self::TYPE_STATUS:
|
|
|
|
switch ($new) {
|
|
|
|
case PonderQuestionStatus::STATUS_OPEN:
|
|
|
|
return pht(
|
|
|
|
'%s reopened %s',
|
|
|
|
$this->renderHandleLink($author_phid),
|
|
|
|
$this->renderHandleLink($object_phid));
|
|
|
|
case PonderQuestionStatus::STATUS_CLOSED:
|
|
|
|
return pht(
|
|
|
|
'%s closed %s',
|
|
|
|
$this->renderHandleLink($author_phid),
|
|
|
|
$this->renderHandleLink($object_phid));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-19 00:15:25 +02:00
|
|
|
return parent::getTitleForFeed($story);
|
2013-07-29 15:30:07 +02:00
|
|
|
}
|
2013-07-26 22:52:57 +02:00
|
|
|
|
2013-09-19 00:15:25 +02:00
|
|
|
public function getBodyForFeed(PhabricatorFeedStory $story) {
|
|
|
|
$new = $this->getNewValue();
|
|
|
|
$old = $this->getOldValue();
|
|
|
|
|
|
|
|
$body = null;
|
2013-07-26 22:52:57 +02:00
|
|
|
|
2013-09-19 00:15:25 +02:00
|
|
|
switch ($this->getTransactionType()) {
|
|
|
|
case self::TYPE_TITLE:
|
|
|
|
if ($old === null) {
|
|
|
|
$question = $story->getObject($this->getObjectPHID());
|
|
|
|
return phutil_escape_html_newlines(
|
|
|
|
phutil_utf8_shorten($question->getContent(), 128));
|
|
|
|
}
|
2013-11-11 20:17:06 +01:00
|
|
|
break;
|
2013-09-19 00:15:25 +02:00
|
|
|
case self::TYPE_ANSWERS:
|
|
|
|
$answer = $this->getNewAnswerObject($story);
|
|
|
|
if ($answer) {
|
|
|
|
return phutil_escape_html_newlines(
|
|
|
|
phutil_utf8_shorten($answer->getContent(), 128));
|
|
|
|
}
|
2013-11-11 20:17:06 +01:00
|
|
|
break;
|
2013-09-19 00:15:25 +02:00
|
|
|
}
|
2013-11-11 20:17:06 +01:00
|
|
|
|
2013-09-19 00:15:25 +02:00
|
|
|
return parent::getBodyForFeed($story);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Currently the application only supports adding answers one at a time.
|
|
|
|
* This data is stored as a list of phids. Use this function to get the
|
|
|
|
* new phid.
|
|
|
|
*/
|
|
|
|
private function getNewAnswerPHID() {
|
|
|
|
$new = $this->getNewValue();
|
|
|
|
$old = $this->getOldValue();
|
|
|
|
$add = array_diff($new, $old);
|
|
|
|
|
|
|
|
if (count($add) != 1) {
|
|
|
|
throw new Exception(
|
|
|
|
'There should be only one answer added at a time.');
|
|
|
|
}
|
|
|
|
|
|
|
|
return reset($add);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generally, the answer object is only available if the transaction
|
|
|
|
* type is self::TYPE_ANSWERS.
|
|
|
|
*
|
|
|
|
* Some stories - notably ones made before D7027 - will be of the more
|
|
|
|
* generic @{class:PhabricatorApplicationTransactionFeedStory}. These
|
|
|
|
* poor stories won't have the PonderAnswer loaded, and thus will have
|
|
|
|
* less cool information.
|
|
|
|
*/
|
|
|
|
private function getNewAnswerObject(PhabricatorFeedStory $story) {
|
|
|
|
if ($story instanceof PonderTransactionFeedStory) {
|
|
|
|
$answer_phid = $this->getNewAnswerPHID();
|
|
|
|
if ($answer_phid) {
|
|
|
|
return $story->getObject($answer_phid);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|