2010-07-07 08:08:38 +02:00
|
|
|
<?php
|
2017-01-18 22:45:32 +01:00
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2017-04-30 06:01:26 +02:00
|
|
|
use Friendica\Core\Config;
|
2017-01-18 22:45:32 +01:00
|
|
|
|
2017-05-07 20:40:23 +02:00
|
|
|
require_once 'include/queue_fn.php';
|
|
|
|
require_once 'include/html2plain.php';
|
2017-05-07 20:45:19 +02:00
|
|
|
require_once 'include/probe.php';
|
2017-05-07 20:40:23 +02:00
|
|
|
require_once 'include/diaspora.php';
|
|
|
|
require_once 'include/ostatus.php';
|
|
|
|
require_once 'include/salmon.php';
|
2011-01-28 14:04:18 +01:00
|
|
|
|
2011-09-04 14:07:25 +02:00
|
|
|
/*
|
|
|
|
* This file was at one time responsible for doing all deliveries, but this caused
|
2015-12-14 00:39:20 +01:00
|
|
|
* big problems when the process was killed or stalled during the delivery process.
|
|
|
|
* It now invokes separate queues that are delivering via delivery.php and pubsubpublish.php.
|
2011-09-04 14:07:25 +02:00
|
|
|
*/
|
|
|
|
|
2012-08-10 06:06:18 +02:00
|
|
|
/*
|
|
|
|
* The notifier is typically called with:
|
|
|
|
*
|
2016-08-01 07:48:43 +02:00
|
|
|
* proc_run(PRIORITY_HIGH, "include/notifier.php", COMMAND, ITEM_ID);
|
2012-08-10 06:06:18 +02:00
|
|
|
*
|
|
|
|
* where COMMAND is one of the following:
|
|
|
|
*
|
|
|
|
* activity (in diaspora.php, dfrn_confirm.php, profiles.php)
|
|
|
|
* comment-import (in diaspora.php, items.php)
|
|
|
|
* comment-new (in item.php)
|
|
|
|
* drop (in diaspora.php, items.php, photos.php)
|
|
|
|
* edit_post (in item.php)
|
|
|
|
* event (in events.php)
|
|
|
|
* expire (in items.php)
|
|
|
|
* like (in like.php, poke.php)
|
|
|
|
* mail (in message.php)
|
|
|
|
* suggest (in fsuggest.php)
|
|
|
|
* tag (in photos.php, poke.php, tagger.php)
|
|
|
|
* tgroup (in items.php)
|
|
|
|
* wall-new (in photos.php, item.php)
|
2013-01-12 14:31:32 +01:00
|
|
|
* removeme (in Contact.php)
|
2013-11-13 11:57:11 +01:00
|
|
|
* relocate (in uimport.php)
|
2012-08-10 06:06:18 +02:00
|
|
|
*
|
|
|
|
* and ITEM_ID is the id of the item in the database that needs to be sent to others.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2012-11-05 09:18:55 +01:00
|
|
|
function notifier_run(&$argv, &$argc){
|
2017-02-27 00:16:49 +01:00
|
|
|
global $a;
|
2011-01-28 14:04:18 +01:00
|
|
|
|
2017-05-07 20:40:23 +02:00
|
|
|
require_once 'include/datetime.php';
|
|
|
|
require_once 'include/items.php';
|
|
|
|
require_once 'include/bbcode.php';
|
|
|
|
require_once 'include/email.php';
|
2017-01-18 22:45:32 +01:00
|
|
|
|
2017-01-08 23:29:55 +01:00
|
|
|
if ($argc < 3) {
|
2011-01-24 22:01:56 +01:00
|
|
|
return;
|
2017-01-08 23:29:55 +01:00
|
|
|
}
|
2010-08-17 05:47:40 +02:00
|
|
|
|
2017-05-24 08:29:47 +02:00
|
|
|
// Inherit the priority
|
|
|
|
$queue = dba::select('workerqueue', array('priority'), array('pid' => getmypid()), array('limit' => 1));
|
|
|
|
if (dbm::is_result($queue)) {
|
2017-05-24 12:36:44 +02:00
|
|
|
$priority = (int)$queue['priority'];
|
2017-05-24 08:29:47 +02:00
|
|
|
logger('inherited priority: '.$priority);
|
|
|
|
} else {
|
|
|
|
// Normally this shouldn't happen.
|
|
|
|
$priority = PRIORITY_HIGH;
|
|
|
|
logger('no inherited priority! Something is wrong.');
|
|
|
|
}
|
|
|
|
|
2012-05-04 01:55:03 +02:00
|
|
|
logger('notifier: invoked: ' . print_r($argv,true), LOGGER_DEBUG);
|
2010-11-25 11:53:19 +01:00
|
|
|
|
2010-08-17 05:47:40 +02:00
|
|
|
$cmd = $argv[1];
|
2010-07-09 02:49:41 +02:00
|
|
|
|
|
|
|
switch($cmd) {
|
2010-07-30 15:09:20 +02:00
|
|
|
case 'mail':
|
2010-07-09 02:49:41 +02:00
|
|
|
default:
|
2010-08-17 05:47:40 +02:00
|
|
|
$item_id = intval($argv[2]);
|
2017-01-08 23:29:55 +01:00
|
|
|
if (! $item_id) {
|
2011-01-28 14:04:18 +01:00
|
|
|
return;
|
2011-01-24 22:01:56 +01:00
|
|
|
}
|
2010-07-09 02:49:41 +02:00
|
|
|
break;
|
|
|
|
}
|
2010-07-08 16:03:25 +02:00
|
|
|
|
2011-03-16 01:31:49 +01:00
|
|
|
$expire = false;
|
2011-08-26 16:29:22 +02:00
|
|
|
$mail = false;
|
|
|
|
$fsuggest = false;
|
2015-01-12 00:14:51 +01:00
|
|
|
$relocate = false;
|
2011-02-11 12:17:16 +01:00
|
|
|
$top_level = false;
|
2010-07-08 16:03:25 +02:00
|
|
|
$recipients = array();
|
2010-11-01 04:36:59 +01:00
|
|
|
$url_recipients = array();
|
2010-07-08 09:18:23 +02:00
|
|
|
|
2011-08-17 05:43:34 +02:00
|
|
|
$normal_mode = true;
|
2010-07-09 02:49:41 +02:00
|
|
|
|
2017-01-08 23:29:55 +01:00
|
|
|
if ($cmd === 'mail') {
|
2011-08-17 05:43:34 +02:00
|
|
|
$normal_mode = false;
|
2011-08-26 16:29:22 +02:00
|
|
|
$mail = true;
|
2010-07-30 15:09:20 +02:00
|
|
|
$message = q("SELECT * FROM `mail` WHERE `id` = %d LIMIT 1",
|
|
|
|
intval($item_id)
|
|
|
|
);
|
2017-01-08 23:29:55 +01:00
|
|
|
if (! count($message)) {
|
2011-01-28 14:04:18 +01:00
|
|
|
return;
|
2011-01-24 22:01:56 +01:00
|
|
|
}
|
2010-07-30 15:09:20 +02:00
|
|
|
$uid = $message[0]['uid'];
|
|
|
|
$recipients[] = $message[0]['contact-id'];
|
|
|
|
$item = $message[0];
|
|
|
|
|
2017-01-08 23:29:55 +01:00
|
|
|
} elseif ($cmd === 'expire') {
|
2011-08-17 05:43:34 +02:00
|
|
|
$normal_mode = false;
|
2011-03-16 01:31:49 +01:00
|
|
|
$expire = true;
|
2015-05-29 10:35:13 +02:00
|
|
|
$items = q("SELECT * FROM `item` WHERE `uid` = %d AND `wall` = 1
|
2011-09-30 06:56:44 +02:00
|
|
|
AND `deleted` = 1 AND `changed` > UTC_TIMESTAMP() - INTERVAL 10 MINUTE",
|
2011-03-16 01:31:49 +01:00
|
|
|
intval($item_id)
|
|
|
|
);
|
|
|
|
$uid = $item_id;
|
|
|
|
$item_id = 0;
|
2017-01-08 23:29:55 +01:00
|
|
|
if (! count($items)) {
|
2011-03-16 01:31:49 +01:00
|
|
|
return;
|
2017-01-08 23:29:55 +01:00
|
|
|
}
|
|
|
|
} elseif ($cmd === 'suggest') {
|
2011-08-17 05:43:34 +02:00
|
|
|
$normal_mode = false;
|
2011-08-26 16:29:22 +02:00
|
|
|
$fsuggest = true;
|
|
|
|
|
2011-06-27 04:30:57 +02:00
|
|
|
$suggest = q("SELECT * FROM `fsuggest` WHERE `id` = %d LIMIT 1",
|
|
|
|
intval($item_id)
|
|
|
|
);
|
2017-01-08 23:29:55 +01:00
|
|
|
if (! count($suggest)) {
|
2011-06-27 04:30:57 +02:00
|
|
|
return;
|
2017-01-08 23:29:55 +01:00
|
|
|
}
|
2011-06-27 04:30:57 +02:00
|
|
|
$uid = $suggest[0]['uid'];
|
|
|
|
$recipients[] = $suggest[0]['cid'];
|
|
|
|
$item = $suggest[0];
|
2017-01-08 23:29:55 +01:00
|
|
|
} elseif ($cmd === 'removeme') {
|
2016-06-29 22:50:30 +02:00
|
|
|
$r = q("SELECT `contact`.*, `user`.`pubkey` AS `upubkey`, `user`.`prvkey` AS `uprvkey`,
|
|
|
|
`user`.`timezone`, `user`.`nickname`, `user`.`sprvkey`, `user`.`spubkey`,
|
2016-09-25 22:37:27 +02:00
|
|
|
`user`.`page-flags`, `user`.`prvnets`, `user`.`account-type`, `user`.`guid`
|
2016-06-29 22:50:30 +02:00
|
|
|
FROM `contact` INNER JOIN `user` ON `user`.`uid` = `contact`.`uid`
|
|
|
|
WHERE `contact`.`uid` = %d AND `contact`.`self` LIMIT 1",
|
|
|
|
intval($item_id));
|
|
|
|
if (!$r)
|
2012-11-06 08:16:08 +01:00
|
|
|
return;
|
2013-01-12 14:31:32 +01:00
|
|
|
|
2012-11-02 21:43:47 +01:00
|
|
|
$user = $r[0];
|
2016-06-29 22:50:30 +02:00
|
|
|
|
|
|
|
$r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` LIMIT 1", intval($item_id));
|
|
|
|
if (!$r)
|
2012-11-06 08:16:08 +01:00
|
|
|
return;
|
2013-01-12 14:31:32 +01:00
|
|
|
|
2012-11-02 21:43:47 +01:00
|
|
|
$self = $r[0];
|
2016-06-29 22:50:30 +02:00
|
|
|
|
|
|
|
$r = q("SELECT * FROM `contact` WHERE NOT `self` AND `uid` = %d", intval($item_id));
|
2017-01-08 23:29:55 +01:00
|
|
|
if (!$r) {
|
2012-11-02 21:43:47 +01:00
|
|
|
return;
|
2017-01-08 23:29:55 +01:00
|
|
|
}
|
2017-05-07 20:40:23 +02:00
|
|
|
require_once 'include/Contact.php';
|
2017-01-08 23:29:55 +01:00
|
|
|
foreach ($r as $contact) {
|
2012-11-02 21:43:47 +01:00
|
|
|
terminate_friendship($user, $self, $contact);
|
|
|
|
}
|
|
|
|
return;
|
2017-01-08 23:29:55 +01:00
|
|
|
} elseif ($cmd === 'relocate') {
|
2015-01-12 00:14:51 +01:00
|
|
|
$normal_mode = false;
|
2012-10-29 17:48:08 +01:00
|
|
|
$relocate = true;
|
2015-01-12 00:14:51 +01:00
|
|
|
$uid = $item_id;
|
2015-12-14 00:39:20 +01:00
|
|
|
|
|
|
|
$recipients_relocate = q("SELECT * FROM contact WHERE uid = %d AND self = 0 AND network = '%s'" , intval($uid), NETWORK_DFRN);
|
2015-01-12 00:14:51 +01:00
|
|
|
} else {
|
2011-01-28 14:04:18 +01:00
|
|
|
// find ancestors
|
2012-01-24 05:56:11 +01:00
|
|
|
$r = q("SELECT * FROM `item` WHERE `id` = %d and visible = 1 and moderated = 0 LIMIT 1",
|
2010-07-30 15:09:20 +02:00
|
|
|
intval($item_id)
|
|
|
|
);
|
2011-02-04 13:25:53 +01:00
|
|
|
|
2017-01-08 23:29:55 +01:00
|
|
|
if ((! dbm::is_result($r)) || (! intval($r[0]['parent']))) {
|
2011-01-28 14:04:18 +01:00
|
|
|
return;
|
2011-01-24 22:01:56 +01:00
|
|
|
}
|
2011-02-04 13:25:53 +01:00
|
|
|
|
2011-08-17 05:43:34 +02:00
|
|
|
$target_item = $r[0];
|
2011-02-04 13:25:53 +01:00
|
|
|
$parent_id = intval($r[0]['parent']);
|
2010-07-30 15:09:20 +02:00
|
|
|
$uid = $r[0]['uid'];
|
|
|
|
$updated = $r[0]['edited'];
|
2010-07-15 08:04:10 +02:00
|
|
|
|
2015-05-29 10:35:13 +02:00
|
|
|
$items = q("SELECT `item`.*, `sign`.`signed_text`,`sign`.`signature`,`sign`.`signer`
|
2012-01-24 05:56:11 +01:00
|
|
|
FROM `item` LEFT JOIN `sign` ON `sign`.`iid` = `item`.`id` WHERE `parent` = %d and visible = 1 and moderated = 0 ORDER BY `id` ASC",
|
2010-10-02 12:38:53 +02:00
|
|
|
intval($parent_id)
|
2010-07-30 15:09:20 +02:00
|
|
|
);
|
|
|
|
|
2017-01-08 23:29:55 +01:00
|
|
|
if (! count($items)) {
|
2011-01-28 14:04:18 +01:00
|
|
|
return;
|
2011-01-24 22:01:56 +01:00
|
|
|
}
|
2011-02-04 13:25:53 +01:00
|
|
|
|
|
|
|
// avoid race condition with deleting entries
|
|
|
|
|
2017-01-08 23:29:55 +01:00
|
|
|
if ($items[0]['deleted']) {
|
2017-01-09 07:40:56 +01:00
|
|
|
foreach ($items as $item) {
|
2011-02-04 13:25:53 +01:00
|
|
|
$item['deleted'] = 1;
|
2017-01-09 07:40:56 +01:00
|
|
|
}
|
2011-02-06 21:24:41 +01:00
|
|
|
}
|
2011-02-11 12:17:16 +01:00
|
|
|
|
2017-01-08 23:29:55 +01:00
|
|
|
if ((count($items) == 1) && ($items[0]['id'] === $target_item['id']) && ($items[0]['uri'] === $items[0]['parent-uri'])) {
|
2011-08-29 08:05:06 +02:00
|
|
|
logger('notifier: top level post');
|
2011-02-11 12:17:16 +01:00
|
|
|
$top_level = true;
|
2011-08-29 08:05:06 +02:00
|
|
|
}
|
2011-09-04 09:48:45 +02:00
|
|
|
|
2010-07-30 15:09:20 +02:00
|
|
|
}
|
2010-07-15 08:04:10 +02:00
|
|
|
|
2015-01-12 00:14:51 +01:00
|
|
|
$r = q("SELECT `contact`.*, `user`.`pubkey` AS `upubkey`, `user`.`prvkey` AS `uprvkey`,
|
|
|
|
`user`.`timezone`, `user`.`nickname`, `user`.`sprvkey`, `user`.`spubkey`,
|
2016-09-25 22:37:27 +02:00
|
|
|
`user`.`page-flags`, `user`.`prvnets`, `user`.`account-type`
|
2015-01-12 00:14:51 +01:00
|
|
|
FROM `contact` INNER JOIN `user` ON `user`.`uid` = `contact`.`uid`
|
2010-09-10 01:48:33 +02:00
|
|
|
WHERE `contact`.`uid` = %d AND `contact`.`self` = 1 LIMIT 1",
|
2010-07-15 08:04:10 +02:00
|
|
|
intval($uid)
|
|
|
|
);
|
|
|
|
|
2016-12-20 10:10:33 +01:00
|
|
|
if (! dbm::is_result($r)) {
|
2011-01-28 14:04:18 +01:00
|
|
|
return;
|
2016-12-20 10:10:33 +01:00
|
|
|
}
|
2011-03-16 01:31:49 +01:00
|
|
|
|
|
|
|
$owner = $r[0];
|
|
|
|
|
2011-09-04 09:48:45 +02:00
|
|
|
$walltowall = ((($top_level) && ($owner['id'] != $items[0]['contact-id'])) ? true : false);
|
|
|
|
|
2010-10-01 05:24:03 +02:00
|
|
|
$hub = get_config('system','huburl');
|
2010-11-01 04:36:59 +01:00
|
|
|
|
2017-01-08 21:35:41 +01:00
|
|
|
// Should the post be transmitted to Diaspora?
|
|
|
|
$diaspora_delivery = true;
|
|
|
|
|
2010-10-02 12:38:53 +02:00
|
|
|
// If this is a public conversation, notify the feed hub
|
2011-08-23 06:15:31 +02:00
|
|
|
$public_message = true;
|
2010-10-01 05:24:03 +02:00
|
|
|
|
2015-05-30 20:47:53 +02:00
|
|
|
// Do a PuSH
|
|
|
|
$push_notify = false;
|
|
|
|
|
2010-11-02 01:56:36 +01:00
|
|
|
// fill this in with a single salmon slap if applicable
|
2010-10-25 05:39:24 +02:00
|
|
|
$slap = '';
|
|
|
|
|
2017-01-08 23:29:55 +01:00
|
|
|
if (! ($mail || $fsuggest || $relocate)) {
|
2010-07-08 09:18:23 +02:00
|
|
|
|
2016-03-30 12:43:15 +02:00
|
|
|
$slap = ostatus::salmon($target_item,$owner);
|
2015-12-14 22:39:52 +01:00
|
|
|
|
2017-05-07 20:40:23 +02:00
|
|
|
require_once 'include/group.php';
|
2010-07-08 16:03:25 +02:00
|
|
|
|
2010-07-30 15:09:20 +02:00
|
|
|
$parent = $items[0];
|
2010-07-15 08:04:10 +02:00
|
|
|
|
2016-04-02 00:24:56 +02:00
|
|
|
$thr_parent = q("SELECT `network`, `author-link`, `owner-link` FROM `item` WHERE `uri` = '%s' AND `uid` = %d",
|
2015-06-25 00:47:59 +02:00
|
|
|
dbesc($target_item["thr-parent"]), intval($target_item["uid"]));
|
|
|
|
|
2017-01-08 21:35:41 +01:00
|
|
|
logger('GUID: '.$target_item["guid"].': Parent is '.$parent['network'].'. Thread parent is '.$thr_parent[0]['network'], LOGGER_DEBUG);
|
2015-06-25 00:47:59 +02:00
|
|
|
|
2011-08-24 13:42:28 +02:00
|
|
|
// This is IMPORTANT!!!!
|
|
|
|
|
|
|
|
// We will only send a "notify owner to relay" or followup message if the referenced post
|
|
|
|
// originated on our system by virtue of having our hostname somewhere
|
|
|
|
// in the URI, AND it was a comment (not top_level) AND the parent originated elsewhere.
|
2011-10-06 04:16:05 +02:00
|
|
|
|
2011-08-24 13:42:28 +02:00
|
|
|
// if $parent['wall'] == 1 we will already have the parent message in our array
|
|
|
|
// and we will relay the whole lot.
|
2014-03-18 22:51:50 +01:00
|
|
|
|
2011-08-24 13:42:28 +02:00
|
|
|
// expire sends an entire group of expire messages and cannot be forwarded.
|
2014-03-18 22:51:50 +01:00
|
|
|
// However the conversation owner will be a part of the conversation and will
|
2011-08-24 13:42:28 +02:00
|
|
|
// be notified during this run.
|
|
|
|
// Other DFRN conversation members will be alerted during polled updates.
|
|
|
|
|
2011-10-14 00:32:43 +02:00
|
|
|
|
|
|
|
|
2011-08-24 13:42:28 +02:00
|
|
|
// Diaspora members currently are not notified of expirations, and other networks have
|
2014-03-18 22:51:50 +01:00
|
|
|
// either limited or no ability to process deletions. We should at least fix Diaspora
|
2011-08-24 13:42:28 +02:00
|
|
|
// by stringing togther an array of retractions and sending them onward.
|
2014-03-18 22:51:50 +01:00
|
|
|
|
|
|
|
|
2012-03-08 03:23:55 +01:00
|
|
|
$localhost = str_replace('www.','',$a->get_hostname());
|
2017-01-08 23:29:55 +01:00
|
|
|
if (strpos($localhost,':')) {
|
2011-08-24 13:42:28 +02:00
|
|
|
$localhost = substr($localhost,0,strpos($localhost,':'));
|
2017-01-08 23:29:55 +01:00
|
|
|
}
|
2011-08-24 13:42:28 +02:00
|
|
|
/**
|
|
|
|
*
|
2014-03-18 22:51:50 +01:00
|
|
|
* Be VERY CAREFUL if you make any changes to the following several lines. Seemingly innocuous changes
|
|
|
|
* have been known to cause runaway conditions which affected several servers, along with
|
|
|
|
* permissions issues.
|
2011-08-24 13:42:28 +02:00
|
|
|
*
|
|
|
|
*/
|
2014-03-18 22:51:50 +01:00
|
|
|
|
2011-10-15 12:26:37 +02:00
|
|
|
$relay_to_owner = false;
|
|
|
|
|
2017-01-08 23:29:55 +01:00
|
|
|
if (!$top_level && ($parent['wall'] == 0) && !$expire && (stristr($target_item['uri'],$localhost))) {
|
2011-10-15 12:26:37 +02:00
|
|
|
$relay_to_owner = true;
|
|
|
|
}
|
|
|
|
|
2011-11-19 12:06:15 +01:00
|
|
|
|
2017-01-08 23:29:55 +01:00
|
|
|
if (($cmd === 'uplink') && (intval($parent['forum_mode']) == 1) && !$top_level) {
|
2014-03-18 22:51:50 +01:00
|
|
|
$relay_to_owner = true;
|
|
|
|
}
|
2011-11-19 12:06:15 +01:00
|
|
|
|
2011-11-07 01:48:13 +01:00
|
|
|
// until the 'origin' flag has been in use for several months
|
|
|
|
// we will just use it as a fallback test
|
|
|
|
// later we will be able to use it as the primary test of whether or not to relay.
|
|
|
|
|
2017-01-08 23:29:55 +01:00
|
|
|
if (! $target_item['origin']) {
|
2011-11-07 01:48:13 +01:00
|
|
|
$relay_to_owner = false;
|
2017-01-08 23:29:55 +01:00
|
|
|
}
|
|
|
|
if ($parent['origin']) {
|
2011-11-07 01:48:13 +01:00
|
|
|
$relay_to_owner = false;
|
2017-01-08 23:29:55 +01:00
|
|
|
}
|
|
|
|
if ($relay_to_owner) {
|
2015-09-05 04:54:48 +02:00
|
|
|
logger('notifier: followup '.$target_item["guid"], LOGGER_DEBUG);
|
2010-07-30 15:09:20 +02:00
|
|
|
// local followup to remote post
|
|
|
|
$followup = true;
|
2011-08-23 06:15:31 +02:00
|
|
|
$public_message = false; // not public
|
2010-07-30 15:09:20 +02:00
|
|
|
$conversant_str = dbesc($parent['contact-id']);
|
2015-01-20 22:54:25 +01:00
|
|
|
$recipients = array($parent['contact-id']);
|
2015-12-13 12:15:45 +01:00
|
|
|
$recipients_followup = array($parent['contact-id']);
|
2015-01-20 22:54:25 +01:00
|
|
|
|
2015-12-07 21:52:42 +01:00
|
|
|
//if (!$target_item['private'] AND $target_item['wall'] AND
|
|
|
|
if (!$target_item['private'] AND
|
2015-06-09 08:27:04 +02:00
|
|
|
(strlen($target_item['allow_cid'].$target_item['allow_gid'].
|
|
|
|
$target_item['deny_cid'].$target_item['deny_gid']) == 0))
|
2015-05-31 10:38:00 +02:00
|
|
|
$push_notify = true;
|
|
|
|
|
2015-06-12 01:08:06 +02:00
|
|
|
if (($thr_parent AND ($thr_parent[0]['network'] == NETWORK_OSTATUS)) OR ($parent['network'] == NETWORK_OSTATUS)) {
|
2015-05-30 20:47:53 +02:00
|
|
|
|
|
|
|
$push_notify = true;
|
|
|
|
|
2015-06-12 00:39:56 +02:00
|
|
|
if ($parent["network"] == NETWORK_OSTATUS) {
|
2015-12-13 12:15:45 +01:00
|
|
|
// Distribute the message to the DFRN contacts as if this wasn't a followup since OStatus can't relay comments
|
2015-12-14 00:39:20 +01:00
|
|
|
// Currently it is work at progress
|
2016-01-01 13:05:05 +01:00
|
|
|
$r = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `network` = '%s' AND NOT `blocked` AND NOT `pending` AND NOT `archive`",
|
2015-12-13 12:15:45 +01:00
|
|
|
intval($uid),
|
|
|
|
dbesc(NETWORK_DFRN)
|
|
|
|
);
|
2017-01-09 07:40:56 +01:00
|
|
|
if (dbm::is_result($r)) {
|
|
|
|
foreach ($r as $rr) {
|
2015-12-13 12:15:45 +01:00
|
|
|
$recipients_followup[] = $rr['id'];
|
2017-01-09 07:40:56 +01:00
|
|
|
}
|
|
|
|
}
|
2015-06-12 00:39:56 +02:00
|
|
|
}
|
2015-01-20 22:54:25 +01:00
|
|
|
}
|
2015-12-07 21:52:42 +01:00
|
|
|
logger("Notify ".$target_item["guid"]." via PuSH: ".($push_notify?"Yes":"No"), LOGGER_DEBUG);
|
2015-01-20 22:54:25 +01:00
|
|
|
} else {
|
2010-07-30 15:09:20 +02:00
|
|
|
$followup = false;
|
2010-07-08 09:18:23 +02:00
|
|
|
|
2015-09-05 04:54:48 +02:00
|
|
|
logger('Distributing directly '.$target_item["guid"], LOGGER_DEBUG);
|
|
|
|
|
2011-10-14 00:32:43 +02:00
|
|
|
// don't send deletions onward for other people's stuff
|
|
|
|
|
2017-01-08 23:29:55 +01:00
|
|
|
if ($target_item['deleted'] && (! intval($target_item['wall']))) {
|
2011-10-14 00:32:43 +02:00
|
|
|
logger('notifier: ignoring delete notification for non-wall item');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-01-08 23:29:55 +01:00
|
|
|
if ((strlen($parent['allow_cid']))
|
2015-01-12 00:14:51 +01:00
|
|
|
|| (strlen($parent['allow_gid']))
|
|
|
|
|| (strlen($parent['deny_cid']))
|
2010-11-01 04:36:59 +01:00
|
|
|
|| (strlen($parent['deny_gid']))) {
|
2011-08-23 06:15:31 +02:00
|
|
|
$public_message = false; // private recipients, not public
|
2010-11-01 04:36:59 +01:00
|
|
|
}
|
2010-10-02 12:38:53 +02:00
|
|
|
|
2010-07-30 15:09:20 +02:00
|
|
|
$allow_people = expand_acl($parent['allow_cid']);
|
2012-12-14 06:02:14 +01:00
|
|
|
$allow_groups = expand_groups(expand_acl($parent['allow_gid']),true);
|
2011-02-04 13:25:53 +01:00
|
|
|
$deny_people = expand_acl($parent['deny_cid']);
|
|
|
|
$deny_groups = expand_groups(expand_acl($parent['deny_gid']));
|
2010-07-08 09:18:23 +02:00
|
|
|
|
2012-05-18 07:44:52 +02:00
|
|
|
// if our parent is a public forum (forum_mode == 1), uplink to the origional author causing
|
|
|
|
// a delivery fork. private groups (forum_mode == 2) do not uplink
|
2011-11-19 12:06:15 +01:00
|
|
|
|
2017-01-08 23:29:55 +01:00
|
|
|
if ((intval($parent['forum_mode']) == 1) && (! $top_level) && ($cmd !== 'uplink')) {
|
2017-05-24 08:29:47 +02:00
|
|
|
proc_run($priority, 'include/notifier.php', 'uplink', $item_id);
|
2011-11-19 12:06:15 +01:00
|
|
|
}
|
|
|
|
|
2010-07-30 15:09:20 +02:00
|
|
|
$conversants = array();
|
2010-07-15 08:04:10 +02:00
|
|
|
|
2017-01-08 23:29:55 +01:00
|
|
|
foreach ($items as $item) {
|
2010-07-30 15:09:20 +02:00
|
|
|
$recipients[] = $item['contact-id'];
|
|
|
|
$conversants[] = $item['contact-id'];
|
2010-11-01 04:36:59 +01:00
|
|
|
// pull out additional tagged people to notify (if public message)
|
2017-01-08 23:29:55 +01:00
|
|
|
if ($public_message && strlen($item['inform'])) {
|
2010-11-01 04:36:59 +01:00
|
|
|
$people = explode(',',$item['inform']);
|
2017-01-08 23:29:55 +01:00
|
|
|
foreach ($people as $person) {
|
|
|
|
if (substr($person,0,4) === 'cid:') {
|
2010-11-01 04:36:59 +01:00
|
|
|
$recipients[] = intval(substr($person,4));
|
|
|
|
$conversants[] = intval(substr($person,4));
|
2017-01-08 23:29:55 +01:00
|
|
|
} else {
|
2010-11-01 04:36:59 +01:00
|
|
|
$url_recipients[] = substr($person,4);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-07-30 15:09:20 +02:00
|
|
|
}
|
2010-07-15 08:04:10 +02:00
|
|
|
|
2015-06-09 08:27:04 +02:00
|
|
|
if (count($url_recipients))
|
2015-09-05 04:54:48 +02:00
|
|
|
logger('notifier: '.$target_item["guid"].' url_recipients ' . print_r($url_recipients,true));
|
2010-11-01 04:36:59 +01:00
|
|
|
|
2010-11-26 11:38:41 +01:00
|
|
|
$conversants = array_unique($conversants);
|
2010-07-15 08:04:10 +02:00
|
|
|
|
|
|
|
|
2010-11-26 11:38:41 +01:00
|
|
|
$recipients = array_unique(array_merge($recipients,$allow_people,$allow_groups));
|
|
|
|
$deny = array_unique(array_merge($deny_people,$deny_groups));
|
2010-07-30 15:09:20 +02:00
|
|
|
$recipients = array_diff($recipients,$deny);
|
2010-09-27 04:44:03 +02:00
|
|
|
|
2010-07-30 15:09:20 +02:00
|
|
|
$conversant_str = dbesc(implode(', ',$conversants));
|
|
|
|
}
|
2010-07-08 09:18:23 +02:00
|
|
|
|
2015-06-25 00:47:59 +02:00
|
|
|
// If the thread parent is OStatus then do some magic to distribute the messages.
|
|
|
|
// We have not only to look at the parent, since it could be a Friendica thread.
|
|
|
|
if (($thr_parent AND ($thr_parent[0]['network'] == NETWORK_OSTATUS)) OR ($parent['network'] == NETWORK_OSTATUS)) {
|
|
|
|
|
2017-01-08 21:35:41 +01:00
|
|
|
$diaspora_delivery = false;
|
|
|
|
|
2016-06-25 13:56:55 +02:00
|
|
|
logger('Some parent is OStatus for '.$target_item["guid"]." - Author: ".$thr_parent[0]['author-link']." - Owner: ".$thr_parent[0]['owner-link'], LOGGER_DEBUG);
|
2015-09-05 04:54:48 +02:00
|
|
|
|
2016-04-02 00:24:56 +02:00
|
|
|
// Send a salmon to the parent author
|
2017-01-08 23:29:55 +01:00
|
|
|
$r = q("SELECT `url`, `notify` FROM `contact` WHERE `nurl`='%s' AND `uid` IN (0, %d) AND `notify` != ''",
|
2016-06-25 13:56:55 +02:00
|
|
|
dbesc(normalise_link($thr_parent[0]['author-link'])),
|
|
|
|
intval($uid));
|
2017-01-08 23:29:55 +01:00
|
|
|
if (dbm::is_result($r)) {
|
2016-06-25 13:56:55 +02:00
|
|
|
$probed_contact = $r[0];
|
2017-01-08 23:29:55 +01:00
|
|
|
} else {
|
2016-06-25 13:56:55 +02:00
|
|
|
$probed_contact = probe_url($thr_parent[0]['author-link']);
|
2017-01-08 23:29:55 +01:00
|
|
|
}
|
2016-06-25 13:56:55 +02:00
|
|
|
|
2016-04-02 00:24:56 +02:00
|
|
|
if ($probed_contact["notify"] != "") {
|
|
|
|
logger('Notify parent author '.$probed_contact["url"].': '.$probed_contact["notify"]);
|
|
|
|
$url_recipients[$probed_contact["notify"]] = $probed_contact["notify"];
|
|
|
|
}
|
|
|
|
|
|
|
|
// Send a salmon to the parent owner
|
2017-01-08 21:35:41 +01:00
|
|
|
$r = q("SELECT `url`, `notify` FROM `contact` WHERE `nurl`='%s' AND `uid` IN (0, %d) AND `notify` != ''",
|
2016-06-25 13:56:55 +02:00
|
|
|
dbesc(normalise_link($thr_parent[0]['owner-link'])),
|
|
|
|
intval($uid));
|
2017-01-08 23:29:55 +01:00
|
|
|
if (dbm::is_result($r)) {
|
2016-06-25 13:56:55 +02:00
|
|
|
$probed_contact = $r[0];
|
2017-01-08 23:29:55 +01:00
|
|
|
} else {
|
2016-06-25 13:56:55 +02:00
|
|
|
$probed_contact = probe_url($thr_parent[0]['owner-link']);
|
2017-01-08 23:29:55 +01:00
|
|
|
}
|
|
|
|
|
2016-04-02 00:24:56 +02:00
|
|
|
if ($probed_contact["notify"] != "") {
|
|
|
|
logger('Notify parent owner '.$probed_contact["url"].': '.$probed_contact["notify"]);
|
|
|
|
$url_recipients[$probed_contact["notify"]] = $probed_contact["notify"];
|
|
|
|
}
|
|
|
|
|
2015-06-25 00:47:59 +02:00
|
|
|
// Send a salmon notification to every person we mentioned in the post
|
|
|
|
$arr = explode(',',$target_item['tag']);
|
2017-01-08 23:29:55 +01:00
|
|
|
foreach ($arr as $x) {
|
2015-06-25 00:47:59 +02:00
|
|
|
//logger('Checking tag '.$x, LOGGER_DEBUG);
|
|
|
|
$matches = null;
|
2017-01-08 23:29:55 +01:00
|
|
|
if (preg_match('/@\[url=([^\]]*)\]/',$x,$matches)) {
|
2015-06-25 00:47:59 +02:00
|
|
|
$probed_contact = probe_url($matches[1]);
|
|
|
|
if ($probed_contact["notify"] != "") {
|
|
|
|
logger('Notify mentioned user '.$probed_contact["url"].': '.$probed_contact["notify"]);
|
|
|
|
$url_recipients[$probed_contact["notify"]] = $probed_contact["notify"];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-05 16:27:03 +02:00
|
|
|
// It only makes sense to distribute answers to OStatus messages to Friendica and OStatus - but not Diaspora
|
|
|
|
$sql_extra = " AND `network` IN ('".NETWORK_OSTATUS."', '".NETWORK_DFRN."')";
|
2017-01-08 23:29:55 +01:00
|
|
|
} else {
|
2015-12-14 00:39:20 +01:00
|
|
|
$sql_extra = " AND `network` IN ('".NETWORK_OSTATUS."', '".NETWORK_DFRN."', '".NETWORK_DIASPORA."', '".NETWORK_MAIL."', '".NETWORK_MAIL2."')";
|
2017-01-08 23:29:55 +01:00
|
|
|
}
|
|
|
|
} else {
|
2015-12-14 00:39:20 +01:00
|
|
|
$public_message = false;
|
2017-01-08 23:29:55 +01:00
|
|
|
}
|
2010-07-15 08:04:10 +02:00
|
|
|
|
2011-04-18 08:27:11 +02:00
|
|
|
// If this is a public message and pubmail is set on the parent, include all your email contacts
|
|
|
|
|
2011-04-19 05:20:04 +02:00
|
|
|
$mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
|
|
|
|
|
2017-01-08 23:29:55 +01:00
|
|
|
if (! $mail_disabled) {
|
|
|
|
if ((! strlen($target_item['allow_cid'])) && (! strlen($target_item['allow_gid']))
|
2015-01-20 22:54:25 +01:00
|
|
|
&& (! strlen($target_item['deny_cid'])) && (! strlen($target_item['deny_gid']))
|
2011-08-17 05:43:34 +02:00
|
|
|
&& (intval($target_item['pubmail']))) {
|
2015-12-13 12:15:45 +01:00
|
|
|
$r = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `network` = '%s'",
|
2011-04-19 05:20:04 +02:00
|
|
|
intval($uid),
|
|
|
|
dbesc(NETWORK_MAIL)
|
|
|
|
);
|
2016-12-14 09:42:36 +01:00
|
|
|
if (dbm::is_result($r)) {
|
2017-01-08 23:29:55 +01:00
|
|
|
foreach ($r as $rr) {
|
2011-04-19 05:20:04 +02:00
|
|
|
$recipients[] = $rr['id'];
|
2017-01-08 23:29:55 +01:00
|
|
|
}
|
2011-04-19 05:20:04 +02:00
|
|
|
}
|
2011-04-18 08:27:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-08 23:29:55 +01:00
|
|
|
if ($followup) {
|
2015-12-13 12:15:45 +01:00
|
|
|
$recip_str = implode(', ', $recipients_followup);
|
2017-01-08 23:29:55 +01:00
|
|
|
} else {
|
2010-07-15 08:04:10 +02:00
|
|
|
$recip_str = implode(', ', $recipients);
|
2017-01-08 23:29:55 +01:00
|
|
|
}
|
|
|
|
if ($relocate) {
|
2015-01-12 00:14:51 +01:00
|
|
|
$r = $recipients_relocate;
|
2017-01-08 23:29:55 +01:00
|
|
|
} else {
|
2017-03-16 08:30:59 +01:00
|
|
|
$r = q("SELECT `id`, `url`, `network`, `self` FROM `contact`
|
|
|
|
WHERE `id` IN (%s) AND NOT `blocked` AND NOT `pending` AND NOT `archive`".$sql_extra,
|
2015-01-12 00:14:51 +01:00
|
|
|
dbesc($recip_str)
|
2015-01-20 22:54:25 +01:00
|
|
|
);
|
2017-01-08 23:29:55 +01:00
|
|
|
}
|
2011-02-01 08:06:45 +01:00
|
|
|
|
2011-08-29 06:41:42 +02:00
|
|
|
// delivery loop
|
|
|
|
|
2016-12-14 09:42:36 +01:00
|
|
|
if (dbm::is_result($r)) {
|
2017-01-08 23:29:55 +01:00
|
|
|
foreach ($r as $contact) {
|
|
|
|
if ($contact['self']) {
|
2011-02-01 08:06:45 +01:00
|
|
|
continue;
|
2017-01-08 23:29:55 +01:00
|
|
|
}
|
2015-12-14 00:39:20 +01:00
|
|
|
logger("Deliver ".$target_item["guid"]." to ".$contact['url']." via network ".$contact['network'], LOGGER_DEBUG);
|
2015-05-29 10:35:13 +02:00
|
|
|
|
2017-05-24 08:29:47 +02:00
|
|
|
proc_run($priority, 'include/delivery.php', $cmd, $item_id, $contact['id']);
|
2010-07-30 15:09:20 +02:00
|
|
|
}
|
2010-11-01 04:36:59 +01:00
|
|
|
}
|
2013-09-04 00:01:00 +02:00
|
|
|
|
2015-12-14 00:39:20 +01:00
|
|
|
// send salmon slaps to mentioned remote tags (@foo@example.com) in OStatus posts
|
|
|
|
// They are especially used for notifications to OStatus users that don't follow us.
|
2010-11-01 04:36:59 +01:00
|
|
|
|
2017-01-08 23:29:55 +01:00
|
|
|
if ($slap && count($url_recipients) && ($public_message || $push_notify) && $normal_mode) {
|
|
|
|
if (!get_config('system','dfrn_only')) {
|
|
|
|
foreach ($url_recipients as $url) {
|
2016-12-20 11:36:03 +01:00
|
|
|
if ($url) {
|
2011-07-07 05:16:40 +02:00
|
|
|
logger('notifier: urldelivery: ' . $url);
|
|
|
|
$deliver_status = slapper($owner,$url,$slap);
|
2015-12-25 23:17:34 +01:00
|
|
|
/// @TODO Redeliver/queue these items on failure, though there is no contact record
|
2011-07-07 05:16:40 +02:00
|
|
|
}
|
2010-11-01 04:36:59 +01:00
|
|
|
}
|
|
|
|
}
|
2010-07-08 16:03:25 +02:00
|
|
|
}
|
|
|
|
|
2010-10-01 05:24:03 +02:00
|
|
|
|
2017-01-08 23:29:55 +01:00
|
|
|
if ($public_message) {
|
2011-01-31 23:01:38 +01:00
|
|
|
|
2017-01-08 21:35:41 +01:00
|
|
|
$r0 = array();
|
|
|
|
$r1 = array();
|
2015-08-09 20:39:11 +02:00
|
|
|
|
2017-01-08 21:35:41 +01:00
|
|
|
if ($diaspora_delivery) {
|
2017-01-08 23:29:55 +01:00
|
|
|
if (!$followup) {
|
2017-01-08 21:35:41 +01:00
|
|
|
$r0 = Diaspora::relay_list();
|
2017-01-08 23:29:55 +01:00
|
|
|
}
|
2017-01-08 21:35:41 +01:00
|
|
|
|
2017-04-15 00:42:44 +02:00
|
|
|
$r1 = q("SELECT `batch`, ANY_VALUE(`id`) AS `id`, ANY_VALUE(`name`) AS `name`, ANY_VALUE(`network`) AS `network`
|
|
|
|
FROM `contact` WHERE `network` = '%s'
|
|
|
|
AND `uid` = %d AND `rel` != %d AND NOT `blocked` AND NOT `pending` AND NOT `archive` GROUP BY `batch` ORDER BY rand()",
|
2017-01-08 21:35:41 +01:00
|
|
|
dbesc(NETWORK_DIASPORA),
|
|
|
|
intval($owner['uid']),
|
|
|
|
intval(CONTACT_IS_SHARING)
|
|
|
|
);
|
|
|
|
}
|
2014-03-20 18:46:01 +01:00
|
|
|
|
|
|
|
$r2 = q("SELECT `id`, `name`,`network` FROM `contact`
|
2016-01-01 13:05:05 +01:00
|
|
|
WHERE `network` in ( '%s', '%s') AND `uid` = %d AND NOT `blocked` AND NOT `pending` AND NOT `archive`
|
2011-08-26 16:29:22 +02:00
|
|
|
AND `rel` != %d order by rand() ",
|
2011-08-19 02:30:06 +02:00
|
|
|
dbesc(NETWORK_DFRN),
|
2012-02-01 05:03:46 +01:00
|
|
|
dbesc(NETWORK_MAIL2),
|
2011-01-31 23:01:38 +01:00
|
|
|
intval($owner['uid']),
|
2011-08-08 01:15:54 +02:00
|
|
|
intval(CONTACT_IS_SHARING)
|
2011-01-31 23:01:38 +01:00
|
|
|
);
|
|
|
|
|
2015-08-09 20:39:11 +02:00
|
|
|
$r = array_merge($r2,$r1,$r0);
|
2011-09-22 13:11:39 +02:00
|
|
|
|
2016-12-14 09:42:36 +01:00
|
|
|
if (dbm::is_result($r)) {
|
2016-01-03 00:17:28 +01:00
|
|
|
logger('pubdeliver '.$target_item["guid"].': '.print_r($r,true), LOGGER_DEBUG);
|
2011-06-14 04:06:49 +02:00
|
|
|
|
2016-12-20 21:13:50 +01:00
|
|
|
foreach ($r as $rr) {
|
2011-01-31 23:01:38 +01:00
|
|
|
|
2011-09-22 13:11:39 +02:00
|
|
|
// except for Diaspora batch jobs
|
|
|
|
// Don't deliver to folks who have already been delivered to
|
2011-01-31 23:01:38 +01:00
|
|
|
|
2017-01-08 23:29:55 +01:00
|
|
|
if (($rr['network'] !== NETWORK_DIASPORA) && (in_array($rr['id'],$conversants))) {
|
2011-08-26 10:32:22 +02:00
|
|
|
logger('notifier: already delivered id=' . $rr['id']);
|
2011-08-23 06:15:31 +02:00
|
|
|
continue;
|
2011-08-26 10:32:22 +02:00
|
|
|
}
|
2011-08-23 06:15:31 +02:00
|
|
|
|
2017-01-08 23:29:55 +01:00
|
|
|
if ((! $mail) && (! $fsuggest) && (! $followup)) {
|
2016-01-03 00:17:28 +01:00
|
|
|
logger('notifier: delivery agent: '.$rr['name'].' '.$rr['id'].' '.$rr['network'].' '.$target_item["guid"]);
|
2017-05-24 08:29:47 +02:00
|
|
|
proc_run($priority, 'include/delivery.php', $cmd, $item_id, $rr['id']);
|
2011-08-26 16:29:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-08-26 05:35:55 +02:00
|
|
|
|
2015-05-30 20:47:53 +02:00
|
|
|
$push_notify = true;
|
2011-08-26 05:35:55 +02:00
|
|
|
|
2015-05-30 20:47:53 +02:00
|
|
|
}
|
2013-11-17 15:16:25 +01:00
|
|
|
|
2015-12-14 00:39:20 +01:00
|
|
|
// Notify PuSH subscribers (Used for OStatus distribution of regular posts)
|
2017-01-08 23:29:55 +01:00
|
|
|
if ($push_notify AND strlen($hub)) {
|
2015-05-30 20:47:53 +02:00
|
|
|
$hubs = explode(',', $hub);
|
2017-01-08 23:29:55 +01:00
|
|
|
if (count($hubs)) {
|
|
|
|
foreach ($hubs as $h) {
|
2015-05-30 20:47:53 +02:00
|
|
|
$h = trim($h);
|
2017-01-08 23:29:55 +01:00
|
|
|
if (! strlen($h)) {
|
2015-05-30 20:47:53 +02:00
|
|
|
continue;
|
2017-01-08 23:29:55 +01:00
|
|
|
}
|
2015-05-30 20:47:53 +02:00
|
|
|
|
|
|
|
if ($h === '[internal]') {
|
|
|
|
// Set push flag for PuSH subscribers to this topic,
|
|
|
|
// they will be notified in queue.php
|
2016-08-04 15:15:43 +02:00
|
|
|
q("UPDATE `push_subscriber` SET `push` = 1 ".
|
|
|
|
"WHERE `nickname` = '%s' AND `push` = 0", dbesc($owner['nickname']));
|
2015-05-30 20:47:53 +02:00
|
|
|
|
|
|
|
logger('Activating internal PuSH for item '.$item_id, LOGGER_DEBUG);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
2016-12-19 14:26:13 +01:00
|
|
|
$params = 'hub.mode=publish&hub.url=' . urlencode( App::get_baseurl() . '/dfrn_poll/' . $owner['nickname'] );
|
2015-05-30 20:47:53 +02:00
|
|
|
post_url($h,$params);
|
|
|
|
logger('publish for item '.$item_id.' ' . $h . ' ' . $params . ' returned ' . $a->get_curl_code());
|
2011-01-31 23:01:38 +01:00
|
|
|
}
|
2017-01-08 23:29:55 +01:00
|
|
|
if (count($hubs) > 1) {
|
2015-05-30 20:47:53 +02:00
|
|
|
sleep(7); // try and avoid multiple hubs responding at precisely the same time
|
2017-01-08 23:29:55 +01:00
|
|
|
}
|
2011-01-31 23:01:38 +01:00
|
|
|
}
|
|
|
|
}
|
2011-08-26 16:29:22 +02:00
|
|
|
|
2015-05-30 20:47:53 +02:00
|
|
|
// Handling the pubsubhubbub requests
|
2017-05-25 05:04:26 +02:00
|
|
|
proc_run(PRIORITY_HIGH, 'include/pubsubpublish.php');
|
2011-01-31 23:01:38 +01:00
|
|
|
}
|
|
|
|
|
2012-05-04 01:55:03 +02:00
|
|
|
logger('notifier: calling hooks', LOGGER_DEBUG);
|
|
|
|
|
2017-01-08 23:29:55 +01:00
|
|
|
if ($normal_mode) {
|
2011-10-12 03:24:37 +02:00
|
|
|
call_hooks('notifier_normal',$target_item);
|
2017-01-08 23:29:55 +01:00
|
|
|
}
|
2011-10-12 03:24:37 +02:00
|
|
|
|
|
|
|
call_hooks('notifier_end',$target_item);
|
|
|
|
|
2011-01-28 14:04:18 +01:00
|
|
|
return;
|
|
|
|
}
|