provide a way to export a single year of items (to potentially keep from exhausting resources either on export or import)

This commit is contained in:
redmatrix
2015-07-16 20:19:20 -07:00
parent 964e461e09
commit ec249d465b
3 changed files with 41 additions and 4 deletions

View File

@@ -9,9 +9,17 @@ function uexport_init(&$a) {
require_once('include/identity.php');
header('content-type: application/octet_stream');
header('content-disposition: attachment; filename="' . $channel['channel_address'] . '.json"' );
if(argc() > 1 && intval(argv(1)) > 1900) {
$year = intval(argv(1));
}
header('content-type: application/octet_stream');
header('content-disposition: attachment; filename="' . $channel['channel_address'] . (($year) ? '-' . $year : '') . '.json"' );
if($year) {
echo json_encode(identity_export_year(local_channel(),$year));
killme();
}
if(argc() > 1 && argv(1) === 'basic') {
echo json_encode(identity_basic_export(local_channel()));