aboutsummaryrefslogtreecommitdiffstats
path: root/mod/uexport.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-03-22 03:07:46 -0700
committerFriendika <info@friendika.com>2011-03-22 03:07:46 -0700
commitc4b292a4f103eb049c13dbe3c62f0438c18de816 (patch)
tree105ba225e56b5798e42c9c280f2958fec73bf859 /mod/uexport.php
parentcd2a0802e4840253540f256fc49459b8e7c1e911 (diff)
downloadvolse-hubzilla-c4b292a4f103eb049c13dbe3c62f0438c18de816.tar.gz
volse-hubzilla-c4b292a4f103eb049c13dbe3c62f0438c18de816.tar.bz2
volse-hubzilla-c4b292a4f103eb049c13dbe3c62f0438c18de816.zip
account/profile/contacts export
Diffstat (limited to 'mod/uexport.php')
-rw-r--r--mod/uexport.php48
1 files changed, 48 insertions, 0 deletions
diff --git a/mod/uexport.php b/mod/uexport.php
new file mode 100644
index 000000000..423c3a82f
--- /dev/null
+++ b/mod/uexport.php
@@ -0,0 +1,48 @@
+<?php
+
+function uexport_init(&$a) {
+
+ if(! local_user())
+ killme();
+
+ $user = array();
+ $r = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1",
+ local_user()
+ );
+ if(count($r)) {
+ foreach($r as $rr)
+ foreach($rr as $k => $v)
+ $user[$k] = $v;
+
+ }
+ $contact = array();
+ $r = q("SELECT * FROM `contact` WHERE `uid` = %d ",
+ local_user()
+ );
+ if(count($r)) {
+ foreach($r as $rr)
+ foreach($rr as $k => $v)
+ $contact[][$k] = $v;
+
+ }
+
+ $profile = array();
+ $r = q("SELECT * FROM `profile` WHERE `uid` = %d ",
+ local_user()
+ );
+ if(count($r)) {
+ foreach($r as $rr)
+ foreach($rr as $k => $v)
+ $profile[][$k] = $v;
+ }
+
+
+
+ $output = array('user' => $user, 'contact' => $contact, 'profile' => $profile);
+
+ header("Content-type: text/json");
+ echo str_replace('\\/','/',json_encode($output));
+
+ killme();
+
+} \ No newline at end of file