]> git.mxchange.org Git - friendica.git/blobdiff - src/Model/Subscription.php
spelling: resource
[friendica.git] / src / Model / Subscription.php
index e5305378e35945f8148efd160ae659b81d49ec44..10a2d9b4d10d1af6b9b0e051b2c5a4db7c6b4e06 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2022, the Friendica project
+ * @copyright Copyright (C) 2010-2023, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -25,6 +25,7 @@ use Friendica\Core\Logger;
 use Friendica\Core\Worker;
 use Friendica\Database\DBA;
 use Friendica\DI;
+use Friendica\Factory\Api\Mastodon\Notification as NotificationFactory;
 use Friendica\Navigation\Notifications\Entity;
 use Friendica\Object\Api\Mastodon\Notification;
 use Minishlink\WebPush\VAPID;
@@ -133,14 +134,14 @@ class Subscription
        /**
         * Prepare push notification
         *
-        * @param Notification $Notification Notification instance
+        * @param Notification $Notification
         * @return void
         */
        public static function pushByNotification(Entity\Notification $notification)
        {
-               $type = \Friendica\Factory\Api\Mastodon\Notification::getType($notification);
+               $type = NotificationFactory::getType($notification);
 
-               if (DI::notify()->NotifyOnDesktop($notification, $type)) {
+               if (DI::notify()->shouldShowOnDesktop($notification, $type)) {
                        DI::notify()->createFromNotification($notification);
                }
 
@@ -151,7 +152,7 @@ class Subscription
                $subscriptions = DBA::select('subscription', [], ['uid' => $notification->uid, $type => true]);
                while ($subscription = DBA::fetch($subscriptions)) {
                        Logger::info('Push notification', ['id' => $subscription['id'], 'uid' => $subscription['uid'], 'type' => $type]);
-                       Worker::add(PRIORITY_HIGH, 'PushSubscription', $subscription['id'], $notification->id);
+                       Worker::add(Worker::PRIORITY_HIGH, 'PushSubscription', $subscription['id'], $notification->id);
                }
                DBA::close($subscriptions);
        }