2013-01-25 02:23:05 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @group conpherence
|
|
|
|
*/
|
|
|
|
final class ConpherenceTransaction extends PhabricatorApplicationTransaction {
|
|
|
|
|
|
|
|
public function getApplicationName() {
|
|
|
|
return 'conpherence';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getApplicationTransactionType() {
|
|
|
|
return PhabricatorPHIDConstants::PHID_TYPE_CONP;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getApplicationTransactionCommentObject() {
|
|
|
|
return new ConpherenceTransactionComment();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getApplicationObjectTypeName() {
|
|
|
|
return pht('conpherence');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function shouldHide() {
|
|
|
|
$old = $this->getOldValue();
|
|
|
|
|
|
|
|
switch ($this->getTransactionType()) {
|
|
|
|
case ConpherenceTransactionType::TYPE_PARTICIPANTS:
|
|
|
|
return ($old === null);
|
|
|
|
case ConpherenceTransactionType::TYPE_TITLE:
|
|
|
|
case ConpherenceTransactionType::TYPE_PICTURE:
|
|
|
|
return false;
|
2013-01-25 22:04:40 +01:00
|
|
|
case ConpherenceTransactionType::TYPE_FILES:
|
2013-02-06 23:03:52 +01:00
|
|
|
case ConpherenceTransactionType::TYPE_PICTURE_CROP:
|
2013-01-25 22:04:40 +01:00
|
|
|
return true;
|
2013-01-25 02:23:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return parent::shouldHide();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getTitle() {
|
|
|
|
$author_phid = $this->getAuthorPHID();
|
|
|
|
|
|
|
|
$old = $this->getOldValue();
|
|
|
|
$new = $this->getNewValue();
|
|
|
|
|
|
|
|
switch ($this->getTransactionType()) {
|
|
|
|
case ConpherenceTransactionType::TYPE_TITLE:
|
2013-02-07 20:17:20 +01:00
|
|
|
if ($old && $new) {
|
2013-01-25 02:23:05 +01:00
|
|
|
$title = pht(
|
|
|
|
'%s renamed this conpherence from "%s" to "%s".',
|
|
|
|
$this->renderHandleLink($author_phid),
|
|
|
|
phutil_escape_html($old),
|
|
|
|
phutil_escape_html($new));
|
2013-02-07 20:17:20 +01:00
|
|
|
} else if ($old) {
|
|
|
|
$title = pht(
|
|
|
|
'%s deleted the conpherence name "%s".',
|
|
|
|
$this->renderHandleLink($author_phid),
|
|
|
|
phutil_escape_html($old));
|
2013-01-25 02:23:05 +01:00
|
|
|
} else {
|
|
|
|
$title = pht(
|
|
|
|
'%s named this conpherence "%s".',
|
|
|
|
$this->renderHandleLink($author_phid),
|
|
|
|
phutil_escape_html($new));
|
|
|
|
}
|
|
|
|
return $title;
|
|
|
|
case ConpherenceTransactionType::TYPE_FILES:
|
|
|
|
return pht(
|
|
|
|
'%s updated the conpherence files.',
|
|
|
|
$this->renderHandleLink($author_phid));
|
|
|
|
case ConpherenceTransactionType::TYPE_PICTURE:
|
|
|
|
return pht(
|
|
|
|
'%s updated the conpherence image.',
|
|
|
|
$this->renderHandleLink($author_phid));
|
|
|
|
case ConpherenceTransactionType::TYPE_PARTICIPANTS:
|
|
|
|
$add = array_diff($new, $old);
|
|
|
|
$rem = array_diff($old, $new);
|
|
|
|
|
|
|
|
if ($add && $rem) {
|
|
|
|
$title = pht(
|
|
|
|
'%s edited participant(s), added %d: %s; removed %d: %s.',
|
|
|
|
$this->renderHandleLink($author_phid),
|
|
|
|
count($add),
|
|
|
|
$this->renderHandleList($add),
|
|
|
|
count($rem),
|
|
|
|
$this->renderHandleList($rem));
|
|
|
|
} else if ($add) {
|
|
|
|
$title = pht(
|
|
|
|
'%s added %d participant(s): %s.',
|
|
|
|
$this->renderHandleLink($author_phid),
|
|
|
|
count($add),
|
|
|
|
$this->renderHandleList($add));
|
|
|
|
} else {
|
|
|
|
$title = pht(
|
|
|
|
'%s removed %d partipant(s): %s.',
|
|
|
|
$this->renderHandleLink($author_phid),
|
|
|
|
count($rem),
|
|
|
|
$this->renderHandleList($rem));
|
|
|
|
}
|
|
|
|
return $title;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return parent::getTitle();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getRequiredHandlePHIDs() {
|
|
|
|
$phids = parent::getRequiredHandlePHIDs();
|
|
|
|
|
|
|
|
$old = $this->getOldValue();
|
|
|
|
$new = $this->getNewValue();
|
|
|
|
|
|
|
|
$phids[] = $this->getAuthorPHID();
|
|
|
|
switch ($this->getTransactionType()) {
|
|
|
|
case ConpherenceTransactionType::TYPE_PICTURE:
|
|
|
|
case ConpherenceTransactionType::TYPE_TITLE:
|
2013-02-06 23:03:52 +01:00
|
|
|
case ConpherenceTransactionType::TYPE_FILES:
|
2013-01-25 02:23:05 +01:00
|
|
|
break;
|
|
|
|
case ConpherenceTransactionType::TYPE_PARTICIPANTS:
|
|
|
|
$phids = array_merge($phids, $this->getOldValue());
|
|
|
|
$phids = array_merge($phids, $this->getNewValue());
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return $phids;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|