local delivery

This commit is contained in:
friendica
2012-12-02 20:54:20 -08:00
parent c38ec1ab48
commit 7b4a92146f
2 changed files with 21 additions and 9 deletions

View File

@@ -20,16 +20,27 @@ function deliver_run($argv, $argc) {
dbesc($argv[$x])
);
if($r) {
$result = zot_zot($r[0]['outq_posturl'],$r[0]['outq_notify']);
if($result['success']) {
zot_process_response($result, $r[0]);
}
else {
$y = q("update outq set outq_updated = '%s' where outq_hash = '%s' limit 1",
dbesc(datetime_convert()),
if($r[0]['outq_posturl'] === z_root() . '/post') {
// local delivery
// we should probably batch these and save a few delivery processes
$msg = array('body' => json_encode(array('pickup' => array(array('notify' => json_decode($r[0]['outq_notify'],true),'message' => json_decode($r[0]['outq_msg'],true))))));
zot_import($msg);
$r = q("delete from outq where outq_hash = '%s' limit 1",
dbesc($argv[$x])
);
}
else {
$result = zot_zot($r[0]['outq_posturl'],$r[0]['outq_notify']);
if($result['success']) {
zot_process_response($result, $r[0]);
}
else {
$y = q("update outq set outq_updated = '%s' where outq_hash = '%s' limit 1",
dbesc(datetime_convert()),
dbesc($argv[$x])
);
}
}
}
}
}