mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-21 04:01:30 +01:00
65 lines
1.3 KiB
PHP
65 lines
1.3 KiB
PHP
|
<?php
|
||
|
|
||
|
final class HarbormasterBuildUnitMessageQuery
|
||
|
extends PhabricatorCursorPagedPolicyAwareQuery {
|
||
|
|
||
|
private $ids;
|
||
|
private $phids;
|
||
|
private $targetPHIDs;
|
||
|
|
||
|
public function withIDs(array $ids) {
|
||
|
$this->ids = $ids;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function withPHIDs(array $phids) {
|
||
|
$this->phids = $phids;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function withBuildTargetPHIDs(array $target_phids) {
|
||
|
$this->targetPHIDs = $target_phids;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function newResultObject() {
|
||
|
return new HarbormasterBuildUnitMessage();
|
||
|
}
|
||
|
|
||
|
protected function loadPage() {
|
||
|
return $this->loadStandardPage($this->newResultObject());
|
||
|
}
|
||
|
|
||
|
protected function buildWhereClauseParts(AphrontDatabaseConnection $conn) {
|
||
|
$where = parent::buildWhereClauseParts($conn);
|
||
|
|
||
|
if ($this->ids !== null) {
|
||
|
$where[] = qsprintf(
|
||
|
$conn,
|
||
|
'id IN (%Ld)',
|
||
|
$this->ids);
|
||
|
}
|
||
|
|
||
|
if ($this->phids !== null) {
|
||
|
$where[] = qsprintf(
|
||
|
$conn,
|
||
|
'phid in (%Ls)',
|
||
|
$this->phids);
|
||
|
}
|
||
|
|
||
|
if ($this->targetPHIDs !== null) {
|
||
|
$where[] = qsprintf(
|
||
|
$conn,
|
||
|
'buildTargetPHID in (%Ls)',
|
||
|
$this->targetPHIDs);
|
||
|
}
|
||
|
|
||
|
return $where;
|
||
|
}
|
||
|
|
||
|
public function getQueryApplicationClass() {
|
||
|
return 'PhabricatorHarbormasterApplication';
|
||
|
}
|
||
|
|
||
|
}
|