3 namespace Friendica\Module;
6 use Friendica\BaseModule;
7 use Friendica\Content\Pager;
8 use Friendica\Core\Renderer;
9 use Friendica\Core\System;
11 use Friendica\Network\HTTPException\ForbiddenException;
12 use Friendica\Object\Notification\Notification;
15 * Base Module for each tab of the notification display
17 * General possibility to print it as JSON as well
19 abstract class BaseNotifications extends BaseModule
21 /** @var array Array of URL parameters */
23 Notification::NETWORK => 'network',
24 Notification::SYSTEM => 'system',
25 Notification::HOME => 'home',
26 Notification::PERSONAL => 'personal',
27 Notification::INTRO => 'intros',
30 /** @var array Array of the allowed notifications and their printable name */
32 Notification::NETWORK => 'Network',
33 Notification::SYSTEM => 'System',
34 Notification::HOME => 'Home',
35 Notification::PERSONAL => 'Personal',
36 Notification::INTRO => 'Introductions',
39 /** @var array The array of access keys for notification pages */
41 Notification::NETWORK => 'w',
42 Notification::SYSTEM => 'y',
43 Notification::HOME => 'h',
44 Notification::PERSONAL => 'r',
45 Notification::INTRO => 'i',
48 /** @var int The default count of items per page */
49 const ITEMS_PER_PAGE = 20;
50 /** @var int The default limit of notifications per page */
51 const DEFAULT_PAGE_LIMIT = 80;
53 /** @var boolean True, if ALL entries should get shown */
54 protected static $showAll;
55 /** @var int The determined start item of the current page */
56 protected static $firstItemNum;
59 * Collects all notifications from the backend
61 * @return array The determined notification array
62 * ['header', 'notifications']
64 abstract public static function getNotifications();
66 public static function init(array $parameters = [])
69 throw new ForbiddenException(DI::l10n()->t('Permission denied.'));
72 $page = ($_REQUEST['page'] ?? 0) ?: 1;
74 self::$firstItemNum = ($page * self::ITEMS_PER_PAGE) - self::ITEMS_PER_PAGE;
75 self::$showAll = ($_REQUEST['show'] ?? '') === 'all';
78 public static function post(array $parameters = [])
80 $request_id = DI::args()->get(1);
82 if ($request_id === 'all') {
87 $intro = DI::intro()->selectFirst(['id' => $request_id, 'uid' => local_user()]);
89 switch ($_POST['submit']) {
90 case DI::l10n()->t('Discard'):
93 case DI::l10n()->t('Ignore'):
98 DI::baseUrl()->redirect('notifications/intros');
102 public static function rawContent(array $parameters = [])
104 // If the last argument of the query is NOT json, return
105 if (DI::args()->get(DI::args()->getArgc() - 1) !== 'json') {
110 $pager = new Pager(DI::args()->getQueryString(), self::ITEMS_PER_PAGE);
112 // Add additional informations (needed for json output)
114 'notifications' => static::getNotifications(),
115 'items_page' => $pager->getItemsPerPage(),
116 'page' => $pager->getPage(),
119 System::jsonExit($notifications);
123 * Shows the printable result of notifications for a specific tab
125 * @param string $header The notification header
126 * @param array $notifications The array with the notifications
127 * @param string $noContent The string in case there are no notifications
128 * @param array $showLink The possible links at the top
130 * @return string The rendered output
132 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
134 protected static function printContent(string $header, array $notifications, string $noContent, array $showLink)
136 // Get the nav tabs for the notification pages
137 $tabs = self::getTabs();
140 $pager = new Pager(DI::args()->getQueryString(), self::ITEMS_PER_PAGE);
142 $notif_tpl = Renderer::getMarkupTemplate('notifications/notifications.tpl');
143 return Renderer::replaceMacros($notif_tpl, [
144 '$header' => $header ?? DI::l10n()->t('Notifications'),
146 '$notifications' => $notifications,
147 '$noContent' => $noContent,
148 '$showLink' => $showLink,
149 '$paginate' => $pager->renderMinimal(count($notifications))
154 * List of pages for the Notifications TabBar
156 * @return array with with notifications TabBar data
159 private static function getTabs()
161 $selected = DI::args()->get(1, '');
165 foreach (self::URL_TYPES as $type => $url) {
167 'label' => DI::l10n()->t(self::PRINT_TYPES[$type]),
168 'url' => 'notifications/' . $url,
169 'sel' => (($selected == $url) ? 'active' : ''),
170 'id' => $type . '-tab',
171 'accesskey' => self::ACCESS_KEYS[$type],