aboutsummaryrefslogtreecommitdiffstats
path: root/mod/friendika.php
diff options
context:
space:
mode:
authorFabio Comuni <fabrix.xm@gmail.com>2011-05-12 10:26:34 +0200
committerFabio Comuni <fabrix.xm@gmail.com>2011-05-12 10:26:34 +0200
commit564f9c924ad07f94c24f8e9ebadc827d043da8d1 (patch)
tree7bf8125048ab6db38ee0b8d70676010be4bb7304 /mod/friendika.php
parentb265a2d847bc21bf328a0933bb3c6236bc0001e6 (diff)
downloadvolse-hubzilla-564f9c924ad07f94c24f8e9ebadc827d043da8d1.tar.gz
volse-hubzilla-564f9c924ad07f94c24f8e9ebadc827d043da8d1.tar.bz2
volse-hubzilla-564f9c924ad07f94c24f8e9ebadc827d043da8d1.zip
Serve friendika node info as json from url /friendika/json/
Diffstat (limited to 'mod/friendika.php')
-rw-r--r--mod/friendika.php40
1 files changed, 29 insertions, 11 deletions
diff --git a/mod/friendika.php b/mod/friendika.php
index 4a8240a11..f07164f2c 100644
--- a/mod/friendika.php
+++ b/mod/friendika.php
@@ -1,6 +1,34 @@
<?php
function friendika_content(&$a) {
+ if ($a->argv[1]=="json"){
+ $register_policy = Array('REGISTER_CLOSED', 'REGISTER_APPROVE', 'REGISTER_OPEN');
+
+ if (isset($a->config['admin_email']) && $a->config['admin_email']!=''){
+ $r = q("SELECT username, nickname FROM user WHERE email='%s'", $a->config['admin_email']);
+ $admin = array(
+ 'name' => $r[0]['username'],
+ 'profile'=> $a->get_baseurl().'profile/'.$r[0]['nickname'],
+ );
+ } else {
+ $admin = false;
+ }
+
+
+
+ $data = Array(
+ 'version' => FRIENDIKA_VERSION,
+ 'url' => $a->get_baseurl(),
+ 'plugins' => $a->plugins,
+ 'register_policy' => $register_policy[$a->config['register_policy']],
+ 'admin' => $admin,
+ 'site_name' => $a->config['sitename'],
+
+ );
+
+ echo json_encode($data);
+ killme();
+ }
$o = '';
$o .= '<h3>Friendika</h3>';
@@ -34,14 +62,4 @@ function friendika_content(&$a) {
return $o;
-
-
-
-
-
-
-
-
-
-
-} \ No newline at end of file
+}