aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Zfinger.php
diff options
context:
space:
mode:
authorredmatrix <git@macgirvin.com>2016-04-18 01:35:09 -0700
committerredmatrix <git@macgirvin.com>2016-04-18 01:35:09 -0700
commit1698732cffab2f625c16a1d8d1227497a0965d43 (patch)
tree44d6802923840e34495cfeb6aef24ec4cfebf334 /Zotlabs/Module/Zfinger.php
parenta9f68e4d2ac9b585b09b29c2663709e6d42c286c (diff)
downloadvolse-hubzilla-1698732cffab2f625c16a1d8d1227497a0965d43.tar.gz
volse-hubzilla-1698732cffab2f625c16a1d8d1227497a0965d43.tar.bz2
volse-hubzilla-1698732cffab2f625c16a1d8d1227497a0965d43.zip
convert all the _well_known service controllers which are a bit touchy when it comes to the router
Diffstat (limited to 'Zotlabs/Module/Zfinger.php')
-rw-r--r--Zotlabs/Module/Zfinger.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/Zotlabs/Module/Zfinger.php b/Zotlabs/Module/Zfinger.php
new file mode 100644
index 000000000..2ff605fc9
--- /dev/null
+++ b/Zotlabs/Module/Zfinger.php
@@ -0,0 +1,18 @@
+<?php
+namespace Zotlabs\Module;
+
+
+class Zfinger extends \Zotlabs\Web\Controller {
+
+ function init() {
+
+ require_once('include/zot.php');
+ require_once('include/crypto.php');
+
+
+ $x = zotinfo($_REQUEST);
+ json_return_and_die($x);
+
+ }
+
+}