friendica/src/Module/Debug/Probe.php

67 lines
1.9 KiB
PHP
Raw Normal View History

2019-05-18 21:05:13 +02:00
<?php
2020-02-09 15:45:36 +01:00
/**
2021-03-29 08:40:20 +02:00
* @copyright Copyright (C) 2010-2021, the Friendica project
2020-02-09 15:45:36 +01: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-05-18 21:05:13 +02:00
namespace Friendica\Module\Debug;
2019-05-18 21:05:13 +02:00
use Friendica\BaseModule;
use Friendica\Core\Renderer;
2020-01-18 22:07:07 +01:00
use Friendica\DI;
2019-05-18 21:05:13 +02:00
use Friendica\Network\HTTPException;
use Friendica\Network\Probe as NetworkProbe;
/**
* Fetch information (protocol endpoints and user information) about a given uri
*/
class Probe extends BaseModule
{
public static function content(array $parameters = [])
2019-05-18 21:05:13 +02:00
{
if (!local_user()) {
$e = new HTTPException\ForbiddenException(DI::l10n()->t('Only logged in users are permitted to perform a probing.'));
$e->httpdesc = DI::l10n()->t('Public access denied.');
2019-05-18 21:05:13 +02:00
throw $e;
}
$addr = $_GET['addr'] ?? '';
2019-05-18 21:05:13 +02:00
$res = '';
if (!empty($addr)) {
$addr = NetworkProbe::cleanURI($addr);
2020-08-06 20:53:45 +02:00
$res = NetworkProbe::uri($addr, '', 0);
2019-05-18 21:05:13 +02:00
$res = print_r($res, true);
}
$tpl = Renderer::getMarkupTemplate('probe.tpl');
return Renderer::replaceMacros($tpl, [
2021-03-08 22:17:27 +01:00
'$title' => DI::l10n()->t('Probe Diagnostic'),
'$output' => DI::l10n()->t('Output'),
'$submit' => DI::l10n()->t('Submit'),
'$addr' => ['addr',
DI::l10n()->t('Lookup address'),
$addr,
'',
DI::l10n()->t('Required')
2019-05-18 21:05:13 +02:00
],
2021-03-08 22:17:27 +01:00
'$res' => $res,
2019-05-18 21:05:13 +02:00
]);
}
}