]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Debug/Feed.php
Merge branch 'develop' into blocks-and-mutes-fixes
[friendica.git] / src / Module / Debug / Feed.php
index 766f2131462b36282b9c452a8fd538b05e37c59f..2bb84250a4901e8ca2fc59c12d3f4e9f2dfbfa41 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\App;
 use Friendica\BaseModule;
 use Friendica\Core\L10n;
 use Friendica\Core\Renderer;
+use Friendica\DI;
 use Friendica\Model;
 use Friendica\Module\Response;
 use Friendica\Network\HTTPClient\Capability\ICanSendHttpRequests;
@@ -47,8 +48,8 @@ class Feed extends BaseModule
 
                $this->httpClient = $httpClient;
 
-               if (!local_user()) {
-                       notice($this->t('You must be logged in to use this module'));
+               if (!DI::userSession()->getLocalUserId()) {
+                       DI::sysmsg()->addNotice($this->t('You must be logged in to use this module'));
                        $baseUrl->redirect();
                }
        }
@@ -59,9 +60,9 @@ class Feed extends BaseModule
                if (!empty($_REQUEST['url'])) {
                        $url = $_REQUEST['url'];
 
-                       $contact = Model\Contact::getByURLForUser($url, local_user(), null);
+                       $contact = Model\Contact::getByURLForUser($url, DI::userSession()->getLocalUserId(), null);
 
-                       $xml = $this->httpClient->fetch($contact['poll'], 0, HttpClientAccept::FEED_XML);
+                       $xml = $this->httpClient->fetch($contact['poll'], HttpClientAccept::FEED_XML);
 
                        $import_result = Protocol\Feed::import($xml);