diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-07-16 20:19:20 -0700 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-07-16 20:19:20 -0700 |
commit | ec249d465b60407b2e7c64e7a99be8ccf4b95e64 (patch) | |
tree | 31e96e0a7dc6b1f95c3207638bb5f3491824a780 /include | |
parent | 964e461e092b15a66da891a0a4c155323e8391e1 (diff) | |
download | volse-hubzilla-ec249d465b60407b2e7c64e7a99be8ccf4b95e64.tar.gz volse-hubzilla-ec249d465b60407b2e7c64e7a99be8ccf4b95e64.tar.bz2 volse-hubzilla-ec249d465b60407b2e7c64e7a99be8ccf4b95e64.zip |
provide a way to export a single year of items (to potentially keep from exhausting resources either on export or import)
Diffstat (limited to 'include')
-rw-r--r-- | include/identity.php | 31 |
1 files changed, 30 insertions, 1 deletions
diff --git a/include/identity.php b/include/identity.php index 29d9ef022..3925c3537 100644 --- a/include/identity.php +++ b/include/identity.php @@ -583,7 +583,7 @@ function identity_basic_export($channel_id, $items = false) { /** @warning this may run into memory limits on smaller systems */ - $r = q("select * from item where (item_flags & %d)>0 and not (item_restrict & %d)>0 and uid = %d", + $r = q("select * from item where (item_flags & %d)>0 and not (item_restrict & %d)>0 and uid = %d order by created", intval(ITEM_WALL), intval(ITEM_DELETED), intval($channel_id) @@ -600,6 +600,35 @@ function identity_basic_export($channel_id, $items = false) { } + +function identity_export_year($channel_id,$year) { + + if(! $year) + return array(); + + $ret = array(); + $mindate = datetime_convert('UTC','UTC',$year . '-01-01 00:00:00'); + $maxdate = datetime_convert('UTC','UTC',$year+1 . '-01-01 00:00:00'); + $r = q("select * from item where (item_flags & %d) > 0 and (item_restrict & %d) = 0 and uid = %d and created >= '%s' and created < '%s' order by created ", + intval(ITEM_WALL), + intval(ITEM_DELETED), + intval($channel_id), + dbesc($mindate), + dbesc($maxdate) + ); + + if($r) { + $ret['item'] = array(); + xchan_query($r); + $r = fetch_post_tags($r,true); + foreach($r as $rr) + $ret['item'][] = encode_item($rr,true); + } + + return $ret; +} + + /** * @brief Loads a profile into the App structure. * |