3 function uexport_init(App &$a){
8 require_once("mod/settings.php");
12 function uexport_content(App &$a){
15 header("Content-type: application/json");
16 header('Content-Disposition: attachment; filename="'.$a->user['nickname'].'.'.$a->argv[1].'"');
18 case "backup": uexport_all($a); killme(); break;
19 case "account": uexport_account($a); killme(); break;
26 * options shown on "Export personal data" page
27 * list of array( 'link url', 'link text', 'help text' )
30 array('uexport/account',t('Export account'),t('Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server.')),
31 array('uexport/backup',t('Export all'),t('Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)')),
33 call_hooks('uexport_options', $options);
35 $tpl = get_markup_template("uexport.tpl");
36 return replace_macros($tpl, array(
37 '$baseurl' => App::get_baseurl(),
38 '$title' => t('Export personal data'),
39 '$options' => $options
45 function _uexport_multirow($query) {
48 // if (dbm::is_result($r)) {
52 foreach($rr as $k => $v)
60 function _uexport_row($query) {
65 foreach($rr as $k => $v)
73 function uexport_account($a){
76 sprintf( "SELECT * FROM `user` WHERE `uid` = %d LIMIT 1", intval(local_user()) )
79 $contact = _uexport_multirow(
80 sprintf( "SELECT * FROM `contact` WHERE `uid` = %d ",intval(local_user()) )
84 $profile =_uexport_multirow(
85 sprintf( "SELECT * FROM `profile` WHERE `uid` = %d ", intval(local_user()) )
88 $photo = _uexport_multirow(
89 sprintf( "SELECT * FROM `photo` WHERE uid = %d AND profile = 1", intval(local_user()) )
91 foreach ($photo as &$p) $p['data'] = bin2hex($p['data']);
93 $pconfig = _uexport_multirow(
94 sprintf( "SELECT * FROM `pconfig` WHERE uid = %d",intval(local_user()) )
97 $group = _uexport_multirow(
98 sprintf( "SELECT * FROM `group` WHERE uid = %d",intval(local_user()) )
101 $group_member = _uexport_multirow(
102 sprintf( "SELECT * FROM `group_member` WHERE uid = %d",intval(local_user()) )
106 'version' => FRIENDICA_VERSION,
107 'schema' => DB_UPDATE_VERSION,
108 'baseurl' => App::get_baseurl(),
110 'contact' => $contact,
111 'profile' => $profile,
113 'pconfig' => $pconfig,
115 'group_member' => $group_member,
118 //echo "<pre>"; var_dump(json_encode($output)); killme();
119 echo json_encode($output);
124 * echoes account data and items as separated json, one per line
126 function uexport_all(App &$a) {
131 $r = q("SELECT count(*) as `total` FROM `item` WHERE `uid` = %d ",
134 if (dbm::is_result($r))
135 $total = $r[0]['total'];
137 // chunk the output to avoid exhausting memory
139 for($x = 0; $x < $total; $x += 500) {
141 $r = q("SELECT * FROM `item` WHERE `uid` = %d LIMIT %d, %d",
142 intval(local_user()),
146 /*if (dbm::is_result($r)) {
148 foreach($rr as $k => $v)
152 $output = array('item' => $r);
153 echo json_encode($output)."\n";