2019-05-18 15:05:13 -04:00
|
|
|
<?php
|
2020-02-09 09:45:36 -05:00
|
|
|
/**
|
2022-01-02 02:27:47 -05:00
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
2020-02-09 09:45:36 -05: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 15:05:13 -04:00
|
|
|
|
2019-05-18 21:02:58 -04:00
|
|
|
namespace Friendica\Module\Debug;
|
2019-05-18 15:05:13 -04:00
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
|
|
|
use Friendica\Core\Renderer;
|
2020-01-18 16:07:07 -05:00
|
|
|
use Friendica\DI;
|
2019-05-18 15:05:13 -04: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
|
|
|
|
{
|
2021-11-20 09:38:03 -05:00
|
|
|
protected function content(array $request = []): string
|
2019-05-18 15:05:13 -04:00
|
|
|
{
|
2022-10-20 16:59:12 -04:00
|
|
|
if (!DI::userSession()->getLocalUserId()) {
|
2021-10-31 00:54:24 -04:00
|
|
|
throw new HTTPException\ForbiddenException(DI::l10n()->t('Only logged in users are permitted to perform a probing.'));
|
2019-05-18 15:05:13 -04:00
|
|
|
}
|
|
|
|
|
2019-10-15 09:20:32 -04:00
|
|
|
$addr = $_GET['addr'] ?? '';
|
2019-05-18 15:05:13 -04:00
|
|
|
$res = '';
|
|
|
|
|
|
|
|
if (!empty($addr)) {
|
2021-08-24 11:32:27 -04:00
|
|
|
$addr = NetworkProbe::cleanURI($addr);
|
2020-08-06 14:53:45 -04:00
|
|
|
$res = NetworkProbe::uri($addr, '', 0);
|
2019-05-18 15:05:13 -04:00
|
|
|
$res = print_r($res, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
$tpl = Renderer::getMarkupTemplate('probe.tpl');
|
|
|
|
return Renderer::replaceMacros($tpl, [
|
2021-03-08 16:17:27 -05:00
|
|
|
'$title' => DI::l10n()->t('Probe Diagnostic'),
|
|
|
|
'$output' => DI::l10n()->t('Output'),
|
|
|
|
'$submit' => DI::l10n()->t('Submit'),
|
|
|
|
'$addr' => ['addr',
|
2020-01-18 14:52:34 -05:00
|
|
|
DI::l10n()->t('Lookup address'),
|
2019-05-18 21:02:58 -04:00
|
|
|
$addr,
|
|
|
|
'',
|
2020-12-19 22:41:42 -05:00
|
|
|
DI::l10n()->t('Required')
|
2019-05-18 15:05:13 -04:00
|
|
|
],
|
2021-03-08 16:17:27 -05:00
|
|
|
'$res' => $res,
|
2019-05-18 15:05:13 -04:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|