2011-02-08 19:53:59 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
class ManiphestTransaction extends ManiphestDAO {
|
|
|
|
|
|
|
|
protected $taskID;
|
|
|
|
protected $authorPHID;
|
|
|
|
protected $transactionType;
|
|
|
|
protected $oldValue;
|
|
|
|
protected $newValue;
|
|
|
|
protected $comments;
|
|
|
|
protected $cache;
|
|
|
|
|
|
|
|
public function getConfiguration() {
|
|
|
|
return array(
|
|
|
|
self::CONFIG_SERIALIZATION => array(
|
|
|
|
'oldValue' => self::SERIALIZATION_JSON,
|
|
|
|
'newValue' => self::SERIALIZATION_JSON,
|
|
|
|
),
|
|
|
|
) + parent::getConfiguration();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function extractPHIDs() {
|
|
|
|
$phids = array();
|
|
|
|
|
|
|
|
switch ($this->getTransactionType()) {
|
|
|
|
case ManiphestTransactionType::TYPE_CCS:
|
|
|
|
foreach ($this->getOldValue() as $phid) {
|
|
|
|
$phids[] = $phid;
|
|
|
|
}
|
|
|
|
foreach ($this->getNewValue() as $phid) {
|
|
|
|
$phids[] = $phid;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case ManiphestTransactionType::TYPE_OWNER:
|
|
|
|
$phids[] = $this->getOldValue();
|
|
|
|
$phids[] = $this->getNewValue();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
$phids[] = $this->getAuthorPHID();
|
|
|
|
|
|
|
|
return $phids;
|
|
|
|
}
|
|
|
|
|
2011-02-09 21:47:24 +01:00
|
|
|
public function canGroupWith($target) {
|
|
|
|
if ($target->getAuthorPHID() != $this->getAuthorPHID()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if ($target->hasComments() && $this->hasComments()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$ttime = $target->getDateCreated();
|
2011-02-10 05:12:20 +01:00
|
|
|
$stime = $this->getDateCreated();
|
2011-02-09 21:47:24 +01:00
|
|
|
if (abs($stime - $ttime) > 60) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($target->getTransactionType() == $this->getTransactionType()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function hasComments() {
|
|
|
|
return (bool)strlen(trim($this->getComments()));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-02-08 19:53:59 +01:00
|
|
|
}
|