diff options
Diffstat (limited to 'util')
-rw-r--r-- | util/frphotohelper.php | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/util/frphotohelper.php b/util/frphotohelper.php new file mode 100644 index 000000000..aacfac3e5 --- /dev/null +++ b/util/frphotohelper.php @@ -0,0 +1,72 @@ +<?php + +require_once('include/cli_startup.php'); + +cli_startup(); + +$a = get_app(); + + +$photo_id = $argv[1]; +$channel_address = $argv[2]; +$fr_server = urldecode($argv[3]); +require_once('include/photos.php'); + +$cookies = 'store/[data]/frphoto_cookie_' . $channel_address; + + $c = q("select * from channel left join xchan on channel_hash = xchan_hash where channel_address = '%s' limit 1", + dbesc($channel_address) + ); + if(! $c) { + logger('frphotohelper: channel not found'); + killme(); + } + $channel = $c[0]; + + + $ch = curl_init($fr_server . '/api/friendica/photo?f=&photo_id=' . $photo_id); + + curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); + curl_setopt ($ch, CURLOPT_COOKIEFILE, $cookies); + curl_setopt ($ch, CURLOPT_COOKIEJAR, $cookies); + curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); + curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); + curl_setopt($ch, CURLOPT_USERAGENT, 'RedMatrix'); + + $output = curl_exec($ch); + curl_close($ch); + + $j = json_decode($output,true); + +// logger('frphotohelper: ' . print_r($j,true)); + + $args = array(); + $args['data'] = base64_decode($j['data']); + $args['filename'] = $j['filename']; + $args['resource_id'] = $j['resource-id']; + $args['scale'] = $j['scale']; + $args['album'] = $j['album']; + $args['not_visible'] = 1; + + if($j['allow_cid'] || $j['allow_gid'] || $j['deny_cid'] || $j['deny_gid']) + $args['contact_allow'] = $channel['channel_hash']; + + $args['type'] = $j['type']; + + + + $r = q("select * from photo where resource_id = '%s' and uid = %d limit 1", + dbesc($args['resource_id']), + intval($channel['channel_id']) + ); + if($r) { + logger('frphotohelper: duplicate photo ignored'); + killme(); + } + + + $ret = photo_upload($channel,$channel,$args); + logger('photo_import: ' . print_r($ret,true)); + + killme(); + |