]> git.mxchange.org Git - friendica.git/blobdiff - src/Model/PushSubscriber.php
Remove "fcontact" from suggestions
[friendica.git] / src / Model / PushSubscriber.php
index 92d1dd21d1249a9bdbd103833aef0a2b61f1b710..f6839307249c67542e605e71389e26279828fc2a 100644 (file)
@@ -1,18 +1,36 @@
 <?php
 /**
- * @file src/Model/PushSubscriber.php
+ * @copyright Copyright (C) 2010-2021, the Friendica project
+ *
+ * @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\Model;
 
 use Friendica\Core\Logger;
 use Friendica\Core\Worker;
 use Friendica\Database\DBA;
 use Friendica\Util\DateTimeFormat;
+use Friendica\Util\Network;
 
 class PushSubscriber
 {
        /**
-        * @brief Send subscription notifications for the given user
+        * Send subscription notifications for the given user
         *
         * @param integer $uid User ID
         * @param int     $default_priority
@@ -27,7 +45,7 @@ class PushSubscriber
        }
 
        /**
-        * @brief start workers to transmit the feed data
+        * start workers to transmit the feed data
         *
         * @param int $default_priority
         * @throws \Friendica\Network\HTTPException\InternalServerErrorException
@@ -54,7 +72,7 @@ class PushSubscriber
        }
 
        /**
-        * @brief Renew the feed subscription
+        * Renew the feed subscription
         *
         * @param integer $uid          User ID
         * @param string  $nick         Priority for push workers
@@ -98,7 +116,7 @@ class PushSubscriber
        }
 
        /**
-        * @brief Delay the push subscriber
+        * Delay the push subscriber
         *
         * @param integer $id Subscriber ID
         * @throws \Exception
@@ -136,7 +154,7 @@ class PushSubscriber
        }
 
        /**
-        * @brief Reset the push subscriber
+        * Reset the push subscriber
         *
         * @param integer $id          Subscriber ID
         * @param string  $last_update Date of last transmitted item
@@ -153,5 +171,13 @@ class PushSubscriber
                $fields = ['push' => 0, 'next_try' => DBA::NULL_DATETIME, 'last_update' => $last_update];
                DBA::update('push_subscriber', $fields, ['id' => $id]);
                Logger::log('Subscriber ' . $subscriber['callback_url'] . ' for ' . $subscriber['nickname'] . ' is marked as vital', Logger::DEBUG);
+
+               $parts = parse_url($subscriber['callback_url']);
+               unset($parts['path']);
+               $server_url = Network::unparseURL($parts);
+               $gsid = GServer::getID($server_url, true);
+               if (!empty($gsid)) {
+                       GServer::setProtocol($gsid, Post\DeliveryData::OSTATUS);
+               }
        }
 }