]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Notifications/Notify.php
Merge pull request #8019 from nupplaphil/task/replace_getClass
[friendica.git] / src / Module / Notifications / Notify.php
index 4998a0adbe47f768394ed6f1ee510cc38163b335..bb52ce8124faca9315019bd0f0720cfa4678889d 100644 (file)
@@ -5,7 +5,7 @@ namespace Friendica\Module\Notifications;
 use Friendica\BaseModule;
 use Friendica\Core\L10n;
 use Friendica\Core\System;
-use Friendica\Model\Notify as ModelNotify;
+use Friendica\DI;
 use Friendica\Network\HTTPException;
 
 /**
@@ -13,21 +13,20 @@ use Friendica\Network\HTTPException;
  */
 class Notify extends BaseModule
 {
-       public static function init()
+       public static function init(array $parameters = [])
        {
                if (!local_user()) {
                        throw new HTTPException\UnauthorizedException(L10n::t('Permission denied.'));
                }
        }
 
-       public static function rawContent()
+       public static function rawContent(array $parameters = [])
        {
-               $a = self::getApp();
+               $a = DI::app();
 
                // @TODO: Replace with parameter from router
                if ($a->argc > 2 && $a->argv[1] === 'mark' && $a->argv[2] === 'all') {
-                       $notificationsManager = new ModelNotify();
-                       $success              = $notificationsManager->setAllSeen();
+                       $success              = DI::notify()->setAllSeen();
 
                        header('Content-type: application/json; charset=utf-8');
                        echo json_encode([
@@ -43,13 +42,13 @@ class Notify extends BaseModule
         * @return string|void
         * @throws HTTPException\InternalServerErrorException
         */
-       public static function content()
+       public static function content(array $parameters = [])
        {
-               $a = self::getApp();
+               $a = DI::app();
 
                // @TODO: Replace with parameter from router
                if ($a->argc > 2 && $a->argv[1] === 'view' && intval($a->argv[2])) {
-                       $notificationsManager = new ModelNotify();
+                       $notificationsManager = DI::notify();
                        // @TODO: Replace with parameter from router
                        $note = $notificationsManager->getByID($a->argv[2]);
                        if (!empty($note)) {
@@ -59,10 +58,10 @@ class Notify extends BaseModule
                                }
                        }
 
-                       $a->internalRedirect();
+                       DI::baseUrl()->redirect();
                }
 
                // @TODO: Replace with parameter from router
-               $a->internalRedirect('notifications/system');
+               DI::baseUrl()->redirect('notifications/system');
        }
 }