move xchan_photo import to background

This commit is contained in:
zotlabs 2018-09-06 17:37:09 -07:00
parent b77eac2ae8
commit 551e7b332a

View file

@ -0,0 +1,28 @@
<?php /** @file */
namespace Zotlabs\Daemon;
class Xchan_photo {
static public function run($argc,$argv) {
if($argc != 3)
return;
$url = hex2bin($argv[1]);
$xchan = hex2bin($argv[2]);
$photos = import_xchan_photo($url,$xchan);
$r = q("update xchan set xchan_photo_date = '%s', xchan_photo_l = '%s', xchan_photo_m = '%s', xchan_photo_s = '%s', xchan_photo_mimetype = '%s' where xchan_hash = '%s'",
dbescdate(datetime_convert()),
dbesc($photos[0]),
dbesc($photos[1]),
dbesc($photos[2]),
dbesc($photos[3]),
dbesc($xchan)
);
return;
}
}