2013-01-25 02:23:05 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
2013-04-26 19:30:41 +02:00
|
|
|
* Query class that answers these questions:
|
|
|
|
*
|
|
|
|
* - Q: What are the conpherences to show when I land on /conpherence/ ?
|
|
|
|
* - A:
|
|
|
|
*
|
|
|
|
* id(new ConpherenceParticipantQuery())
|
|
|
|
* ->withParticipantPHIDs(array($my_phid))
|
|
|
|
* ->execute();
|
|
|
|
*
|
|
|
|
* - Q: What are the next set of conpherences as I scroll up (more recent) or
|
|
|
|
* down (less recent) this list of conpherences?
|
|
|
|
* - A:
|
|
|
|
*
|
|
|
|
* id(new ConpherenceParticipantQuery())
|
|
|
|
* ->withParticipantPHIDs(array($my_phid))
|
|
|
|
* ->withParticipantCursor($top_participant)
|
|
|
|
* ->setOrder(ConpherenceParticipantQuery::ORDER_NEWER)
|
|
|
|
* ->execute();
|
|
|
|
*
|
|
|
|
* -or-
|
|
|
|
*
|
|
|
|
* id(new ConpherenceParticipantQuery())
|
|
|
|
* ->withParticipantPHIDs(array($my_phid))
|
|
|
|
* ->withParticipantCursor($bottom_participant)
|
|
|
|
* ->setOrder(ConpherenceParticipantQuery::ORDER_OLDER)
|
|
|
|
* ->execute();
|
|
|
|
*
|
|
|
|
* For counts of read, un-read, or all conpherences by participant, see
|
|
|
|
* @{class:ConpherenceParticipantCountQuery}.
|
|
|
|
*
|
2013-01-25 02:23:05 +01:00
|
|
|
* @group conpherence
|
|
|
|
*/
|
|
|
|
final class ConpherenceParticipantQuery
|
|
|
|
extends PhabricatorOffsetPagedQuery {
|
|
|
|
|
2013-04-26 19:30:41 +02:00
|
|
|
const LIMIT = 100;
|
|
|
|
const ORDER_NEWER = 'newer';
|
|
|
|
const ORDER_OLDER = 'older';
|
2013-01-25 02:23:05 +01:00
|
|
|
|
2013-04-26 19:30:41 +02:00
|
|
|
private $participantPHIDs;
|
|
|
|
private $participantCursor;
|
|
|
|
private $order = self::ORDER_OLDER;
|
2013-01-25 02:23:05 +01:00
|
|
|
|
|
|
|
public function withParticipantPHIDs(array $phids) {
|
|
|
|
$this->participantPHIDs = $phids;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2013-04-26 19:30:41 +02:00
|
|
|
public function withParticipantCursor(ConpherenceParticipant $participant) {
|
|
|
|
$this->participantCursor = $participant;
|
2013-01-25 02:23:05 +01:00
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2013-04-26 19:30:41 +02:00
|
|
|
public function setOrder($order) {
|
|
|
|
$this->order = $order;
|
2013-01-25 02:23:05 +01:00
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function execute() {
|
|
|
|
$table = new ConpherenceParticipant();
|
|
|
|
$conn_r = $table->establishConnection('r');
|
|
|
|
|
|
|
|
$data = queryfx_all(
|
|
|
|
$conn_r,
|
|
|
|
'SELECT * FROM %T participant %Q %Q %Q',
|
|
|
|
$table->getTableName(),
|
|
|
|
$this->buildWhereClause($conn_r),
|
|
|
|
$this->buildOrderClause($conn_r),
|
|
|
|
$this->buildLimitClause($conn_r));
|
|
|
|
|
|
|
|
$participants = $table->loadAllFromArray($data);
|
|
|
|
|
|
|
|
$participants = mpull($participants, null, 'getConpherencePHID');
|
|
|
|
|
2013-04-26 19:30:41 +02:00
|
|
|
if ($this->order == self::ORDER_NEWER) {
|
|
|
|
$participants = array_reverse($participants);
|
|
|
|
}
|
|
|
|
|
2013-01-25 02:23:05 +01:00
|
|
|
return $participants;
|
|
|
|
}
|
|
|
|
|
|
|
|
private function buildWhereClause($conn_r) {
|
|
|
|
$where = array();
|
|
|
|
|
|
|
|
if ($this->participantPHIDs) {
|
|
|
|
$where[] = qsprintf(
|
|
|
|
$conn_r,
|
|
|
|
'participantPHID IN (%Ls)',
|
|
|
|
$this->participantPHIDs);
|
|
|
|
}
|
|
|
|
|
2013-04-26 19:30:41 +02:00
|
|
|
if ($this->participantCursor) {
|
|
|
|
$date_touched = $this->participantCursor->getDateTouched();
|
|
|
|
$id = $this->participantCursor->getID();
|
|
|
|
if ($this->order == self::ORDER_OLDER) {
|
|
|
|
$compare_date = '<';
|
|
|
|
$compare_id = '<=';
|
|
|
|
} else {
|
|
|
|
$compare_date = '>';
|
|
|
|
$compare_id = '>=';
|
|
|
|
}
|
2013-01-25 02:23:05 +01:00
|
|
|
$where[] = qsprintf(
|
|
|
|
$conn_r,
|
2013-04-26 19:30:41 +02:00
|
|
|
'(dateTouched %Q %d OR (dateTouched = %d AND id %Q %d))',
|
|
|
|
$compare_date,
|
|
|
|
$date_touched,
|
|
|
|
$date_touched,
|
|
|
|
$compare_id,
|
|
|
|
$id);
|
2013-01-25 02:23:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return $this->formatWhereClause($where);
|
|
|
|
}
|
|
|
|
|
|
|
|
private function buildOrderClause(AphrontDatabaseConnection $conn_r) {
|
2013-04-26 19:30:41 +02:00
|
|
|
|
|
|
|
$order_word = ($this->order == self::ORDER_OLDER) ? 'DESC' : 'ASC';
|
|
|
|
// if these are different direction we won't get as efficient a query
|
|
|
|
// see http://dev.mysql.com/doc/refman/5.5/en/order-by-optimization.html
|
|
|
|
$order = qsprintf(
|
|
|
|
$conn_r,
|
|
|
|
'ORDER BY dateTouched %Q, id %Q',
|
|
|
|
$order_word,
|
|
|
|
$order_word);
|
|
|
|
|
|
|
|
return $order;
|
2013-01-25 02:23:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|