2011-08-12 09:58:29 +00:00
|
|
|
<?php
|
2018-01-22 14:16:25 +00:00
|
|
|
/**
|
|
|
|
* @file mod/probe.php
|
|
|
|
*/
|
2017-04-30 04:07:00 +00:00
|
|
|
use Friendica\App;
|
2018-01-22 14:16:25 +00:00
|
|
|
use Friendica\Core\L10n;
|
2018-01-27 16:59:10 +00:00
|
|
|
use Friendica\Core\System;
|
2017-05-23 19:38:47 +00:00
|
|
|
use Friendica\Network\Probe;
|
2011-08-12 09:58:29 +00:00
|
|
|
|
2018-01-22 14:16:25 +00:00
|
|
|
function probe_content(App $a)
|
|
|
|
{
|
2017-04-09 04:29:02 +00:00
|
|
|
if (!local_user()) {
|
2018-01-27 16:59:10 +00:00
|
|
|
System::httpExit(403, ["title" => L10n::t("Public access denied."),
|
2018-01-22 14:16:25 +00:00
|
|
|
"description" => L10n::t("Only logged in users are permitted to perform a probing.")]);
|
2018-12-26 05:40:12 +00:00
|
|
|
exit();
|
2017-04-09 04:29:02 +00:00
|
|
|
}
|
|
|
|
|
2018-12-17 22:15:14 +00:00
|
|
|
$o = '<div class="generic-page-wrapper">';
|
|
|
|
$o .= '<h3>Probe Diagnostic</h3>';
|
2011-08-12 09:58:29 +00:00
|
|
|
|
|
|
|
$o .= '<form action="probe" method="get">';
|
2018-08-10 19:39:43 +00:00
|
|
|
$o .= 'Lookup address: <input type="text" style="width: 250px;" name="addr" value="' . defaults($_GET, 'addr', '') . '" />';
|
2017-01-09 12:14:25 +00:00
|
|
|
$o .= '<input type="submit" name="submit" value="Submit" /></form>';
|
2011-08-12 09:58:29 +00:00
|
|
|
|
|
|
|
$o .= '<br /><br />';
|
|
|
|
|
2018-08-02 05:21:01 +00:00
|
|
|
if (!empty($_GET['addr'])) {
|
2011-08-12 09:58:29 +00:00
|
|
|
$addr = trim($_GET['addr']);
|
2017-05-23 19:38:47 +00:00
|
|
|
$res = Probe::uri($addr, "", 0, false);
|
2011-08-12 09:58:29 +00:00
|
|
|
$o .= '<pre>';
|
2017-04-30 04:01:26 +00:00
|
|
|
$o .= str_replace("\n", '<br />', print_r($res, true));
|
2011-08-12 09:58:29 +00:00
|
|
|
$o .= '</pre>';
|
|
|
|
}
|
2018-12-17 22:15:14 +00:00
|
|
|
$o .= '</div>';
|
2017-04-30 04:01:26 +00:00
|
|
|
|
2011-08-12 09:58:29 +00:00
|
|
|
return $o;
|
|
|
|
}
|