friendica/mod/webfinger.php

40 lines
903 B
PHP
Raw Normal View History

2011-05-27 01:41:36 +02:00
<?php
2018-01-22 15:16:25 +01:00
/**
* @file mod/webfinger.php
*/
use Friendica\App;
2018-01-22 15:16:25 +01:00
use Friendica\Core\L10n;
use Friendica\Core\System;
2017-05-07 20:44:30 +02:00
use Friendica\Network\Probe;
2018-01-22 15:16:25 +01:00
function webfinger_content(App $a)
{
if (!local_user()) {
System::httpExit(
2018-01-22 15:16:25 +01:00
403,
[
"title" => L10n::t("Public access denied."),
"description" => L10n::t("Only logged in users are permitted to perform a probing.")
]
);
killme();
}
$o = '<h3>Webfinger Diagnostic</h3>';
2011-05-27 01:41:36 +02:00
$o .= '<form action="webfinger" method="get">';
2018-09-11 06:10:11 +02:00
$o .= 'Lookup address: <input type="text" style="width: 250px;" name="addr" value="' . defaults($_GET, 'addr', '') .'" />';
2016-07-09 20:09:09 +02:00
$o .= '<input type="submit" name="submit" value="Submit" /></form>';
2011-05-27 01:41:36 +02:00
$o .= '<br /><br />';
2018-01-22 15:16:25 +01:00
if (x($_GET, 'addr')) {
2011-06-28 04:47:55 +02:00
$addr = trim($_GET['addr']);
2016-07-09 20:09:09 +02:00
$res = Probe::lrdd($addr);
2011-06-28 03:13:44 +02:00
$o .= '<pre>';
2018-01-22 15:16:25 +01:00
$o .= str_replace("\n", '<br />', print_r($res, true));
2011-06-28 03:13:44 +02:00
$o .= '</pre>';
2011-05-27 01:41:36 +02:00
}
return $o;
}