2019-05-18 19:05:13 +00:00
|
|
|
<?php
|
|
|
|
|
2019-05-19 01:02:58 +00:00
|
|
|
namespace Friendica\Module\Debug;
|
2019-05-18 19:05:13 +00:00
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
|
|
|
use Friendica\Core\Renderer;
|
2020-01-18 21:07:07 +00:00
|
|
|
use Friendica\DI;
|
2019-05-18 19:05:13 +00: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
|
|
|
|
{
|
2019-11-05 21:48:54 +00:00
|
|
|
public static function content(array $parameters = [])
|
2019-05-18 19:05:13 +00:00
|
|
|
{
|
|
|
|
if (!local_user()) {
|
2020-01-18 19:52:34 +00:00
|
|
|
$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 19:05:13 +00:00
|
|
|
throw $e;
|
|
|
|
}
|
|
|
|
|
2019-10-15 13:20:32 +00:00
|
|
|
$addr = $_GET['addr'] ?? '';
|
2019-05-18 19:05:13 +00:00
|
|
|
$res = '';
|
|
|
|
|
|
|
|
if (!empty($addr)) {
|
|
|
|
$res = NetworkProbe::uri($addr, '', 0, false);
|
|
|
|
$res = print_r($res, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
$tpl = Renderer::getMarkupTemplate('probe.tpl');
|
|
|
|
return Renderer::replaceMacros($tpl, [
|
|
|
|
'$addr' => ['addr',
|
2020-01-18 19:52:34 +00:00
|
|
|
DI::l10n()->t('Lookup address'),
|
2019-05-19 01:02:58 +00:00
|
|
|
$addr,
|
|
|
|
'',
|
|
|
|
'required'
|
2019-05-18 19:05:13 +00:00
|
|
|
],
|
|
|
|
'$res' => $res,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|