add webfinger diagnostic module

This commit is contained in:
Friendika 2011-05-26 16:41:36 -07:00
parent 5a0690d940
commit 7acb8fa6e7
2 changed files with 25 additions and 1 deletions

View File

@ -4,7 +4,7 @@ set_time_limit(0);
ini_set('pcre.backtrack_limit', 250000);
define ( 'FRIENDIKA_VERSION', '2.2.991' );
define ( 'FRIENDIKA_VERSION', '2.2.992' );
define ( 'DFRN_PROTOCOL_VERSION', '2.21' );
define ( 'DB_UPDATE_VERSION', 1058 );

24
mod/webfinger.php Normal file
View File

@ -0,0 +1,24 @@
<?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 = $_GET['addr'];
if(strpos($addr,'@' !== false))
$res = webfinger($addr);
else
$res = lrdd($addr);
$o .= str_replace("\n",'<br />',print_r($res,true));
}
return $o;
}