mirror of
https://we.phorge.it/source/phorge.git
synced 2025-04-04 08:28:22 +02:00
Summary: Ref T4103. Ref T10078. This puts a user cache in front of notification and message counts. This reduces the number of queries issued on every page by 4 (2x building the menu, 2x building Quicksand data). Also fixes some minor issues: - Daemons could choke on sending mail in the user's translation. - No-op object updates could fail in the daemons. - Questionable data access pattern in the file query coming out of the profile file cache. Test Plan: - Sent myself notifications. Saw count go up. - Cleared them by visiting objects and clearing all notifications. Saw count go down. - Sent myself messages. Saw count go up. - Cleared them by visiting threads. Saw count go down. Reviewers: chad Reviewed By: chad Maniphest Tasks: T4103, T10078 Differential Revision: https://secure.phabricator.com/D16041
83 lines
2 KiB
PHP
83 lines
2 KiB
PHP
<?php
|
|
|
|
final class PhabricatorNotificationPanelController
|
|
extends PhabricatorNotificationController {
|
|
|
|
public function handleRequest(AphrontRequest $request) {
|
|
$viewer = $request->getViewer();
|
|
|
|
$query = id(new PhabricatorNotificationQuery())
|
|
->setViewer($viewer)
|
|
->withUserPHIDs(array($viewer->getPHID()))
|
|
->setLimit(15);
|
|
|
|
$stories = $query->execute();
|
|
|
|
$clear_ui_class = 'phabricator-notification-clear-all';
|
|
$clear_uri = id(new PhutilURI('/notification/clear/'));
|
|
if ($stories) {
|
|
$builder = id(new PhabricatorNotificationBuilder($stories))
|
|
->setUser($viewer);
|
|
|
|
$notifications_view = $builder->buildView();
|
|
$content = $notifications_view->render();
|
|
$clear_uri->setQueryParam(
|
|
'chronoKey',
|
|
head($stories)->getChronologicalKey());
|
|
} else {
|
|
$content = phutil_tag_div(
|
|
'phabricator-notification no-notifications',
|
|
pht('You have no notifications.'));
|
|
$clear_ui_class .= ' disabled';
|
|
}
|
|
$clear_ui = javelin_tag(
|
|
'a',
|
|
array(
|
|
'sigil' => 'workflow',
|
|
'href' => (string)$clear_uri,
|
|
'class' => $clear_ui_class,
|
|
),
|
|
pht('Mark All Read'));
|
|
|
|
$notifications_link = phutil_tag(
|
|
'a',
|
|
array(
|
|
'href' => '/notification/',
|
|
),
|
|
pht('Notifications'));
|
|
|
|
$connection_status = new PhabricatorNotificationStatusView();
|
|
|
|
$connection_ui = phutil_tag(
|
|
'div',
|
|
array(
|
|
'class' => 'phabricator-notification-footer',
|
|
),
|
|
$connection_status);
|
|
|
|
$header = phutil_tag(
|
|
'div',
|
|
array(
|
|
'class' => 'phabricator-notification-header',
|
|
),
|
|
array(
|
|
$notifications_link,
|
|
$clear_ui,
|
|
));
|
|
|
|
$content = hsprintf(
|
|
'%s%s%s',
|
|
$header,
|
|
$content,
|
|
$connection_ui);
|
|
|
|
$unread_count = $viewer->getUnreadNotificationCount();
|
|
|
|
$json = array(
|
|
'content' => $content,
|
|
'number' => (int)$unread_count,
|
|
);
|
|
|
|
return id(new AphrontAjaxResponse())->setContent($json);
|
|
}
|
|
}
|