friendica/mod/webfinger.php

27 lines
594 B
PHP
Raw Normal View History

2011-05-27 01:41:36 +02:00
<?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')) {
2011-06-28 04:47:55 +02:00
$addr = trim($_GET['addr']);
2011-05-27 01:41:36 +02:00
if(strpos($addr,'@' !== false))
$res = webfinger($addr);
else
$res = lrdd($addr);
2011-06-28 03:13:44 +02:00
$o .= '<pre>';
2011-05-27 01:41:36 +02: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;
}