mirror of
https://we.phorge.it/source/phorge.git
synced 2025-04-03 07:58:18 +02:00
Summary: Ref T11351. In Pholio, we currently use a `mockID`, but a `mockPHID` is generally preferable / more modern / more flexible. In particular, we need PHIDs to load handles and prefer PHIDs when exposing information to the API, and using PHIDs internally makes a bunch of things easier/better/faster and ~nothing harder/worse/slower. I'll add some inlines about a few things. Test Plan: Ran migrations, spot-checked database for sanity. Loaded Pholio, saw data unchanged. Created and edited images. Reviewers: amckinley Reviewed By: amckinley Subscribers: PHID-OPKG-gm6ozazyms6q6i22gyam Maniphest Tasks: T11351 Differential Revision: https://secure.phabricator.com/D19914
176 lines
4.1 KiB
PHP
176 lines
4.1 KiB
PHP
<?php
|
|
|
|
final class PholioMockQuery
|
|
extends PhabricatorCursorPagedPolicyAwareQuery {
|
|
|
|
private $ids;
|
|
private $phids;
|
|
private $authorPHIDs;
|
|
private $statuses;
|
|
|
|
private $needCoverFiles;
|
|
private $needImages;
|
|
private $needInlineComments;
|
|
private $needTokenCounts;
|
|
|
|
public function withIDs(array $ids) {
|
|
$this->ids = $ids;
|
|
return $this;
|
|
}
|
|
|
|
public function withPHIDs(array $phids) {
|
|
$this->phids = $phids;
|
|
return $this;
|
|
}
|
|
|
|
public function withAuthorPHIDs(array $author_phids) {
|
|
$this->authorPHIDs = $author_phids;
|
|
return $this;
|
|
}
|
|
|
|
public function withStatuses(array $statuses) {
|
|
$this->statuses = $statuses;
|
|
return $this;
|
|
}
|
|
|
|
public function needCoverFiles($need_cover_files) {
|
|
$this->needCoverFiles = $need_cover_files;
|
|
return $this;
|
|
}
|
|
|
|
public function needImages($need_images) {
|
|
$this->needImages = $need_images;
|
|
return $this;
|
|
}
|
|
|
|
public function needInlineComments($need_inline_comments) {
|
|
$this->needInlineComments = $need_inline_comments;
|
|
return $this;
|
|
}
|
|
|
|
public function needTokenCounts($need) {
|
|
$this->needTokenCounts = $need;
|
|
return $this;
|
|
}
|
|
|
|
public function newResultObject() {
|
|
return new PholioMock();
|
|
}
|
|
|
|
protected function loadPage() {
|
|
$mocks = $this->loadStandardPage(new PholioMock());
|
|
|
|
if ($mocks && $this->needImages) {
|
|
self::loadImages($this->getViewer(), $mocks, $this->needInlineComments);
|
|
}
|
|
|
|
if ($mocks && $this->needCoverFiles) {
|
|
$this->loadCoverFiles($mocks);
|
|
}
|
|
|
|
if ($mocks && $this->needTokenCounts) {
|
|
$this->loadTokenCounts($mocks);
|
|
}
|
|
|
|
return $mocks;
|
|
}
|
|
|
|
protected function buildWhereClauseParts(AphrontDatabaseConnection $conn) {
|
|
$where = parent::buildWhereClauseParts($conn);
|
|
|
|
if ($this->ids !== null) {
|
|
$where[] = qsprintf(
|
|
$conn,
|
|
'mock.id IN (%Ld)',
|
|
$this->ids);
|
|
}
|
|
|
|
if ($this->phids !== null) {
|
|
$where[] = qsprintf(
|
|
$conn,
|
|
'mock.phid IN (%Ls)',
|
|
$this->phids);
|
|
}
|
|
|
|
if ($this->authorPHIDs !== null) {
|
|
$where[] = qsprintf(
|
|
$conn,
|
|
'mock.authorPHID in (%Ls)',
|
|
$this->authorPHIDs);
|
|
}
|
|
|
|
if ($this->statuses !== null) {
|
|
$where[] = qsprintf(
|
|
$conn,
|
|
'mock.status IN (%Ls)',
|
|
$this->statuses);
|
|
}
|
|
|
|
return $where;
|
|
}
|
|
|
|
public static function loadImages(
|
|
PhabricatorUser $viewer,
|
|
array $mocks,
|
|
$need_inline_comments) {
|
|
assert_instances_of($mocks, 'PholioMock');
|
|
|
|
$mock_map = mpull($mocks, null, 'getPHID');
|
|
$all_images = id(new PholioImageQuery())
|
|
->setViewer($viewer)
|
|
->setMockCache($mock_map)
|
|
->withMockPHIDs(array_keys($mock_map))
|
|
->needInlineComments($need_inline_comments)
|
|
->execute();
|
|
|
|
$image_groups = mgroup($all_images, 'getMockPHID');
|
|
|
|
foreach ($mocks as $mock) {
|
|
$mock_images = idx($image_groups, $mock->getPHID(), array());
|
|
$mock->attachAllImages($mock_images);
|
|
$active_images = mfilter($mock_images, 'getIsObsolete', true);
|
|
$mock->attachImages(msort($active_images, 'getSequence'));
|
|
}
|
|
}
|
|
|
|
private function loadCoverFiles(array $mocks) {
|
|
assert_instances_of($mocks, 'PholioMock');
|
|
$cover_file_phids = mpull($mocks, 'getCoverPHID');
|
|
$cover_files = id(new PhabricatorFileQuery())
|
|
->setViewer($this->getViewer())
|
|
->withPHIDs($cover_file_phids)
|
|
->execute();
|
|
|
|
$cover_files = mpull($cover_files, null, 'getPHID');
|
|
|
|
foreach ($mocks as $mock) {
|
|
$file = idx($cover_files, $mock->getCoverPHID());
|
|
if (!$file) {
|
|
$file = PhabricatorFile::loadBuiltin($this->getViewer(), 'missing.png');
|
|
}
|
|
$mock->attachCoverFile($file);
|
|
}
|
|
}
|
|
|
|
private function loadTokenCounts(array $mocks) {
|
|
assert_instances_of($mocks, 'PholioMock');
|
|
|
|
$phids = mpull($mocks, 'getPHID');
|
|
$counts = id(new PhabricatorTokenCountQuery())
|
|
->withObjectPHIDs($phids)
|
|
->execute();
|
|
|
|
foreach ($mocks as $mock) {
|
|
$mock->attachTokenCount(idx($counts, $mock->getPHID(), 0));
|
|
}
|
|
}
|
|
|
|
public function getQueryApplicationClass() {
|
|
return 'PhabricatorPholioApplication';
|
|
}
|
|
|
|
protected function getPrimaryTableAlias() {
|
|
return 'mock';
|
|
}
|
|
|
|
}
|