From a0695fa04fdc73a20beb216060573e1204950df6 Mon Sep 17 00:00:00 2001 From: friendica Date: Mon, 4 Aug 2014 04:40:45 -0700 Subject: backend for profile export --- mod/profiles.php | 27 +++++++++++++++++++++++++++ version.inc | 2 +- 2 files changed, 28 insertions(+), 1 deletion(-) diff --git a/mod/profiles.php b/mod/profiles.php index 03e6801d2..c063599b4 100644 --- a/mod/profiles.php +++ b/mod/profiles.php @@ -126,6 +126,33 @@ function profiles_init(&$a) { return; // NOTREACHED } + if((argc() > 2) && (argv(1) === 'export')) { + + $r1 = q("SELECT * FROM `profile` WHERE `uid` = %d AND `id` = %d LIMIT 1", + intval(local_user()), + intval(argv(2)) + ); + if(! $r1) { + notice( t('Profile unavailable to export.') . EOL); + $a->error = 404; + return; + } + header('content-type: application/octet_stream'); + header('content-disposition: attachment; filename="' . $r1[0]['profile_name'] . '.json"' ); + + unset($r1[0]['id']); + unset($r1[0]['aid']); + unset($r1[0]['uid']); + unset($r1[0]['is_default']); + unset($r1[0]['publish']); + unset($r1[0]['profile_name']); + unset($r1[0]['profile_guid']); + echo json_encode($r1[0]); + killme(); + } + + + // Run profile_load() here to make sure the theme is set before // we start loading content diff --git a/version.inc b/version.inc index 91ef22530..f736d243e 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-08-03.756 +2014-08-04.757 -- cgit v1.2.3