]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Debug/Feed.php
Merge pull request #8265 from nupplaphil/task/add_license
[friendica.git] / src / Module / Debug / Feed.php
index 1583b3c88279b625cc7de8d018370d917bff1341..4f17b70e682679db692861abc65739539814df03 100644 (file)
@@ -1,10 +1,29 @@
 <?php
+/**
+ * @copyright Copyright (C) 2020, Friendica
+ *
+ * @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\Module\Debug;
 
 use Friendica\BaseModule;
-use Friendica\Core\L10n;
 use Friendica\Core\Renderer;
+use Friendica\DI;
 use Friendica\Model;
 use Friendica\Protocol;
 use Friendica\Util\Network;
@@ -14,29 +33,26 @@ use Friendica\Util\Network;
  */
 class Feed extends BaseModule
 {
-       public static function init($parameters)
+       public static function init(array $parameters = [])
        {
                if (!local_user()) {
-                       info(L10n::t('You must be logged in to use this module'));
-                       self::getApp()->internalRedirect();
+                       info(DI::l10n()->t('You must be logged in to use this module'));
+                       DI::baseUrl()->redirect();
                }
        }
 
-       public static function content($parameters)
+       public static function content(array $parameters = [])
        {
                $result = [];
                if (!empty($_REQUEST['url'])) {
                        $url = $_REQUEST['url'];
 
-                       $importer = Model\User::getById(local_user());
-
                        $contact_id = Model\Contact::getIdForURL($url, local_user(), true);
                        $contact = Model\Contact::getById($contact_id);
 
                        $xml = Network::fetchUrl($contact['poll']);
 
-                       $dummy = null;
-                       $import_result = Protocol\Feed::import($xml, $importer, $contact, $dummy, true);
+                       $import_result = Protocol\Feed::import($xml);
 
                        $result = [
                                'input' => $xml,
@@ -46,7 +62,7 @@ class Feed extends BaseModule
 
                $tpl = Renderer::getMarkupTemplate('feedtest.tpl');
                return Renderer::replaceMacros($tpl, [
-                       '$url'    => ['url', L10n::t('Source URL'), $_REQUEST['url'] ?? '', ''],
+                       '$url'    => ['url', DI::l10n()->t('Source URL'), $_REQUEST['url'] ?? '', ''],
                        '$result' => $result
                ]);
        }