diff options
author | zotlabs <mike@macgirvin.com> | 2016-12-04 17:06:52 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2016-12-04 17:07:25 -0800 |
commit | df23ef36c75da646886809622134e14b5f7207ab (patch) | |
tree | aebe4b89b639bda0dcd78a34185a530567872891 /include/api_zot.php | |
parent | e1ffacbe322acb54e2d16b4921c030e96d8bc50e (diff) | |
download | volse-hubzilla-df23ef36c75da646886809622134e14b5f7207ab.tar.gz volse-hubzilla-df23ef36c75da646886809622134e14b5f7207ab.tar.bz2 volse-hubzilla-df23ef36c75da646886809622134e14b5f7207ab.zip |
api_zot: implement /api/z/1.0/network/stream and fix /api/z/1.0/channel/stream
Diffstat (limited to 'include/api_zot.php')
-rw-r--r-- | include/api_zot.php | 48 |
1 files changed, 47 insertions, 1 deletions
diff --git a/include/api_zot.php b/include/api_zot.php index a01bc8804..a7a377bf4 100644 --- a/include/api_zot.php +++ b/include/api_zot.php @@ -33,6 +33,7 @@ api_register_func('api/red/item/full','red_item', true); api_register_func('api/z/1.0/item/full','red_item', true); + api_register_func('api/z/1.0/network/stream','api_network_stream', true); api_register_func('api/z/1.0/abook','api_zot_abook_xchan',true); api_register_func('api/z/1.0/abconfig','api_zot_abconfig',true); api_register_func('api/z/1.0/perm_allowed','api_zot_perm_allowed',true); @@ -55,18 +56,63 @@ } + function api_network_stream($type) { + if(api_user() === false) { + logger('api_channel_stream: no user'); + return false; + } + + $channel = channelx_by_n(api_user()); + if(! $channel) + return false; + + + if($_SERVER['REQUEST_METHOD'] == 'POST') { + // json_return_and_die(post_activity_item($_REQUEST)); + } + else { + $mindate = (($_REQUEST['mindate']) ? datetime_convert('UTC','UTC',$_REQUEST['mindate']) : ''); + if(! $mindate) + $mindate = datetime_convert('UTC','UTC', 'now - 14 days'); + + $arr = $_REQUEST; + $ret = []; + $i = items_fetch($arr,App::get_channel(),get_observer_hash()); + if($i) { + foreach($i as $iv) { + $ret[] = encode_item($iv); + } + } + + json_return_and_die($ret); + } + } + + + + + + function api_channel_stream($type) { if(api_user() === false) { logger('api_channel_stream: no user'); return false; } + $channel = channelx_by_n(api_user()); + if(! $channel) + return false; + + if($_SERVER['REQUEST_METHOD'] == 'POST') { json_return_and_die(post_activity_item($_REQUEST)); } else { - // fetch stream + $mindate = (($_REQUEST['mindate']) ? datetime_convert('UTC','UTC',$_REQUEST['mindate']) : ''); + if(! $mindate) + $mindate = datetime_convert('UTC','UTC', 'now - 14 days'); + json_return_and_die(zot_feed($channel['channel_id'],$channel['channel_hash'],[ 'mindate' => $mindate ])); } } |