Changeset View
Changeset View
Standalone View
Standalone View
src/applications/packages/query/PackagesVersionQuery.php
- This file was added.
| <?php | |||||
| final class PackagesVersionQuery | |||||
| extends PhabricatorCursorPagedPolicyAwareQuery { | |||||
| private $ids; | |||||
| private $phids; | |||||
| private $packagePHIDs; | |||||
| private $needProjectPHIDs; | |||||
| public function withIDs(array $ids) { | |||||
| $this->ids = $ids; | |||||
| return $this; | |||||
| } | |||||
| public function withPHIDs(array $phids) { | |||||
| $this->phids = $phids; | |||||
| return $this; | |||||
| } | |||||
| public function withPackagePHIDs(array $phids) { | |||||
| $this->packagePHIDs = $phids; | |||||
| return $this; | |||||
| } | |||||
| public function needProjectPHIDs($need) { | |||||
| $this->needProjectPHIDs = $need; | |||||
| return $this; | |||||
| } | |||||
| protected function loadPage() { | |||||
| $table = new PackagesVersion(); | |||||
| $conn_r = $table->establishConnection('r'); | |||||
| $rows = 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($rows); | |||||
| } | |||||
| protected function didFilterPage(array $versions) { | |||||
| if ($this->needProjectPHIDs) { | |||||
| $edge_query = id(new PhabricatorEdgeQuery()) | |||||
| ->withSourcePHIDs(mpull($versions, 'getPHID')) | |||||
| ->withEdgeTypes( | |||||
| array( | |||||
| PhabricatorProjectObjectHasProjectEdgeType::EDGECONST, | |||||
| )); | |||||
| $edge_query->execute(); | |||||
| foreach ($versions as $version) { | |||||
| $phids = $edge_query->getDestinationPHIDs( | |||||
| array( | |||||
| $version->getPHID(), | |||||
| )); | |||||
| $version->attachProjectPHIDs($phids); | |||||
| } | |||||
| } | |||||
| return $versions; | |||||
| } | |||||
| protected function buildWhereClause(AphrontDatabaseConnection $conn_r) { | |||||
| $where = array(); | |||||
| $where[] = $this->buildPagingClause($conn_r); | |||||
| 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->packagePHIDs !== null) { | |||||
| $where[] = qsprintf( | |||||
| $conn_r, | |||||
| 'packagePHID in (%Ls)', | |||||
| $this->packagePHIDs); | |||||
| } | |||||
| return $this->formatWhereClause($where); | |||||
| } | |||||
| public function getQueryApplicationClass() { | |||||
| return 'PhabricatorPackagesApplication'; | |||||
| } | |||||
| } | |||||