mirror of
https://github.com/YunoHost-Apps/hubzilla_ynh.git
synced 2024-09-03 19:26:21 +02:00
32 lines
693 B
PHP
32 lines
693 B
PHP
|
<?php
|
||
|
|
||
|
|
||
|
|
||
|
function webfinger_content(&$a) {
|
||
|
|
||
|
$o .= '<h3>Webfinger Diagnostic</h3>';
|
||
|
|
||
|
$o .= '<form action="webfinger" method="get">';
|
||
|
$o .= 'Lookup address: <input type="text" style="width: 250px;" name="addr" value="' . $_GET['addr'] .'" />';
|
||
|
$o .= '<input type="submit" name="submit" value="Submit" /></form>';
|
||
|
|
||
|
$o .= '<br /><br />';
|
||
|
|
||
|
if(x($_GET,'addr')) {
|
||
|
$addr = trim($_GET['addr']);
|
||
|
if(strpos($addr,'@') !== false) {
|
||
|
$res = webfinger_rfc7033($addr);
|
||
|
if(! $res)
|
||
|
$res = old_webfinger($addr);
|
||
|
}
|
||
|
else {
|
||
|
if(function_exists('lrdd'))
|
||
|
$res = lrdd($addr);
|
||
|
}
|
||
|
$o .= '<pre>';
|
||
|
$o .= str_replace("\n",'<br />',print_r($res,true));
|
||
|
$o .= '</pre>';
|
||
|
}
|
||
|
return $o;
|
||
|
}
|