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\L10n;
|
|
|
|
use Friendica\Core\Renderer;
|
|
|
|
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()
|
|
|
|
{
|
|
|
|
if (!local_user()) {
|
2019-05-19 01:02:58 +00:00
|
|
|
$e = new HTTPException\ForbiddenException(L10n::t('Only logged in users are permitted to perform a probing.'));
|
|
|
|
$e->httpdesc = L10n::t('Public access denied.');
|
2019-05-18 19:05:13 +00:00
|
|
|
throw $e;
|
|
|
|
}
|
|
|
|
|
|
|
|
$addr = defaults($_GET, 'addr', '');
|
|
|
|
$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',
|
2019-05-19 01:02:58 +00:00
|
|
|
L10n::t('Lookup address'),
|
|
|
|
$addr,
|
|
|
|
'',
|
|
|
|
'required'
|
2019-05-18 19:05:13 +00:00
|
|
|
],
|
|
|
|
'$res' => $res,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|