]> git.mxchange.org Git - friendica.git/blob - src/Module/Debug/Feed.php
Issue 9743: Added translatable texts
[friendica.git] / src / Module / Debug / Feed.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2020, Friendica
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Module\Debug;
23
24 use Friendica\BaseModule;
25 use Friendica\Core\Renderer;
26 use Friendica\DI;
27 use Friendica\Model;
28 use Friendica\Protocol;
29
30 /**
31  * Tests a given feed of a contact
32  */
33 class Feed extends BaseModule
34 {
35         public static function init(array $parameters = [])
36         {
37                 if (!local_user()) {
38                         notice(DI::l10n()->t('You must be logged in to use this module'));
39                         DI::baseUrl()->redirect();
40                 }
41         }
42
43         public static function content(array $parameters = [])
44         {
45                 $result = [];
46                 if (!empty($_REQUEST['url'])) {
47                         $url = $_REQUEST['url'];
48
49                         $contact = Model\Contact::getByURLForUser($url, local_user(), false);
50
51                         $xml = DI::httpRequest()->fetch($contact['poll']);
52
53                         $import_result = Protocol\Feed::import($xml);
54
55                         $result = [
56                                 'input' => $xml,
57                                 'output' => var_export($import_result, true),
58                         ];
59                 }
60
61                 $tpl = Renderer::getMarkupTemplate('feedtest.tpl');
62                 return Renderer::replaceMacros($tpl, [
63                         '$url'    => ['url', DI::l10n()->t('Source URL'), $_REQUEST['url'] ?? '', ''],
64                         '$result' => $result
65                 ]);
66         }
67 }