]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Debug/Feed.php
Retrieve contact records for the page visitor in Profile\Common module
[friendica.git] / src / Module / Debug / Feed.php
index cd80453dd35f6dc4e936d2c1123932ab295d21f5..435245490e837540bb7f19b5d299dee5fdf8bb54 100644 (file)
@@ -25,10 +25,11 @@ 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;
-use Friendica\Network\HTTPClient\Client\HttpClient;
+use Friendica\Network\HTTPClient\Client\HttpClientAccept;
 use Friendica\Protocol;
 use Friendica\Util\Profiler;
 use Psr\Log\LoggerInterface;
@@ -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, HttpClient::ACCEPT_FEED_XML);
+                       $xml = $this->httpClient->fetch($contact['poll'], HttpClientAccept::FEED_XML);
 
                        $import_result = Protocol\Feed::import($xml);