1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-14 10:52:41 +01:00
phorge-phorge/src/applications/differential/storage/revision/DifferentialRevision.php

128 lines
3.1 KiB
PHP
Raw Normal View History

2011-01-24 20:01:53 +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 DifferentialRevision extends DifferentialDAO {
2011-01-26 02:17:19 +01:00
protected $title;
2011-01-24 20:01:53 +01:00
protected $status;
protected $summary;
protected $testPlan;
2011-01-25 22:26:09 +01:00
protected $revertPlan;
protected $blameRevision;
2011-01-24 20:01:53 +01:00
protected $phid;
protected $authorPHID;
2011-01-24 20:01:53 +01:00
protected $dateCommitted;
protected $lineCount;
protected $attached = array();
2011-01-27 03:46:34 +01:00
private $relationships;
2011-01-27 03:46:34 +01:00
const RELATIONSHIP_TABLE = 'differential_relationship';
const RELATION_REVIEWER = 'revw';
const RELATION_SUBSCRIBED = 'subd';
const RELATION_UNSUBSCRIBED = 'usub';
2011-01-27 03:46:34 +01:00
2011-01-26 02:17:19 +01:00
public function getConfiguration() {
return array(
self::CONFIG_AUX_PHID => true,
self::CONFIG_SERIALIZATION => array(
'attached' => self::SERIALIZATION_JSON,
),
2011-01-26 02:17:19 +01:00
) + parent::getConfiguration();
}
public function getAttachedPHIDs($type) {
return array_keys(idx($this->attached, $type, array()));
}
public function setAttachedPHIDs($type, array $phids) {
$this->attached[$type] = array_fill_keys($phids, array());
return $this;
}
2011-01-26 02:17:19 +01:00
public function generatePHID() {
return PhabricatorPHID::generateNewPHID('DREV');
}
2011-01-27 03:46:34 +01:00
2011-01-27 23:55:52 +01:00
public function loadDiffs() {
if (!$this->getID()) {
return array();
}
return id(new DifferentialDiff())->loadAllWhere(
'revisionID = %d',
$this->getID());
}
public function loadComments() {
if (!$this->getID()) {
return array();
}
return id(new DifferentialComment())->loadAllWhere(
'revisionID = %d',
$this->getID());
}
2011-01-30 22:20:56 +01:00
public function loadActiveDiff() {
return id(new DifferentialDiff())->loadOneWhere(
'revisionID = %d ORDER BY id DESC LIMIT 1',
$this->getID());
}
2011-01-26 02:17:19 +01:00
public function loadRelationships() {
2011-01-27 03:46:34 +01:00
if (!$this->getID()) {
$this->relationships = array();
return;
}
$data = queryfx_all(
$this->establishConnection('r'),
'SELECT * FROM %T WHERE revisionID = %d ORDER BY sequence',
self::RELATIONSHIP_TABLE,
$this->getID());
$this->relationships = igroup($data, 'relation');
return $this;
2011-01-26 02:17:19 +01:00
}
2011-01-27 03:46:34 +01:00
2011-01-26 02:17:19 +01:00
public function getReviewers() {
2011-01-27 03:46:34 +01:00
return $this->getRelatedPHIDs(self::RELATION_REVIEWER);
2011-01-26 02:17:19 +01:00
}
2011-01-27 03:46:34 +01:00
2011-01-26 02:17:19 +01:00
public function getCCPHIDs() {
2011-01-27 03:46:34 +01:00
return $this->getRelatedPHIDs(self::RELATION_SUBSCRIBED);
}
private function getRelatedPHIDs($relation) {
if ($this->relationships === null) {
2011-01-27 03:46:34 +01:00
throw new Exception("Must load relationships!");
}
2011-02-03 04:38:43 +01:00
return ipull($this->getRawRelations($relation), 'objectPHID');
2011-01-27 03:46:34 +01:00
}
public function getRawRelations($relation) {
return idx($this->relationships, $relation, array());
}
2011-01-24 20:01:53 +01:00
}