2012-06-08 15:31:30 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright 2012 Facebook, Inc.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2012-06-28 22:59:50 +02:00
|
|
|
/**
|
|
|
|
* @task config Configuring the Query
|
|
|
|
* @task exec Query Execution
|
|
|
|
*/
|
2012-06-18 23:07:38 +02:00
|
|
|
final class PhabricatorNotificationQuery extends PhabricatorOffsetPagedQuery {
|
2012-06-08 15:31:30 +02:00
|
|
|
|
|
|
|
private $userPHID;
|
2012-06-18 23:08:10 +02:00
|
|
|
private $keys;
|
2012-06-28 22:59:50 +02:00
|
|
|
private $unread;
|
|
|
|
|
|
|
|
|
|
|
|
/* -( Configuring the Query )---------------------------------------------- */
|
|
|
|
|
2012-06-08 15:31:30 +02:00
|
|
|
|
|
|
|
public function setUserPHID($user_phid) {
|
|
|
|
$this->userPHID = $user_phid;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-06-18 23:08:10 +02:00
|
|
|
public function withKeys(array $keys) {
|
|
|
|
$this->keys = $keys;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-06-28 22:59:50 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Filter results by read/unread status. Note that `true` means to return
|
|
|
|
* only unread notifications, while `false` means to return only //read//
|
|
|
|
* notifications. The default is `null`, which returns both.
|
|
|
|
*
|
|
|
|
* @param mixed True or false to filter results by read status. Null to remove
|
|
|
|
* the filter.
|
|
|
|
* @return this
|
|
|
|
* @task config
|
|
|
|
*/
|
|
|
|
public function withUnread($unread) {
|
|
|
|
$this->unread = $unread;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* -( Query Execution )---------------------------------------------------- */
|
|
|
|
|
|
|
|
|
2012-06-08 15:31:30 +02:00
|
|
|
public function execute() {
|
|
|
|
if (!$this->userPHID) {
|
|
|
|
throw new Exception("Call setUser() before executing the query");
|
|
|
|
}
|
|
|
|
|
|
|
|
$story_table = new PhabricatorFeedStoryData();
|
|
|
|
$notification_table = new PhabricatorFeedStoryNotification();
|
|
|
|
|
|
|
|
$conn = $story_table->establishConnection('r');
|
|
|
|
|
|
|
|
$data = queryfx_all(
|
|
|
|
$conn,
|
2012-06-18 23:08:10 +02:00
|
|
|
"SELECT story.*, notif.primaryObjectPHID, notif.hasViewed FROM %T notif
|
2012-06-08 15:31:30 +02:00
|
|
|
JOIN %T story ON notif.chronologicalKey = story.chronologicalKey
|
2012-06-18 23:08:10 +02:00
|
|
|
%Q
|
2012-06-18 23:07:38 +02:00
|
|
|
ORDER BY notif.chronologicalKey DESC
|
|
|
|
%Q",
|
2012-06-08 15:31:30 +02:00
|
|
|
$notification_table->getTableName(),
|
|
|
|
$story_table->getTableName(),
|
2012-06-18 23:08:10 +02:00
|
|
|
$this->buildWhereClause($conn),
|
2012-06-18 23:07:38 +02:00
|
|
|
$this->buildLimitClause($conn));
|
2012-06-08 15:31:30 +02:00
|
|
|
|
|
|
|
$viewed_map = ipull($data, 'hasViewed', 'chronologicalKey');
|
2012-06-18 23:08:10 +02:00
|
|
|
$primary_map = ipull($data, 'primaryObjectPHID', 'chronologicalKey');
|
|
|
|
|
2012-07-02 19:37:22 +02:00
|
|
|
$stories = PhabricatorFeedStory::loadAllFromRows($data);
|
|
|
|
foreach ($stories as $key => $story) {
|
|
|
|
$story->setHasViewed($viewed_map[$key]);
|
|
|
|
$story->setPrimaryObjectPHID($primary_map[$key]);
|
2012-06-08 15:31:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return $stories;
|
|
|
|
}
|
2012-06-18 23:08:10 +02:00
|
|
|
|
|
|
|
private function buildWhereClause(AphrontDatabaseConnection $conn_r) {
|
|
|
|
$where = array();
|
|
|
|
|
|
|
|
if ($this->userPHID) {
|
|
|
|
$where[] = qsprintf(
|
|
|
|
$conn_r,
|
|
|
|
'notif.userPHID = %s',
|
|
|
|
$this->userPHID);
|
|
|
|
}
|
|
|
|
|
2012-06-28 22:59:50 +02:00
|
|
|
if ($this->unread !== null) {
|
|
|
|
$where[] = qsprintf(
|
|
|
|
$conn_r,
|
|
|
|
'notif.hasViewed = %d',
|
|
|
|
(int)!$this->unread);
|
|
|
|
}
|
|
|
|
|
2012-06-18 23:08:10 +02:00
|
|
|
if ($this->keys) {
|
|
|
|
$where[] = qsprintf(
|
|
|
|
$conn_r,
|
|
|
|
'notif.chronologicalKey IN (%Ls)',
|
|
|
|
$this->keys);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->formatWhereClause($where);
|
|
|
|
}
|
|
|
|
|
2012-06-08 15:31:30 +02:00
|
|
|
}
|