Friendica Communications Platform
(please note that this is a clone of the repository at github, issues are handled there)
https://friendi.ca
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
594 B
26 lines
594 B
<?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($addr); |
|
else |
|
$res = lrdd($addr); |
|
$o .= '<pre>'; |
|
$o .= str_replace("\n",'<br />',print_r($res,true)); |
|
$o .= '</pre>'; |
|
} |
|
return $o; |
|
}
|
|
|