mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 03:12:41 +01:00
f5580c7a08
Summary: Ref T4100. Ref T5595. To support a unified "Projects:" query across all applications, a future diff is going to add a set of "Edge Logic" capabilities to `PolicyAwareQuery` which write the required SELECT, JOIN, WHERE, HAVING and GROUP clauses for you. With the addition of "Edge Logic", we'll have three systems which may need to build components of query claues: ordering/paging, customfields/applicationsearch, and edge logic. For most clauses, queries don't currently call into the parent explicitly to get default components. I want to move more query construction logic up the class tree so it can be shared. For most methods, this isn't a problem, but many subclasses define a `buildWhereClause()`. Make all such definitions protected and consistent. This causes no behavioral changes. Test Plan: Ran `arc unit --everything`, which does a pretty through job of verifying this statically. Reviewers: btrahan Reviewed By: btrahan Subscribers: yelirekim, hach-que, epriestley Maniphest Tasks: T4100, T5595 Differential Revision: https://secure.phabricator.com/D12453
110 lines
2.5 KiB
PHP
110 lines
2.5 KiB
PHP
<?php
|
|
|
|
final class PhortunePurchaseQuery
|
|
extends PhabricatorCursorPagedPolicyAwareQuery {
|
|
|
|
private $ids;
|
|
private $phids;
|
|
private $cartPHIDs;
|
|
|
|
public function withIDs(array $ids) {
|
|
$this->ids = $ids;
|
|
return $this;
|
|
}
|
|
|
|
public function withPHIDs(array $phids) {
|
|
$this->phids = $phids;
|
|
return $this;
|
|
}
|
|
|
|
public function withCartPHIDs(array $cart_phids) {
|
|
$this->cartPHIDs = $cart_phids;
|
|
return $this;
|
|
}
|
|
|
|
protected function loadPage() {
|
|
$table = new PhortunePurchase();
|
|
$conn = $table->establishConnection('r');
|
|
|
|
$rows = queryfx_all(
|
|
$conn,
|
|
'SELECT purchase.* FROM %T purchase %Q %Q %Q',
|
|
$table->getTableName(),
|
|
$this->buildWhereClause($conn),
|
|
$this->buildOrderClause($conn),
|
|
$this->buildLimitClause($conn));
|
|
|
|
return $table->loadAllFromArray($rows);
|
|
}
|
|
|
|
protected function willFilterPage(array $purchases) {
|
|
$carts = id(new PhortuneCartQuery())
|
|
->setViewer($this->getViewer())
|
|
->setParentQuery($this)
|
|
->withPHIDs(mpull($purchases, 'getCartPHID'))
|
|
->execute();
|
|
$carts = mpull($carts, null, 'getPHID');
|
|
|
|
foreach ($purchases as $key => $purchase) {
|
|
$cart = idx($carts, $purchase->getCartPHID());
|
|
if (!$cart) {
|
|
unset($purchases[$key]);
|
|
continue;
|
|
}
|
|
$purchase->attachCart($cart);
|
|
}
|
|
|
|
$products = id(new PhortuneProductQuery())
|
|
->setViewer($this->getViewer())
|
|
->setParentQuery($this)
|
|
->withPHIDs(mpull($purchases, 'getProductPHID'))
|
|
->execute();
|
|
$products = mpull($products, null, 'getPHID');
|
|
|
|
foreach ($purchases as $key => $purchase) {
|
|
$product = idx($products, $purchase->getProductPHID());
|
|
if (!$product) {
|
|
unset($purchases[$key]);
|
|
continue;
|
|
}
|
|
$purchase->attachProduct($product);
|
|
}
|
|
|
|
|
|
return $purchases;
|
|
}
|
|
|
|
protected function buildWhereClause(AphrontDatabaseConnection $conn) {
|
|
$where = array();
|
|
|
|
$where[] = $this->buildPagingClause($conn);
|
|
|
|
if ($this->ids !== null) {
|
|
$where[] = qsprintf(
|
|
$conn,
|
|
'purchase.id IN (%Ld)',
|
|
$this->ids);
|
|
}
|
|
|
|
if ($this->phids !== null) {
|
|
$where[] = qsprintf(
|
|
$conn,
|
|
'purchase.phid IN (%Ls)',
|
|
$this->phids);
|
|
}
|
|
|
|
if ($this->cartPHIDs !== null) {
|
|
$where[] = qsprintf(
|
|
$conn,
|
|
'purchase.cartPHID IN (%Ls)',
|
|
$this->cartPHIDs);
|
|
}
|
|
|
|
return $this->formatWhereClause($where);
|
|
}
|
|
|
|
public function getQueryApplicationClass() {
|
|
return 'PhabricatorPhortuneApplication';
|
|
}
|
|
|
|
}
|