aboutsummaryrefslogtreecommitdiffstats
path: root/mod/webfinger.php
diff options
context:
space:
mode:
authorTobias Diekershoff <tobias.diekershoff@gmx.net>2011-05-28 10:37:33 +0200
committerTobias Diekershoff <tobias.diekershoff@gmx.net>2011-05-28 10:37:33 +0200
commit770d1bb7a368cdaba8e7340b54fd4b13ffea66b8 (patch)
treee47786d170dacd9ca59569a8ff8e558e5d8b610c /mod/webfinger.php
parent5e01432c6f15714370f3fd4f07eaf35615052955 (diff)
parent69f014d02b0d53ac2b42cbebe3d30418a2d0f612 (diff)
downloadvolse-hubzilla-770d1bb7a368cdaba8e7340b54fd4b13ffea66b8.tar.gz
volse-hubzilla-770d1bb7a368cdaba8e7340b54fd4b13ffea66b8.tar.bz2
volse-hubzilla-770d1bb7a368cdaba8e7340b54fd4b13ffea66b8.zip
Merge branch 'master' of git://github.com/friendika/friendika
Diffstat (limited to 'mod/webfinger.php')
-rw-r--r--mod/webfinger.php24
1 files changed, 24 insertions, 0 deletions
diff --git a/mod/webfinger.php b/mod/webfinger.php
new file mode 100644
index 000000000..dd6d72a13
--- /dev/null
+++ b/mod/webfinger.php
@@ -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;
+} \ No newline at end of file