2011-03-22 10:07:46 +00:00
< ? php
2018-01-22 14:16:25 +00:00
/**
* @ file mod / uexport . php
*/
2017-04-30 04:07:00 +00:00
use Friendica\App ;
2018-01-17 18:42:40 +00:00
use Friendica\Core\Addon ;
2018-01-22 14:16:25 +00:00
use Friendica\Core\L10n ;
2018-10-31 14:35:50 +00:00
use Friendica\Core\Renderer ;
2017-08-26 06:04:21 +00:00
use Friendica\Core\System ;
2018-07-21 12:40:21 +00:00
use Friendica\Database\DBA ;
2017-04-30 04:07:00 +00:00
2017-01-09 12:14:55 +00:00
function uexport_init ( App $a ) {
2017-04-30 04:01:26 +00:00
if ( ! local_user ()) {
2011-03-22 10:07:46 +00:00
killme ();
2016-12-20 10:56:34 +00:00
}
2014-04-24 09:58:04 +00:00
require_once ( " mod/settings.php " );
2016-12-20 10:56:34 +00:00
settings_init ( $a );
2012-10-17 15:13:01 +00:00
}
2017-01-09 12:14:55 +00:00
function uexport_content ( App $a ) {
2014-04-24 09:58:04 +00:00
2017-01-09 23:10:32 +00:00
if ( $a -> argc > 1 ) {
header ( " Content-type: application/json " );
2017-04-30 04:01:26 +00:00
header ( 'Content-Disposition: attachment; filename="' . $a -> user [ 'nickname' ] . '.' . $a -> argv [ 1 ] . '"' );
switch ( $a -> argv [ 1 ]) {
2017-01-09 23:10:32 +00:00
case " backup " :
uexport_all ( $a );
killme ();
break ;
case " account " :
uexport_account ( $a );
killme ();
break ;
default :
killme ();
}
}
2016-02-07 14:11:34 +00:00
2017-01-09 23:10:32 +00:00
/**
* options shown on " Export personal data " page
* list of array ( 'link url' , 'link text' , 'help text' )
*/
2018-01-15 13:05:12 +00:00
$options = [
2018-01-22 14:16:25 +00:00
[ 'uexport/account' , L10n :: t ( 'Export account' ), L10n :: t ( 'Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server.' )],
2018-01-24 21:51:32 +00:00
[ 'uexport/backup' , L10n :: t ( 'Export all' ), L10n :: 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 \x28 photos are not exported \x29 " )],
2018-01-15 13:05:12 +00:00
];
2018-01-17 18:42:40 +00:00
Addon :: callHooks ( 'uexport_options' , $options );
2017-01-09 23:10:32 +00:00
2018-10-31 14:44:06 +00:00
$tpl = Renderer :: getMarkupTemplate ( " uexport.tpl " );
2018-10-31 14:35:50 +00:00
return Renderer :: replaceMacros ( $tpl , [
2017-08-26 07:32:10 +00:00
'$baseurl' => System :: baseUrl (),
2018-01-22 14:16:25 +00:00
'$title' => L10n :: t ( 'Export personal data' ),
2017-01-09 23:10:32 +00:00
'$options' => $options
2018-01-15 13:05:12 +00:00
]);
2012-10-17 15:13:01 +00:00
}
function _uexport_multirow ( $query ) {
2018-01-15 13:05:12 +00:00
$result = [];
2012-10-17 15:13:01 +00:00
$r = q ( $query );
2018-07-21 12:46:04 +00:00
if ( DBA :: isResult ( $r )) {
2017-04-30 04:01:26 +00:00
foreach ( $r as $rr ) {
2018-01-15 13:05:12 +00:00
$p = [];
2017-04-30 04:01:26 +00:00
foreach ( $rr as $k => $v ) {
2012-10-17 15:13:01 +00:00
$p [ $k ] = $v ;
2017-01-09 23:10:32 +00:00
}
$result [] = $p ;
}
2011-03-22 10:07:46 +00:00
}
2017-01-09 23:10:32 +00:00
return $result ;
2012-10-17 15:13:01 +00:00
}
function _uexport_row ( $query ) {
2018-01-15 13:05:12 +00:00
$result = [];
2012-10-17 15:13:01 +00:00
$r = q ( $query );
2018-07-21 12:46:04 +00:00
if ( DBA :: isResult ( $r )) {
2017-04-30 04:01:26 +00:00
foreach ( $r as $rr ) {
foreach ( $rr as $k => $v ) {
2012-10-17 15:13:01 +00:00
$result [ $k ] = $v ;
2017-01-09 23:10:32 +00:00
}
}
2011-03-22 10:07:46 +00:00
}
2017-01-09 23:10:32 +00:00
return $result ;
2012-10-17 15:13:01 +00:00
}
2011-03-22 10:07:46 +00:00
2017-04-30 04:01:26 +00:00
function uexport_account ( $a ) {
2012-10-17 15:13:01 +00:00
$user = _uexport_row (
2017-04-30 04:01:26 +00:00
sprintf ( " SELECT * FROM `user` WHERE `uid` = %d LIMIT 1 " , intval ( local_user ()))
2011-03-22 10:07:46 +00:00
);
2014-04-24 09:58:04 +00:00
2012-10-17 15:13:01 +00:00
$contact = _uexport_multirow (
2017-04-30 04:01:26 +00:00
sprintf ( " SELECT * FROM `contact` WHERE `uid` = %d " , intval ( local_user ()))
2012-10-17 15:13:01 +00:00
);
2017-04-30 04:01:26 +00:00
$profile = _uexport_multirow (
sprintf ( " SELECT * FROM `profile` WHERE `uid` = %d " , intval ( local_user ()))
2012-10-17 15:13:01 +00:00
);
2017-01-09 23:10:32 +00:00
$photo = _uexport_multirow (
2017-04-30 04:01:26 +00:00
sprintf ( " SELECT * FROM `photo` WHERE uid = %d AND profile = 1 " , intval ( local_user ()))
2017-01-09 23:10:32 +00:00
);
foreach ( $photo as & $p ) {
$p [ 'data' ] = bin2hex ( $p [ 'data' ]);
}
2011-03-22 10:07:46 +00:00
2017-01-09 23:10:32 +00:00
$pconfig = _uexport_multirow (
2017-04-30 04:01:26 +00:00
sprintf ( " SELECT * FROM `pconfig` WHERE uid = %d " , intval ( local_user ()))
2017-01-09 23:10:32 +00:00
);
2011-03-22 10:07:46 +00:00
2017-01-09 23:10:32 +00:00
$group = _uexport_multirow (
2017-04-30 04:01:26 +00:00
sprintf ( " SELECT * FROM `group` WHERE uid = %d " , intval ( local_user ()))
2017-01-09 23:10:32 +00:00
);
2014-04-24 09:58:04 +00:00
2017-01-09 23:10:32 +00:00
$group_member = _uexport_multirow (
2017-12-15 03:47:58 +00:00
sprintf ( " SELECT `group_member`.`gid`, `group_member`.`contact-id` FROM `group_member` INNER JOIN `group` ON `group`.`id` = `group_member`.`gid` WHERE `group`.`uid` = %d " , intval ( local_user ()))
2017-01-09 23:10:32 +00:00
);
2012-10-17 15:13:01 +00:00
2018-01-15 13:05:12 +00:00
$output = [
2017-01-09 23:10:32 +00:00
'version' => FRIENDICA_VERSION ,
'schema' => DB_UPDATE_VERSION ,
2017-08-26 07:32:10 +00:00
'baseurl' => System :: baseUrl (),
2017-01-09 23:10:32 +00:00
'user' => $user ,
'contact' => $contact ,
'profile' => $profile ,
'photo' => $photo ,
'pconfig' => $pconfig ,
'group' => $group ,
'group_member' => $group_member ,
2018-01-15 13:05:12 +00:00
];
2016-02-07 14:11:34 +00:00
2017-01-09 23:10:32 +00:00
//echo "<pre>"; var_dump(json_encode($output)); killme();
2017-11-26 13:58:24 +00:00
echo json_encode ( $output , JSON_PARTIAL_OUTPUT_ON_ERROR );
2012-10-17 15:13:01 +00:00
}
/**
* echoes account data and items as separated json , one per line
*/
2017-01-09 12:14:55 +00:00
function uexport_all ( App $a ) {
2016-02-17 22:47:32 +00:00
uexport_account ( $a );
2013-06-28 07:16:25 +00:00
echo " \n " ;
2012-10-17 15:13:01 +00:00
2018-02-14 05:07:26 +00:00
$total = 0 ;
2011-03-22 23:19:00 +00:00
$r = q ( " SELECT count(*) as `total` FROM `item` WHERE `uid` = %d " ,
intval ( local_user ())
);
2018-07-21 12:46:04 +00:00
if ( DBA :: isResult ( $r )) {
2011-03-22 23:19:00 +00:00
$total = $r [ 0 ][ 'total' ];
2017-01-09 23:10:32 +00:00
}
2011-03-22 23:19:00 +00:00
// chunk the output to avoid exhausting memory
2017-01-09 23:10:32 +00:00
for ( $x = 0 ; $x < $total ; $x += 500 ) {
2018-01-15 13:05:12 +00:00
$item = [];
2011-03-22 23:19:00 +00:00
$r = q ( " SELECT * FROM `item` WHERE `uid` = %d LIMIT %d, %d " ,
intval ( local_user ()),
intval ( $x ),
intval ( 500 )
);
2018-01-15 13:05:12 +00:00
$output = [ 'item' => $r ];
2017-11-26 13:58:24 +00:00
echo json_encode ( $output , JSON_PARTIAL_OUTPUT_ON_ERROR ) . " \n " ;
2011-03-22 23:19:00 +00:00
}
2014-04-24 09:58:04 +00:00
}