mirror of
https://github.com/friendica/friendica
synced 2025-02-08 02:58:50 +00:00
68 lines
2 KiB
PHP
68 lines
2 KiB
PHP
<?php
|
|
|
|
// Copyright (C) 2010-2024, the Friendica project
|
|
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
namespace Friendica\Module\Debug;
|
|
|
|
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\HttpClientAccept;
|
|
use Friendica\Network\HTTPClient\Client\HttpClientRequest;
|
|
use Friendica\Protocol;
|
|
use Friendica\Util\Profiler;
|
|
use Psr\Log\LoggerInterface;
|
|
|
|
/**
|
|
* Tests a given feed of a contact
|
|
*/
|
|
class Feed extends BaseModule
|
|
{
|
|
/** @var ICanSendHttpRequests */
|
|
protected $httpClient;
|
|
|
|
public function __construct(L10n $l10n, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, Response $response, ICanSendHttpRequests $httpClient, array $server, array $parameters = [])
|
|
{
|
|
parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
|
|
|
|
$this->httpClient = $httpClient;
|
|
|
|
if (!DI::userSession()->getLocalUserId()) {
|
|
DI::sysmsg()->addNotice($this->t('You must be logged in to use this module'));
|
|
$baseUrl->redirect();
|
|
}
|
|
}
|
|
|
|
protected function content(array $request = []): string
|
|
{
|
|
$result = [];
|
|
if (!empty($_REQUEST['url'])) {
|
|
$url = $_REQUEST['url'];
|
|
|
|
$contact = Model\Contact::getByURLForUser($url, DI::userSession()->getLocalUserId(), null);
|
|
|
|
$xml = $this->httpClient->fetch($contact['poll'], HttpClientAccept::FEED_XML, 0, '', HttpClientRequest::FEEDFETCHER);
|
|
|
|
$import_result = Protocol\Feed::import($xml);
|
|
|
|
$result = [
|
|
'input' => $xml,
|
|
'output' => var_export($import_result, true),
|
|
];
|
|
}
|
|
|
|
$tpl = Renderer::getMarkupTemplate('feedtest.tpl');
|
|
return Renderer::replaceMacros($tpl, [
|
|
'$url' => ['url', $this->t('Source URL'), $_REQUEST['url'] ?? '', ''],
|
|
'$result' => $result
|
|
]);
|
|
}
|
|
}
|