mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-01 19:22:42 +01:00
130 lines
2.8 KiB
PHP
130 lines
2.8 KiB
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Temporary wrapper for transitioning Differential to ApplicationTransactions.
|
||
|
*/
|
||
|
final class DifferentialInlineCommentQuery
|
||
|
extends PhabricatorOffsetPagedQuery {
|
||
|
|
||
|
private $revisionIDs;
|
||
|
private $notDraft;
|
||
|
private $ids;
|
||
|
private $commentIDs;
|
||
|
|
||
|
private $authorAndChangesetIDs;
|
||
|
private $draftComments;
|
||
|
private $draftsByAuthors;
|
||
|
|
||
|
public function withRevisionIDs(array $ids) {
|
||
|
$this->revisionIDs = $ids;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function withNotDraft($not_draft) {
|
||
|
$this->notDraft = $not_draft;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function withIDs(array $ids) {
|
||
|
$this->ids = $ids;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function withCommentIDs(array $ids) {
|
||
|
$this->commentIDs = $ids;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function withAuthorAndChangesetIDs($author_phid, array $ids) {
|
||
|
$this->authorAndChangesetIDs = array($author_phid, $ids);
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function withDraftComments($author_phid, $revision_id) {
|
||
|
$this->draftComments = array($author_phid, $revision_id);
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function withDraftsByAuthors(array $author_phids) {
|
||
|
$this->draftsByAuthors = $author_phids;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function execute() {
|
||
|
$table = new DifferentialInlineComment();
|
||
|
$conn_r = $table->establishConnection('r');
|
||
|
|
||
|
$data = queryfx_all(
|
||
|
$conn_r,
|
||
|
'SELECT * FROM %T %Q %Q',
|
||
|
$table->getTableName(),
|
||
|
$this->buildWhereClause($conn_r),
|
||
|
$this->buildLimitClause($conn_r));
|
||
|
|
||
|
return $table->loadAllFromArray($data);
|
||
|
}
|
||
|
|
||
|
public function executeOne() {
|
||
|
return head($this->execute());
|
||
|
}
|
||
|
|
||
|
private function buildWhereClause(AphrontDatabaseConnection $conn_r) {
|
||
|
$where = array();
|
||
|
|
||
|
if ($this->revisionIDs) {
|
||
|
$where[] = qsprintf(
|
||
|
$conn_r,
|
||
|
'revisionID IN (%Ld)',
|
||
|
$this->revisionIDs);
|
||
|
}
|
||
|
|
||
|
if ($this->notDraft) {
|
||
|
$where[] = qsprintf(
|
||
|
$conn_r,
|
||
|
'commentID IS NOT NULL');
|
||
|
}
|
||
|
|
||
|
if ($this->ids) {
|
||
|
$where[] = qsprintf(
|
||
|
$conn_r,
|
||
|
'id IN (%Ld)',
|
||
|
$this->ids);
|
||
|
}
|
||
|
|
||
|
if ($this->commentIDs) {
|
||
|
$where[] = qsprintf(
|
||
|
$conn_r,
|
||
|
'commentID in (%Ld)',
|
||
|
$this->commentIDs);
|
||
|
}
|
||
|
|
||
|
if ($this->authorAndChangesetIDs) {
|
||
|
list($phid, $ids) = $this->authorAndChangesetIDs;
|
||
|
$where[] = qsprintf(
|
||
|
$conn_r,
|
||
|
'authorPHID = %s AND changesetID IN (%Ld)',
|
||
|
$phid,
|
||
|
$ids);
|
||
|
}
|
||
|
|
||
|
if ($this->draftComments) {
|
||
|
list($phid, $rev_id) = $this->draftComments;
|
||
|
$where[] = qsprintf(
|
||
|
$conn_r,
|
||
|
'authorPHID = %s AND revisionID = %d AND commentID IS NULL',
|
||
|
$phid,
|
||
|
$rev_id);
|
||
|
}
|
||
|
|
||
|
if ($this->draftsByAuthors) {
|
||
|
$where[] = qsprintf(
|
||
|
$conn_r,
|
||
|
'authorPHID IN (%Ls) AND commentID IS NULL',
|
||
|
$this->draftsByAuthors);
|
||
|
}
|
||
|
|
||
|
return $this->formatWhereClause($where);
|
||
|
}
|
||
|
|
||
|
}
|