streams/mod/webfinger.php

49 lines
1 KiB
PHP
Raw Normal View History

2011-05-26 23:41:36 +00:00
<?php
function webfinger_content(&$a) {
2011-05-26 23:41:36 +00:00
$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 />';
$old = false;
2011-05-26 23:41:36 +00:00
if(x($_GET,'addr')) {
2011-06-28 02:47:55 +00:00
$addr = trim($_GET['addr']);
// if(strpos($addr,'@') !== false) {
2015-09-18 00:51:31 +00:00
$res = webfinger_rfc7033($addr,true);
if(! $res) {
$res = old_webfinger($addr);
$old = true;
}
// }
// else {
// if(function_exists('lrdd'))
// $res = lrdd($addr);
// }
if($res && $old) {
foreach($res as $r) {
if($r['@attributes']['rel'] === 'http://microformats.org/profile/hcard') {
$hcard = unamp($r['@attributes']['href']);
require_once('library/HTML5/Parser.php');
$res['vcard'] = scrape_vcard($hcard);
break;
}
}
}
2011-06-28 01:13:44 +00:00
$o .= '<pre>';
2011-05-26 23:41:36 +00:00
$o .= str_replace("\n",'<br />',print_r($res,true));
2011-06-28 01:13:44 +00:00
$o .= '</pre>';
2011-05-26 23:41:36 +00:00
}
return $o;
}