]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/BaseNotifications.php
Issue 11566: More detailled notification configuration
[friendica.git] / src / Module / BaseNotifications.php
index 0e39eb651df33cf6a6e36e66e04bddc26c826110..1190e046dfb6ea8742db87fa4a1a4fd258adae1d 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2021, the Friendica project
+ * @copyright Copyright (C) 2010-2022, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
 namespace Friendica\Module;
 
 use Exception;
+use Friendica\App;
 use Friendica\App\Arguments;
 use Friendica\BaseModule;
 use Friendica\Content\Pager;
 use Friendica\Core\L10n;
 use Friendica\Core\Renderer;
 use Friendica\Core\System;
-use Friendica\Navigation\Notifications\ValueObject\FormattedNotification;
+use Friendica\Navigation\Notifications\ValueObject\FormattedNotify;
 use Friendica\Network\HTTPException\ForbiddenException;
+use Friendica\Util\Profiler;
+use Psr\Log\LoggerInterface;
 
 /**
  * Base Module for each tab of the notification display
@@ -40,29 +43,29 @@ abstract class BaseNotifications extends BaseModule
 {
        /** @var array Array of URL parameters */
        const URL_TYPES = [
-               FormattedNotification::NETWORK  => 'network',
-               FormattedNotification::SYSTEM   => 'system',
-               FormattedNotification::HOME     => 'home',
-               FormattedNotification::PERSONAL => 'personal',
-               FormattedNotification::INTRO    => 'intros',
+               FormattedNotify::NETWORK  => 'network',
+               FormattedNotify::SYSTEM   => 'system',
+               FormattedNotify::HOME     => 'home',
+               FormattedNotify::PERSONAL => 'personal',
+               FormattedNotify::INTRO    => 'intros',
        ];
 
        /** @var array Array of the allowed notifications and their printable name */
        const PRINT_TYPES = [
-               FormattedNotification::NETWORK  => 'Network',
-               FormattedNotification::SYSTEM   => 'System',
-               FormattedNotification::HOME     => 'Home',
-               FormattedNotification::PERSONAL => 'Personal',
-               FormattedNotification::INTRO    => 'Introductions',
+               FormattedNotify::NETWORK  => 'Network',
+               FormattedNotify::SYSTEM   => 'System',
+               FormattedNotify::HOME     => 'Home',
+               FormattedNotify::PERSONAL => 'Personal',
+               FormattedNotify::INTRO    => 'Introductions',
        ];
 
        /** @var array The array of access keys for notification pages */
        const ACCESS_KEYS = [
-               FormattedNotification::NETWORK  => 'w',
-               FormattedNotification::SYSTEM   => 'y',
-               FormattedNotification::HOME     => 'h',
-               FormattedNotification::PERSONAL => 'r',
-               FormattedNotification::INTRO    => 'i',
+               FormattedNotify::NETWORK  => 'w',
+               FormattedNotify::SYSTEM   => 'y',
+               FormattedNotify::HOME     => 'h',
+               FormattedNotify::PERSONAL => 'r',
+               FormattedNotify::INTRO    => 'i',
        ];
 
        /** @var int The default count of items per page */
@@ -86,9 +89,9 @@ abstract class BaseNotifications extends BaseModule
         */
        abstract public function getNotifications();
 
-       public function __construct(Arguments $args, L10n $l10n, array $parameters = [])
+       public function __construct(L10n $l10n, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, Response $response, array $server, array $parameters = [])
        {
-               parent::__construct($l10n, $parameters);
+               parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
 
                if (!local_user()) {
                        throw new ForbiddenException($this->t('Permission denied.'));
@@ -98,11 +101,9 @@ abstract class BaseNotifications extends BaseModule
 
                $this->firstItemNum = ($page * self::ITEMS_PER_PAGE) - self::ITEMS_PER_PAGE;
                $this->showAll      = ($_REQUEST['show'] ?? '') === 'all';
-
-               $this->args = $args;
        }
 
-       public function rawContent()
+       protected function rawContent(array $request = [])
        {
                // If the last argument of the query is NOT json, return
                if ($this->args->get($this->args->getArgc() - 1) !== 'json') {