mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-16 11:52:40 +01:00
6e6ad2cfcf
Summary: Ref T3662. Ref T3549. These methods are pretty conservative for now, but get the structure in place. Also do a bunch more project -> product stuff. Test Plan: Made calls to both methods, browsed around the UI a fair amount. Reviewers: btrahan Reviewed By: btrahan Subscribers: epriestley Maniphest Tasks: T3549, T3662 Differential Revision: https://secure.phabricator.com/D8816
154 lines
3.5 KiB
PHP
154 lines
3.5 KiB
PHP
<?php
|
|
|
|
final class ReleephBranchQuery
|
|
extends PhabricatorCursorPagedPolicyAwareQuery {
|
|
|
|
private $ids;
|
|
private $phids;
|
|
private $productPHIDs;
|
|
private $productIDs;
|
|
|
|
const STATUS_ALL = 'status-all';
|
|
const STATUS_OPEN = 'status-open';
|
|
private $status = self::STATUS_ALL;
|
|
|
|
private $needCutPointCommits;
|
|
|
|
public function withIDs(array $ids) {
|
|
$this->ids = $ids;
|
|
return $this;
|
|
}
|
|
|
|
public function withPHIDs(array $phids) {
|
|
$this->phids = $phids;
|
|
return $this;
|
|
}
|
|
|
|
public function needCutPointCommits($need_commits) {
|
|
$this->needCutPointCommits = $need_commits;
|
|
return $this;
|
|
}
|
|
|
|
public function withStatus($status) {
|
|
$this->status = $status;
|
|
return $this;
|
|
}
|
|
|
|
public function withProductPHIDs($product_phids) {
|
|
$this->productPHIDs = $product_phids;
|
|
return $this;
|
|
}
|
|
|
|
public function loadPage() {
|
|
$table = new ReleephBranch();
|
|
$conn_r = $table->establishConnection('r');
|
|
|
|
$data = queryfx_all(
|
|
$conn_r,
|
|
'SELECT * FROM %T %Q %Q %Q',
|
|
$table->getTableName(),
|
|
$this->buildWhereClause($conn_r),
|
|
$this->buildOrderClause($conn_r),
|
|
$this->buildLimitClause($conn_r));
|
|
|
|
return $table->loadAllFromArray($data);
|
|
}
|
|
|
|
public function willExecute() {
|
|
if ($this->productPHIDs !== null) {
|
|
$products = id(new ReleephProductQuery())
|
|
->setViewer($this->getViewer())
|
|
->withPHIDs($this->productPHIDs)
|
|
->execute();
|
|
|
|
if (!$products) {
|
|
throw new PhabricatorEmptyQueryException();
|
|
}
|
|
|
|
$this->productIDs = mpull($products, 'getID');
|
|
}
|
|
}
|
|
|
|
|
|
public function willFilterPage(array $branches) {
|
|
$project_ids = mpull($branches, 'getReleephProjectID');
|
|
|
|
$projects = id(new ReleephProductQuery())
|
|
->withIDs($project_ids)
|
|
->setViewer($this->getViewer())
|
|
->execute();
|
|
|
|
foreach ($branches as $key => $branch) {
|
|
$project_id = $project_ids[$key];
|
|
if (isset($projects[$project_id])) {
|
|
$branch->attachProject($projects[$project_id]);
|
|
} else {
|
|
unset($branches[$key]);
|
|
}
|
|
}
|
|
|
|
if ($this->needCutPointCommits) {
|
|
$commit_phids = mpull($branches, 'getCutPointCommitPHID');
|
|
$commits = id(new DiffusionCommitQuery())
|
|
->setViewer($this->getViewer())
|
|
->withPHIDs($commit_phids)
|
|
->execute();
|
|
$commits = mpull($commits, null, 'getPHID');
|
|
|
|
foreach ($branches as $branch) {
|
|
$commit = idx($commits, $branch->getCutPointCommitPHID());
|
|
$branch->attachCutPointCommit($commit);
|
|
}
|
|
}
|
|
|
|
return $branches;
|
|
}
|
|
|
|
private function buildWhereClause(AphrontDatabaseConnection $conn_r) {
|
|
$where = array();
|
|
|
|
if ($this->ids !== null) {
|
|
$where[] = qsprintf(
|
|
$conn_r,
|
|
'id IN (%Ld)',
|
|
$this->ids);
|
|
}
|
|
|
|
if ($this->phids !== null) {
|
|
$where[] = qsprintf(
|
|
$conn_r,
|
|
'phid IN (%Ls)',
|
|
$this->phids);
|
|
}
|
|
|
|
if ($this->productIDs !== null) {
|
|
$where[] = qsprintf(
|
|
$conn_r,
|
|
'releephProjectID IN (%Ld)',
|
|
$this->productIDs);
|
|
}
|
|
|
|
$status = $this->status;
|
|
switch ($status) {
|
|
case self::STATUS_ALL:
|
|
break;
|
|
case self::STATUS_OPEN:
|
|
$where[] = qsprintf(
|
|
$conn_r,
|
|
'isActive = 1');
|
|
break;
|
|
default:
|
|
throw new Exception("Unknown status constant '{$status}'!");
|
|
}
|
|
|
|
$where[] = $this->buildPagingClause($conn_r);
|
|
|
|
return $this->formatWhereClause($where);
|
|
}
|
|
|
|
|
|
public function getQueryApplicationClass() {
|
|
return 'PhabricatorApplicationReleeph';
|
|
}
|
|
|
|
}
|