Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15438346
D20455.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
4 KB
Referenced Files
None
Subscribers
None
D20455.diff
View Options
diff --git a/src/applications/meta/query/PhabricatorApplicationQuery.php b/src/applications/meta/query/PhabricatorApplicationQuery.php
--- a/src/applications/meta/query/PhabricatorApplicationQuery.php
+++ b/src/applications/meta/query/PhabricatorApplicationQuery.php
@@ -170,10 +170,4 @@
return null;
}
- protected function getResultCursor($object) {
- // TODO: This won't work, but doesn't matter until we write more than 100
- // applications. Since we only have about 70, just avoid fataling for now.
- return null;
- }
-
}
diff --git a/src/applications/notification/query/PhabricatorNotificationQuery.php b/src/applications/notification/query/PhabricatorNotificationQuery.php
--- a/src/applications/notification/query/PhabricatorNotificationQuery.php
+++ b/src/applications/notification/query/PhabricatorNotificationQuery.php
@@ -53,10 +53,10 @@
$data = queryfx_all(
$conn,
- 'SELECT story.*, notif.hasViewed FROM %R notif
- JOIN %R story ON notif.chronologicalKey = story.chronologicalKey
+ 'SELECT story.*, notification.hasViewed FROM %R notification
+ JOIN %R story ON notification.chronologicalKey = story.chronologicalKey
%Q
- ORDER BY notif.chronologicalKey DESC
+ ORDER BY notification.chronologicalKey DESC
%Q',
$notification_table,
$story_table,
@@ -82,21 +82,21 @@
if ($this->userPHIDs !== null) {
$where[] = qsprintf(
$conn,
- 'notif.userPHID IN (%Ls)',
+ 'notification.userPHID IN (%Ls)',
$this->userPHIDs);
}
if ($this->unread !== null) {
$where[] = qsprintf(
$conn,
- 'notif.hasViewed = %d',
+ 'notification.hasViewed = %d',
(int)!$this->unread);
}
if ($this->keys !== null) {
$where[] = qsprintf(
$conn,
- 'notif.chronologicalKey IN (%Ls)',
+ 'notification.chronologicalKey IN (%Ls)',
$this->keys);
}
@@ -113,8 +113,53 @@
return $stories;
}
- protected function getResultCursor($item) {
- return $item->getChronologicalKey();
+ protected function getDefaultOrderVector() {
+ return array('key');
+ }
+
+ public function getBuiltinOrders() {
+ return array(
+ 'newest' => array(
+ 'vector' => array('key'),
+ 'name' => pht('Creation (Newest First)'),
+ 'aliases' => array('created'),
+ ),
+ 'oldest' => array(
+ 'vector' => array('-key'),
+ 'name' => pht('Creation (Oldest First)'),
+ ),
+ );
+ }
+
+ public function getOrderableColumns() {
+ return array(
+ 'key' => array(
+ 'table' => 'notification',
+ 'column' => 'chronologicalKey',
+ 'type' => 'string',
+ 'unique' => true,
+ ),
+ );
+ }
+
+ protected function applyExternalCursorConstraintsToQuery(
+ PhabricatorCursorPagedPolicyAwareQuery $subquery,
+ $cursor) {
+ $subquery->withKeys(array($cursor));
+ }
+
+ protected function newExternalCursorStringForResult($object) {
+ return $object->getChronologicalKey();
+ }
+
+ protected function newPagingMapFromPartialObject($object) {
+ return array(
+ 'key' => $object->getChronologicalKey(),
+ );
+ }
+
+ protected function getPrimaryTableAlias() {
+ return 'notification';
}
public function getQueryApplicationClass() {
diff --git a/src/applications/notification/query/PhabricatorNotificationSearchEngine.php b/src/applications/notification/query/PhabricatorNotificationSearchEngine.php
--- a/src/applications/notification/query/PhabricatorNotificationSearchEngine.php
+++ b/src/applications/notification/query/PhabricatorNotificationSearchEngine.php
@@ -134,8 +134,4 @@
return $result;
}
- public function shouldUseOffsetPaging() {
- return true;
- }
-
}
diff --git a/src/applications/transactions/query/PhabricatorEditEngineQuery.php b/src/applications/transactions/query/PhabricatorEditEngineQuery.php
--- a/src/applications/transactions/query/PhabricatorEditEngineQuery.php
+++ b/src/applications/transactions/query/PhabricatorEditEngineQuery.php
@@ -46,8 +46,4 @@
return 'PhabricatorTransactionsApplication';
}
- protected function getResultCursor($object) {
- return null;
- }
-
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Mar 27, 12:15 AM (2 w, 1 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7692240
Default Alt Text
D20455.diff (4 KB)
Attached To
Mode
D20455: Fix an issue where internal paging of notifications could fail if some notifications are not visible
Attached
Detach File
Event Timeline
Log In to Comment