new approach to secondary delivery fork
This commit is contained in:
parent
fd4fe24406
commit
6463543832
|
@ -913,6 +913,9 @@ function get_item_contact($item,$contacts) {
|
||||||
|
|
||||||
function tgroup_deliver($uid,$item_id) {
|
function tgroup_deliver($uid,$item_id) {
|
||||||
|
|
||||||
|
|
||||||
|
// setup a second delivery chain for forum/community posts if appropriate
|
||||||
|
|
||||||
$a = get_app();
|
$a = get_app();
|
||||||
|
|
||||||
$deliver_to_tgroup = false;
|
$deliver_to_tgroup = false;
|
||||||
|
@ -937,9 +940,9 @@ function tgroup_deliver($uid,$item_id) {
|
||||||
$item = $i[0];
|
$item = $i[0];
|
||||||
|
|
||||||
// prevent delivery looping - only proceed
|
// prevent delivery looping - only proceed
|
||||||
// if the message originated elsewhere
|
// if the message originated elsewhere and is a top-level post
|
||||||
|
|
||||||
if(($item['wall']) || ($item['origin']))
|
if(($item['wall']) || ($item['origin']) || ($item['id'] != $item['parent']))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|
||||||
|
@ -958,7 +961,12 @@ function tgroup_deliver($uid,$item_id) {
|
||||||
if(! $deliver_to_tgroup)
|
if(! $deliver_to_tgroup)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
// now deliver to all the tgroup members
|
// now change this post to a forum head message and deliver to all the tgroup members
|
||||||
|
|
||||||
|
|
||||||
|
q("update item set wall = 1, origin = 1, forum_mode = 1 where id = %d limit 1",
|
||||||
|
intval($item_id)
|
||||||
|
);
|
||||||
|
|
||||||
proc_run('php','include/notifier.php','tgroup',$item_id);
|
proc_run('php','include/notifier.php','tgroup',$item_id);
|
||||||
|
|
||||||
|
@ -2025,17 +2033,18 @@ function local_delivery($importer,$data) {
|
||||||
|
|
||||||
$community = false;
|
$community = false;
|
||||||
|
|
||||||
if($importer['page-flags'] == PAGE_COMMUNITY) {
|
// if($importer['page-flags'] == PAGE_COMMUNITY) {
|
||||||
$sql_extra = '';
|
// $sql_extra = '';
|
||||||
$community = true;
|
// $community = true;
|
||||||
logger('local_delivery: community reply');
|
// logger('local_delivery: community reply');
|
||||||
}
|
// }
|
||||||
else
|
// else
|
||||||
|
|
||||||
$sql_extra = " and contact.self = 1 and item.wall = 1 ";
|
$sql_extra = " and contact.self = 1 and item.wall = 1 ";
|
||||||
|
|
||||||
// was the top-level post for this reply written by somebody on this site?
|
// was the top-level post for this reply written by somebody on this site?
|
||||||
// Specifically, the recipient?
|
// Specifically, the recipient?
|
||||||
dbg(1);
|
//dbg(1);
|
||||||
$r = q("select `item`.`id`, `item`.`uri`, `item`.`tag`,
|
$r = q("select `item`.`id`, `item`.`uri`, `item`.`tag`,
|
||||||
`contact`.`name`, `contact`.`url`, `contact`.`thumb` from `item`
|
`contact`.`name`, `contact`.`url`, `contact`.`thumb` from `item`
|
||||||
LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
|
LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
|
||||||
|
@ -2047,7 +2056,7 @@ dbg(1);
|
||||||
dbesc($parent_uri),
|
dbesc($parent_uri),
|
||||||
intval($importer['importer_uid'])
|
intval($importer['importer_uid'])
|
||||||
);
|
);
|
||||||
dbg(0);
|
//dbg(0);
|
||||||
if($r && count($r)) {
|
if($r && count($r)) {
|
||||||
|
|
||||||
logger('local_delivery: received remote comment');
|
logger('local_delivery: received remote comment');
|
||||||
|
@ -2055,11 +2064,11 @@ dbg(0);
|
||||||
// remote reply to our post. Import and then notify everybody else.
|
// remote reply to our post. Import and then notify everybody else.
|
||||||
$datarray = get_atom_elements($feed,$item);
|
$datarray = get_atom_elements($feed,$item);
|
||||||
|
|
||||||
if((! link_compare($datarray['author-link'],$importer['url'])) && (! $community)) {
|
// if((! link_compare($datarray['author-link'],$importer['url'])) && (! $community)) {
|
||||||
logger('local_delivery: received relay claiming to be from ' . $importer['url'] . ' however comment author url is ' . $datarray['author-link'] );
|
// logger('local_delivery: received relay claiming to be from ' . $importer['url'] . ' however comment author url is ' . $datarray['author-link'] );
|
||||||
// they won't know what to do so don't report an error. Just quietly die.
|
// they won't know what to do so don't report an error. Just quietly die.
|
||||||
return 0;
|
// return 0;
|
||||||
}
|
// }
|
||||||
|
|
||||||
$datarray['type'] = 'remote-comment';
|
$datarray['type'] = 'remote-comment';
|
||||||
$datarray['wall'] = 1;
|
$datarray['wall'] = 1;
|
||||||
|
|
Loading…
Reference in a new issue