2019-03-01 09:50:31 +00:00
|
|
|
<?php
|
2020-02-09 14:45:36 +00:00
|
|
|
/**
|
2021-03-29 06:40:20 +00:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 14:45:36 +00:00
|
|
|
*
|
|
|
|
* @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/>.
|
|
|
|
*
|
|
|
|
*/
|
2019-03-01 09:50:31 +00:00
|
|
|
|
2019-05-19 01:02:58 +00:00
|
|
|
namespace Friendica\Module\Debug;
|
2019-03-01 09:50:31 +00:00
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
|
|
|
use Friendica\Core\Renderer;
|
2021-11-19 12:23:23 +00:00
|
|
|
use Friendica\DI;
|
2019-03-01 09:50:31 +00:00
|
|
|
use Friendica\Model;
|
|
|
|
use Friendica\Protocol;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Tests a given feed of a contact
|
|
|
|
*/
|
2019-05-18 19:05:13 +00:00
|
|
|
class Feed extends BaseModule
|
2019-03-01 09:50:31 +00:00
|
|
|
{
|
2021-11-19 12:23:23 +00:00
|
|
|
public function init()
|
2019-03-01 09:50:31 +00:00
|
|
|
{
|
|
|
|
if (!local_user()) {
|
2021-11-19 12:23:23 +00:00
|
|
|
notice(DI::l10n()->t('You must be logged in to use this module'));
|
|
|
|
DI::baseUrl()->redirect();
|
2019-03-01 09:50:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-14 22:13:47 +00:00
|
|
|
public function content(): string
|
2019-03-01 09:50:31 +00:00
|
|
|
{
|
|
|
|
$result = [];
|
|
|
|
if (!empty($_REQUEST['url'])) {
|
|
|
|
$url = $_REQUEST['url'];
|
|
|
|
|
2021-08-17 12:20:58 +00:00
|
|
|
$contact = Model\Contact::getByURLForUser($url, local_user(), null);
|
2019-03-01 09:50:31 +00:00
|
|
|
|
2021-11-19 12:23:23 +00:00
|
|
|
$xml = DI::httpClient()->fetch($contact['poll']);
|
2019-03-01 09:50:31 +00:00
|
|
|
|
2020-01-03 14:26:28 +00:00
|
|
|
$import_result = Protocol\Feed::import($xml);
|
2019-03-01 09:50:31 +00:00
|
|
|
|
|
|
|
$result = [
|
|
|
|
'input' => $xml,
|
|
|
|
'output' => var_export($import_result, true),
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
$tpl = Renderer::getMarkupTemplate('feedtest.tpl');
|
|
|
|
return Renderer::replaceMacros($tpl, [
|
2021-11-19 12:23:23 +00:00
|
|
|
'$url' => ['url', DI::l10n()->t('Source URL'), $_REQUEST['url'] ?? '', ''],
|
2019-03-01 09:50:31 +00:00
|
|
|
'$result' => $result
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|