]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/BaseNotifications.php
Merge pull request #8834 from MrPetovan/task/introduce-stable-branch
[friendica.git] / src / Module / BaseNotifications.php
index feec56aea3a68035fed59b6a3ac558dbbd0106e6..4715641c2f59233258c583eb76efea50de60d85e 100644 (file)
@@ -1,4 +1,23 @@
 <?php
+/**
+ * @copyright Copyright (C) 2020, Friendica
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
+ */
 
 namespace Friendica\Module;
 
@@ -8,8 +27,8 @@ use Friendica\Content\Pager;
 use Friendica\Core\Renderer;
 use Friendica\Core\System;
 use Friendica\DI;
-use Friendica\Model\Notify;
 use Friendica\Network\HTTPException\ForbiddenException;
+use Friendica\Object\Notification\Notification;
 
 /**
  * Base Module for each tab of the notification display
@@ -20,46 +39,48 @@ abstract class BaseNotifications extends BaseModule
 {
        /** @var array Array of URL parameters */
        const URL_TYPES = [
-               Notify::NETWORK  => 'network',
-               Notify::SYSTEM   => 'system',
-               Notify::HOME     => 'home',
-               Notify::PERSONAL => 'personal',
-               Notify::INTRO    => 'intros',
+               Notification::NETWORK  => 'network',
+               Notification::SYSTEM   => 'system',
+               Notification::HOME     => 'home',
+               Notification::PERSONAL => 'personal',
+               Notification::INTRO    => 'intros',
        ];
 
-       /** @var array Array of the allowed notifies and their printable name */
+       /** @var array Array of the allowed notifications and their printable name */
        const PRINT_TYPES = [
-               Notify::NETWORK  => 'Network',
-               Notify::SYSTEM   => 'System',
-               Notify::HOME     => 'Home',
-               Notify::PERSONAL => 'Personal',
-               Notify::INTRO    => 'Introductions',
+               Notification::NETWORK  => 'Network',
+               Notification::SYSTEM   => 'System',
+               Notification::HOME     => 'Home',
+               Notification::PERSONAL => 'Personal',
+               Notification::INTRO    => 'Introductions',
        ];
 
-       /** @var array The array of access keys for notify pages */
+       /** @var array The array of access keys for notification pages */
        const ACCESS_KEYS = [
-               Notify::NETWORK  => 'w',
-               Notify::SYSTEM   => 'y',
-               Notify::HOME     => 'h',
-               Notify::PERSONAL => 'r',
-               Notify::INTRO    => 'i',
+               Notification::NETWORK  => 'w',
+               Notification::SYSTEM   => 'y',
+               Notification::HOME     => 'h',
+               Notification::PERSONAL => 'r',
+               Notification::INTRO    => 'i',
        ];
 
        /** @var int The default count of items per page */
-       const PER_PAGE = 20;
+       const ITEMS_PER_PAGE = 20;
+       /** @var int The default limit of notifications per page */
+       const DEFAULT_PAGE_LIMIT = 80;
 
        /** @var boolean True, if ALL entries should get shown */
-       protected static $show;
+       protected static $showAll;
        /** @var int The determined start item of the current page */
-       protected static $start;
+       protected static $firstItemNum;
 
        /**
-        * Collects all notifies from the backend
+        * Collects all notifications from the backend
         *
         * @return array The determined notification array
-        *               ['header', 'notifs']
+        *               ['header', 'notifications']
         */
-       abstract public static function getNotifies();
+       abstract public static function getNotifications();
 
        public static function init(array $parameters = [])
        {
@@ -69,32 +90,8 @@ abstract class BaseNotifications extends BaseModule
 
                $page = ($_REQUEST['page'] ?? 0) ?: 1;
 
-               self::$start = ($page * self::PER_PAGE) - self::PER_PAGE;
-               self::$show  = ($_REQUEST['show'] ?? '') === 'all';
-       }
-
-       public static function post(array $parameters = [])
-       {
-               $request_id = DI::args()->get(1);
-
-               if ($request_id === 'all') {
-                       return;
-               }
-
-               if ($request_id) {
-                       $intro = DI::intro()->selectFirst(['id' => $request_id, 'uid' => local_user()]);
-
-                       switch ($_POST['submit']) {
-                               case DI::l10n()->t('Discard'):
-                                       $intro->discard();
-                                       break;
-                               case DI::l10n()->t('Ignore'):
-                                       $intro->ignore();
-                                       break;
-                       }
-
-                       DI::baseUrl()->redirect('notifications/intros');
-               }
+               self::$firstItemNum = ($page * self::ITEMS_PER_PAGE) - self::ITEMS_PER_PAGE;
+               self::$showAll      = ($_REQUEST['show'] ?? '') === 'all';
        }
 
        public static function rawContent(array $parameters = [])
@@ -104,37 +101,47 @@ abstract class BaseNotifications extends BaseModule
                        return;
                }
 
-               System::jsonExit(static::getNotifies()['notifs'] ?? []);
+               // Set the pager
+               $pager = new Pager(DI::l10n(), DI::args()->getQueryString(), self::ITEMS_PER_PAGE);
+
+               // Add additional informations (needed for json output)
+               $notifications = [
+                       'notifications' => static::getNotifications(),
+                       'items_page'    => $pager->getItemsPerPage(),
+                       'page'          => $pager->getPage(),
+               ];
+
+               System::jsonExit($notifications);
        }
 
        /**
         * Shows the printable result of notifications for a specific tab
         *
-        * @param string $notif_header    The notification header
-        * @param array  $notif_content   The array with the notifications
-        * @param string $notif_nocontent The string in case there are no notifications
-        * @param array  $notif_show_lnk  The possible links at the top
+        * @param string $header        The notification header
+        * @param array  $notifications The array with the notifications
+        * @param string $noContent     The string in case there are no notifications
+        * @param array  $showLink      The possible links at the top
         *
         * @return string The rendered output
         *
         * @throws \Friendica\Network\HTTPException\InternalServerErrorException
         */
-       protected static function printContent(string $notif_header, array $notif_content, string $notif_nocontent, array $notif_show_lnk)
+       protected static function printContent(string $header, array $notifications, string $noContent, array $showLink)
        {
                // Get the nav tabs for the notification pages
                $tabs = self::getTabs();
 
                // Set the pager
-               $pager = new Pager(DI::args()->getQueryString(), self::PER_PAGE);
+               $pager = new Pager(DI::l10n(), DI::args()->getQueryString(), self::ITEMS_PER_PAGE);
 
-               $notif_tpl = Renderer::getMarkupTemplate('notifications.tpl');
+               $notif_tpl = Renderer::getMarkupTemplate('notifications/notifications.tpl');
                return Renderer::replaceMacros($notif_tpl, [
-                       '$notif_header'    => $notif_header ?? DI::l10n()->t('Notifications'),
-                       '$tabs'            => $tabs,
-                       '$notif_content'   => $notif_content,
-                       '$notif_nocontent' => $notif_nocontent,
-                       '$notif_show_lnk'  => $notif_show_lnk,
-                       '$notif_paginate'  => $pager->renderMinimal(count($notif_content))
+                       '$header'        => $header ?? DI::l10n()->t('Notifications'),
+                       '$tabs'          => $tabs,
+                       '$notifications' => $notifications,
+                       '$noContent'     => $noContent,
+                       '$showLink'      => $showLink,
+                       '$paginate'      => $pager->renderMinimal(count($notifications))
                ]);
        }