2017-11-19 13:59:55 -05:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @file src/Worker/Notifier.php
|
|
|
|
*/
|
|
|
|
namespace Friendica\Worker;
|
|
|
|
|
2018-07-19 22:15:21 -04:00
|
|
|
use Friendica\BaseObject;
|
2017-11-19 13:59:55 -05:00
|
|
|
use Friendica\Core\Config;
|
2018-10-21 01:15:02 -04:00
|
|
|
use Friendica\Core\Hook;
|
2018-10-29 17:20:46 -04:00
|
|
|
use Friendica\Core\Logger;
|
2018-08-11 16:40:44 -04:00
|
|
|
use Friendica\Core\Protocol;
|
2017-11-19 13:59:55 -05:00
|
|
|
use Friendica\Core\Worker;
|
2018-07-20 08:19:26 -04:00
|
|
|
use Friendica\Database\DBA;
|
2019-01-30 14:33:08 -05:00
|
|
|
use Friendica\Model\APContact;
|
2017-12-07 09:04:24 -05:00
|
|
|
use Friendica\Model\Contact;
|
2018-10-21 01:15:02 -04:00
|
|
|
use Friendica\Model\Conversation;
|
2017-12-09 13:45:17 -05:00
|
|
|
use Friendica\Model\Group;
|
2018-06-17 17:35:33 -04:00
|
|
|
use Friendica\Model\Item;
|
2018-12-07 00:52:14 -05:00
|
|
|
use Friendica\Model\ItemDeliveryData;
|
2018-05-17 19:30:49 -04:00
|
|
|
use Friendica\Model\PushSubscriber;
|
2018-07-19 22:15:21 -04:00
|
|
|
use Friendica\Model\User;
|
2017-11-19 13:59:55 -05:00
|
|
|
use Friendica\Network\Probe;
|
2018-09-17 17:13:08 -04:00
|
|
|
use Friendica\Protocol\ActivityPub;
|
2017-11-19 13:59:55 -05:00
|
|
|
use Friendica\Protocol\Diaspora;
|
|
|
|
use Friendica\Protocol\OStatus;
|
2017-12-02 09:32:45 -05:00
|
|
|
use Friendica\Protocol\Salmon;
|
2017-11-19 13:59:55 -05:00
|
|
|
|
2018-12-05 00:35:52 -05:00
|
|
|
require_once 'include/items.php';
|
|
|
|
|
2017-11-19 13:59:55 -05:00
|
|
|
/*
|
|
|
|
* The notifier is typically called with:
|
|
|
|
*
|
|
|
|
* Worker::add(PRIORITY_HIGH, "Notifier", COMMAND, ITEM_ID);
|
|
|
|
*
|
|
|
|
* 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)
|
|
|
|
* 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)
|
|
|
|
* removeme (in Contact.php)
|
|
|
|
* relocate (in uimport.php)
|
|
|
|
*
|
|
|
|
* and ITEM_ID is the id of the item in the database that needs to be sent to others.
|
|
|
|
*/
|
|
|
|
|
2018-07-09 22:39:59 -04:00
|
|
|
class Notifier
|
|
|
|
{
|
2018-12-04 23:49:48 -05:00
|
|
|
public static function execute($cmd, $target_id)
|
2018-07-09 22:39:59 -04:00
|
|
|
{
|
2018-07-19 22:15:21 -04:00
|
|
|
$a = BaseObject::getApp();
|
2017-11-19 13:59:55 -05:00
|
|
|
|
2018-12-04 23:49:48 -05:00
|
|
|
Logger::log('Invoked: ' . $cmd . ': ' . $target_id, Logger::DEBUG);
|
2017-11-19 13:59:55 -05:00
|
|
|
|
|
|
|
$top_level = false;
|
2018-01-15 08:05:12 -05:00
|
|
|
$recipients = [];
|
|
|
|
$url_recipients = [];
|
2017-11-19 13:59:55 -05:00
|
|
|
|
2018-12-05 00:35:52 -05:00
|
|
|
$delivery_contacts_stmt = null;
|
2018-12-04 23:49:48 -05:00
|
|
|
$target_item = [];
|
|
|
|
$items = [];
|
2018-12-07 00:52:14 -05:00
|
|
|
$delivery_queue_count = 0;
|
2017-11-19 13:59:55 -05:00
|
|
|
|
2018-05-01 02:37:12 -04:00
|
|
|
if ($cmd == Delivery::MAIL) {
|
2018-12-04 23:49:48 -05:00
|
|
|
$message = DBA::selectFirst('mail', ['uid', 'contact-id'], ['id' => $target_id]);
|
2018-07-21 08:46:04 -04:00
|
|
|
if (!DBA::isResult($message)) {
|
2017-11-19 13:59:55 -05:00
|
|
|
return;
|
|
|
|
}
|
2018-05-01 02:37:12 -04:00
|
|
|
$uid = $message['uid'];
|
|
|
|
$recipients[] = $message['contact-id'];
|
|
|
|
} elseif ($cmd == Delivery::SUGGESTION) {
|
2018-12-04 23:49:48 -05:00
|
|
|
$suggest = DBA::selectFirst('fsuggest', ['uid', 'cid'], ['id' => $target_id]);
|
2018-07-21 08:46:04 -04:00
|
|
|
if (!DBA::isResult($suggest)) {
|
2017-11-19 13:59:55 -05:00
|
|
|
return;
|
|
|
|
}
|
2018-05-01 02:37:12 -04:00
|
|
|
$uid = $suggest['uid'];
|
|
|
|
$recipients[] = $suggest['cid'];
|
|
|
|
} elseif ($cmd == Delivery::REMOVAL) {
|
2018-12-05 00:06:48 -05:00
|
|
|
return self::notifySelfRemoval($target_id, $a->queue['priority'], $a->queue['created']);
|
2018-05-01 02:37:12 -04:00
|
|
|
} elseif ($cmd == Delivery::RELOCATION) {
|
2018-12-04 23:49:48 -05:00
|
|
|
$uid = $target_id;
|
2017-11-19 13:59:55 -05:00
|
|
|
|
2018-12-05 00:35:52 -05:00
|
|
|
$condition = ['uid' => $target_id, 'self' => false, 'network' => [Protocol::DFRN, Protocol::DIASPORA]];
|
|
|
|
$delivery_contacts_stmt = DBA::select('contact', ['id', 'url', 'network', 'batch'], $condition);
|
2017-11-19 13:59:55 -05:00
|
|
|
} else {
|
|
|
|
// find ancestors
|
2018-12-04 23:49:48 -05:00
|
|
|
$condition = ['id' => $target_id, 'visible' => true, 'moderated' => false];
|
2018-06-17 17:35:33 -04:00
|
|
|
$target_item = Item::selectFirst([], $condition);
|
2017-11-19 13:59:55 -05:00
|
|
|
|
2018-07-21 08:46:04 -04:00
|
|
|
if (!DBA::isResult($target_item) || !intval($target_item['parent'])) {
|
2017-11-19 13:59:55 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-01-17 18:06:27 -05:00
|
|
|
if (!empty($target_item['contact-uid'])) {
|
|
|
|
$uid = $target_item['contact-uid'];
|
|
|
|
} elseif (!empty($target_item['uid'])) {
|
|
|
|
$uid = $target_item['uid'];
|
|
|
|
} else {
|
2018-12-04 23:49:48 -05:00
|
|
|
Logger::log('Only public users for item ' . $target_id, Logger::DEBUG);
|
2019-01-17 18:06:27 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-12-04 23:49:48 -05:00
|
|
|
$condition = ['parent' => $target_item['parent'], 'visible' => true, 'moderated' => false];
|
2018-06-17 17:35:33 -04:00
|
|
|
$params = ['order' => ['id']];
|
2018-12-04 23:49:48 -05:00
|
|
|
$items_stmt = Item::select([], $condition, $params);
|
|
|
|
if (!DBA::isResult($items_stmt)) {
|
2017-11-19 13:59:55 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-12-04 23:49:48 -05:00
|
|
|
$items = Item::inArray($items_stmt);
|
2018-06-17 17:35:33 -04:00
|
|
|
|
2017-11-19 13:59:55 -05:00
|
|
|
// avoid race condition with deleting entries
|
|
|
|
if ($items[0]['deleted']) {
|
|
|
|
foreach ($items as $item) {
|
|
|
|
$item['deleted'] = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((count($items) == 1) && ($items[0]['id'] === $target_item['id']) && ($items[0]['uri'] === $items[0]['parent-uri'])) {
|
2018-11-05 15:35:17 -05:00
|
|
|
Logger::log('Top level post');
|
2017-11-19 13:59:55 -05:00
|
|
|
$top_level = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-19 18:12:37 -05:00
|
|
|
$owner = User::getOwnerDataById($uid);
|
|
|
|
if (!$owner) {
|
2017-11-19 13:59:55 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Should the post be transmitted to Diaspora?
|
|
|
|
$diaspora_delivery = true;
|
|
|
|
|
|
|
|
// If this is a public conversation, notify the feed hub
|
|
|
|
$public_message = true;
|
|
|
|
|
|
|
|
// Do a PuSH
|
|
|
|
$push_notify = false;
|
|
|
|
|
|
|
|
// Deliver directly to a forum, don't PuSH
|
|
|
|
$direct_forum_delivery = false;
|
|
|
|
|
2018-02-14 00:05:00 -05:00
|
|
|
$followup = false;
|
|
|
|
$recipients_followup = [];
|
2017-11-19 13:59:55 -05:00
|
|
|
|
2018-12-04 23:49:48 -05:00
|
|
|
if (!empty($target_item) && !empty($items)) {
|
2017-11-19 13:59:55 -05:00
|
|
|
$parent = $items[0];
|
|
|
|
|
2019-02-11 15:30:08 -05:00
|
|
|
if (!self::isRemovalActivity($cmd, $owner, Protocol::ACTIVITYPUB)) {
|
|
|
|
$delivery_queue_count += self::activityPubDelivery($cmd, $target_item, $parent, $a->queue['priority'], $a->queue['created']);
|
|
|
|
}
|
2018-10-05 23:16:38 -04:00
|
|
|
|
2018-06-03 04:36:05 -04:00
|
|
|
$fields = ['network', 'author-id', 'owner-id'];
|
|
|
|
$condition = ['uri' => $target_item["thr-parent"], 'uid' => $target_item["uid"]];
|
2018-07-07 14:14:16 -04:00
|
|
|
$thr_parent = Item::selectFirst($fields, $condition);
|
2017-11-19 13:59:55 -05:00
|
|
|
|
2018-11-05 15:35:17 -05:00
|
|
|
Logger::log('GUID: ' . $target_item["guid"] . ': Parent is ' . $parent['network'] . '. Thread parent is ' . $thr_parent['network'], Logger::DEBUG);
|
2017-11-19 13:59:55 -05: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.
|
|
|
|
|
|
|
|
// if $parent['wall'] == 1 we will already have the parent message in our array
|
|
|
|
// and we will relay the whole lot.
|
|
|
|
|
2018-10-09 13:58:58 -04:00
|
|
|
$localhost = str_replace('www.','',$a->getHostName());
|
2017-11-19 13:59:55 -05:00
|
|
|
if (strpos($localhost,':')) {
|
|
|
|
$localhost = substr($localhost,0,strpos($localhost,':'));
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
$relay_to_owner = false;
|
|
|
|
|
2018-01-17 18:22:01 -05:00
|
|
|
if (!$top_level && ($parent['wall'] == 0) && (stristr($target_item['uri'],$localhost))) {
|
2017-11-19 13:59:55 -05:00
|
|
|
$relay_to_owner = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (($cmd === 'uplink') && (intval($parent['forum_mode']) == 1) && !$top_level) {
|
|
|
|
$relay_to_owner = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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-12-19 18:12:37 -05:00
|
|
|
if (!$target_item['origin']) {
|
2017-11-19 13:59:55 -05:00
|
|
|
$relay_to_owner = false;
|
|
|
|
}
|
|
|
|
if ($parent['origin']) {
|
|
|
|
$relay_to_owner = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Special treatment for forum posts
|
2018-08-31 23:23:12 -04:00
|
|
|
if (self::isForumPost($target_item, $owner)) {
|
|
|
|
$relay_to_owner = true;
|
|
|
|
$direct_forum_delivery = true;
|
|
|
|
}
|
2017-11-19 13:59:55 -05:00
|
|
|
|
2018-08-31 23:23:12 -04:00
|
|
|
// Avoid that comments in a forum thread are sent to OStatus
|
|
|
|
if (self::isForumPost($parent, $owner)) {
|
|
|
|
$direct_forum_delivery = true;
|
2017-11-19 13:59:55 -05:00
|
|
|
}
|
2018-08-31 23:23:12 -04:00
|
|
|
|
2017-11-19 13:59:55 -05:00
|
|
|
if ($relay_to_owner) {
|
|
|
|
// local followup to remote post
|
|
|
|
$followup = true;
|
|
|
|
$public_message = false; // not public
|
2018-01-15 08:05:12 -05:00
|
|
|
$recipients = [$parent['contact-id']];
|
|
|
|
$recipients_followup = [$parent['contact-id']];
|
2017-11-19 13:59:55 -05:00
|
|
|
|
2018-11-05 15:35:17 -05:00
|
|
|
Logger::log('Followup ' . $target_item['guid'] . ' to ' . $parent['contact-id'], Logger::DEBUG);
|
2017-12-27 16:51:16 -05:00
|
|
|
|
2017-11-19 13:59:55 -05:00
|
|
|
//if (!$target_item['private'] && $target_item['wall'] &&
|
|
|
|
if (!$target_item['private'] &&
|
|
|
|
(strlen($target_item['allow_cid'].$target_item['allow_gid'].
|
|
|
|
$target_item['deny_cid'].$target_item['deny_gid']) == 0))
|
|
|
|
$push_notify = true;
|
|
|
|
|
2018-08-11 16:40:44 -04:00
|
|
|
if (($thr_parent && ($thr_parent['network'] == Protocol::OSTATUS)) || ($parent['network'] == Protocol::OSTATUS)) {
|
2017-11-19 13:59:55 -05:00
|
|
|
$push_notify = true;
|
|
|
|
|
2018-08-11 16:40:44 -04:00
|
|
|
if ($parent["network"] == Protocol::OSTATUS) {
|
2017-11-19 13:59:55 -05:00
|
|
|
// Distribute the message to the DFRN contacts as if this wasn't a followup since OStatus can't relay comments
|
|
|
|
// Currently it is work at progress
|
2018-12-05 00:35:52 -05:00
|
|
|
$condition = ['uid' => $uid, 'network' => Protocol::DFRN, 'blocked' => false, 'pending' => false, 'archive' => false];
|
|
|
|
$followup_contacts_stmt = DBA::select('contact', ['id'], $condition);
|
|
|
|
while($followup_contact = DBA::fetch($followup_contacts_stmt)) {
|
|
|
|
$recipients_followup[] = $followup_contact['id'];
|
2017-11-19 13:59:55 -05:00
|
|
|
}
|
2018-12-05 00:35:52 -05:00
|
|
|
DBA::close($followup_contacts_stmt);
|
2017-11-19 13:59:55 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($direct_forum_delivery) {
|
|
|
|
$push_notify = false;
|
|
|
|
}
|
|
|
|
|
2018-11-05 15:35:17 -05:00
|
|
|
Logger::log('Notify ' . $target_item["guid"] .' via PuSH: ' . ($push_notify ? "Yes":"No"), Logger::DEBUG);
|
2017-11-19 13:59:55 -05:00
|
|
|
} else {
|
|
|
|
$followup = false;
|
|
|
|
|
2018-11-05 15:35:17 -05:00
|
|
|
Logger::log('Distributing directly ' . $target_item["guid"], Logger::DEBUG);
|
2017-11-19 13:59:55 -05:00
|
|
|
|
|
|
|
// don't send deletions onward for other people's stuff
|
|
|
|
|
2017-12-19 18:12:37 -05:00
|
|
|
if ($target_item['deleted'] && !intval($target_item['wall'])) {
|
2018-11-05 15:35:17 -05:00
|
|
|
Logger::log('Ignoring delete notification for non-wall item');
|
2017-11-19 13:59:55 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-12-19 18:12:37 -05:00
|
|
|
if (strlen($parent['allow_cid'])
|
|
|
|
|| strlen($parent['allow_gid'])
|
|
|
|
|| strlen($parent['deny_cid'])
|
|
|
|
|| strlen($parent['deny_gid'])) {
|
2017-11-19 13:59:55 -05:00
|
|
|
$public_message = false; // private recipients, not public
|
|
|
|
}
|
|
|
|
|
|
|
|
$allow_people = expand_acl($parent['allow_cid']);
|
2017-12-09 13:45:17 -05:00
|
|
|
$allow_groups = Group::expand(expand_acl($parent['allow_gid']),true);
|
2017-11-19 13:59:55 -05:00
|
|
|
$deny_people = expand_acl($parent['deny_cid']);
|
2017-12-09 13:45:17 -05:00
|
|
|
$deny_groups = Group::expand(expand_acl($parent['deny_gid']));
|
2017-11-19 13:59:55 -05: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
|
|
|
|
|
2017-12-19 18:12:37 -05:00
|
|
|
if ((intval($parent['forum_mode']) == 1) && !$top_level && ($cmd !== 'uplink')) {
|
2018-12-04 23:49:48 -05:00
|
|
|
Worker::add($a->queue['priority'], 'Notifier', 'uplink', $target_id);
|
2017-11-19 13:59:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($items as $item) {
|
|
|
|
$recipients[] = $item['contact-id'];
|
|
|
|
// pull out additional tagged people to notify (if public message)
|
|
|
|
if ($public_message && strlen($item['inform'])) {
|
|
|
|
$people = explode(',',$item['inform']);
|
|
|
|
foreach ($people as $person) {
|
|
|
|
if (substr($person,0,4) === 'cid:') {
|
|
|
|
$recipients[] = intval(substr($person,4));
|
|
|
|
} else {
|
|
|
|
$url_recipients[] = substr($person,4);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-19 18:12:37 -05:00
|
|
|
if (count($url_recipients)) {
|
2018-12-04 23:49:48 -05:00
|
|
|
Logger::log('Deliver ' . $target_item["guid"] . ' to _recipients ' . json_encode($url_recipients));
|
2017-12-19 18:12:37 -05:00
|
|
|
}
|
2017-11-19 13:59:55 -05:00
|
|
|
|
2018-11-04 18:17:41 -05:00
|
|
|
$recipients = array_unique(array_merge($recipients, $allow_people, $allow_groups));
|
|
|
|
$deny = array_unique(array_merge($deny_people, $deny_groups));
|
|
|
|
$recipients = array_diff($recipients, $deny);
|
2018-12-05 22:23:24 -05:00
|
|
|
|
|
|
|
// If this is a public message and pubmail is set on the parent, include all your email contacts
|
|
|
|
if (
|
|
|
|
function_exists('imap_open')
|
|
|
|
&& !Config::get('system','imap_disabled')
|
|
|
|
&& $public_message
|
|
|
|
&& intval($target_item['pubmail'])
|
|
|
|
) {
|
|
|
|
$mail_contacts_stmt = DBA::select('contact', ['id'], ['uid' => $uid, 'network' => Protocol::MAIL]);
|
|
|
|
while ($mail_contact = DBA::fetch($mail_contacts_stmt)) {
|
|
|
|
$recipients[] = $mail_contact['id'];
|
|
|
|
}
|
|
|
|
DBA::close($mail_contacts_stmt);
|
|
|
|
}
|
2017-11-19 13:59:55 -05: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.
|
2018-08-11 16:40:44 -04:00
|
|
|
if (($thr_parent && ($thr_parent['network'] == Protocol::OSTATUS)) || ($parent['network'] == Protocol::OSTATUS)) {
|
2017-11-19 13:59:55 -05:00
|
|
|
$diaspora_delivery = false;
|
|
|
|
|
2018-10-30 09:58:45 -04:00
|
|
|
Logger::log('Some parent is OStatus for '.$target_item["guid"]." - Author: ".$thr_parent['author-id']." - Owner: ".$thr_parent['owner-id'], Logger::DEBUG);
|
2017-11-19 13:59:55 -05:00
|
|
|
|
|
|
|
// Send a salmon to the parent author
|
2018-07-20 08:19:26 -04:00
|
|
|
$probed_contact = DBA::selectFirst('contact', ['url', 'notify'], ['id' => $thr_parent['author-id']]);
|
2018-07-21 08:46:04 -04:00
|
|
|
if (DBA::isResult($probed_contact) && !empty($probed_contact["notify"])) {
|
2018-10-29 17:20:46 -04:00
|
|
|
Logger::log('Notify parent author '.$probed_contact["url"].': '.$probed_contact["notify"]);
|
2017-11-19 13:59:55 -05:00
|
|
|
$url_recipients[$probed_contact["notify"]] = $probed_contact["notify"];
|
|
|
|
}
|
|
|
|
|
|
|
|
// Send a salmon to the parent owner
|
2018-07-20 08:19:26 -04:00
|
|
|
$probed_contact = DBA::selectFirst('contact', ['url', 'notify'], ['id' => $thr_parent['owner-id']]);
|
2018-07-21 08:46:04 -04:00
|
|
|
if (DBA::isResult($probed_contact) && !empty($probed_contact["notify"])) {
|
2018-10-29 17:20:46 -04:00
|
|
|
Logger::log('Notify parent owner '.$probed_contact["url"].': '.$probed_contact["notify"]);
|
2017-11-19 13:59:55 -05:00
|
|
|
$url_recipients[$probed_contact["notify"]] = $probed_contact["notify"];
|
|
|
|
}
|
|
|
|
|
|
|
|
// Send a salmon notification to every person we mentioned in the post
|
|
|
|
$arr = explode(',',$target_item['tag']);
|
|
|
|
foreach ($arr as $x) {
|
2018-10-30 09:58:45 -04:00
|
|
|
//Logger::log('Checking tag '.$x, Logger::DEBUG);
|
2017-11-19 13:59:55 -05:00
|
|
|
$matches = null;
|
|
|
|
if (preg_match('/@\[url=([^\]]*)\]/',$x,$matches)) {
|
|
|
|
$probed_contact = Probe::uri($matches[1]);
|
|
|
|
if ($probed_contact["notify"] != "") {
|
2018-10-29 17:20:46 -04:00
|
|
|
Logger::log('Notify mentioned user '.$probed_contact["url"].': '.$probed_contact["notify"]);
|
2017-11-19 13:59:55 -05:00
|
|
|
$url_recipients[$probed_contact["notify"]] = $probed_contact["notify"];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// It only makes sense to distribute answers to OStatus messages to Friendica and OStatus - but not Diaspora
|
2018-09-17 17:13:08 -04:00
|
|
|
$networks = [Protocol::OSTATUS, Protocol::DFRN];
|
2017-11-19 13:59:55 -05:00
|
|
|
} else {
|
2018-09-17 17:13:08 -04:00
|
|
|
$networks = [Protocol::OSTATUS, Protocol::DFRN, Protocol::DIASPORA, Protocol::MAIL];
|
2017-11-19 13:59:55 -05:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$public_message = false;
|
|
|
|
}
|
|
|
|
|
2018-12-05 00:35:52 -05:00
|
|
|
if (empty($delivery_contacts_stmt)) {
|
2018-05-01 02:37:12 -04:00
|
|
|
if ($followup) {
|
|
|
|
$recipients = $recipients_followup;
|
|
|
|
}
|
|
|
|
$condition = ['id' => $recipients, 'self' => false,
|
|
|
|
'blocked' => false, 'pending' => false, 'archive' => false];
|
|
|
|
if (!empty($networks)) {
|
|
|
|
$condition['network'] = $networks;
|
|
|
|
}
|
2018-12-05 00:35:52 -05:00
|
|
|
$delivery_contacts_stmt = DBA::select('contact', ['id', 'url', 'network', 'batch'], $condition);
|
2017-11-19 13:59:55 -05:00
|
|
|
}
|
|
|
|
|
2018-11-04 18:17:41 -05:00
|
|
|
$conversants = [];
|
|
|
|
$batch_delivery = false;
|
2017-11-19 13:59:55 -05:00
|
|
|
|
2018-11-04 18:17:41 -05:00
|
|
|
if ($public_message && !in_array($cmd, [Delivery::MAIL, Delivery::SUGGESTION]) && !$followup) {
|
2018-12-05 00:35:52 -05:00
|
|
|
$relay_list = [];
|
2017-11-19 13:59:55 -05:00
|
|
|
|
|
|
|
if ($diaspora_delivery) {
|
2018-11-04 18:17:41 -05:00
|
|
|
$batch_delivery = true;
|
|
|
|
|
2018-12-05 00:35:52 -05:00
|
|
|
$relay_list_stmt = DBA::p(
|
|
|
|
"SELECT
|
|
|
|
`batch`,
|
|
|
|
ANY_VALUE(`id`) AS `id`,
|
|
|
|
ANY_VALUE(`name`) AS `name`,
|
|
|
|
ANY_VALUE(`network`) AS `network`
|
|
|
|
FROM `contact`
|
|
|
|
WHERE `network` = ?
|
|
|
|
AND `batch` != ''
|
|
|
|
AND `uid` = ?
|
|
|
|
AND `rel` != ?
|
|
|
|
AND NOT `blocked`
|
|
|
|
AND NOT `pending`
|
|
|
|
AND NOT `archive`
|
|
|
|
GROUP BY `batch`",
|
|
|
|
Protocol::DIASPORA,
|
|
|
|
$owner['uid'],
|
|
|
|
Contact::SHARING
|
2017-11-19 13:59:55 -05:00
|
|
|
);
|
2018-12-05 00:35:52 -05:00
|
|
|
$relay_list = DBA::toArray($relay_list_stmt);
|
2018-01-12 15:52:43 -05:00
|
|
|
|
|
|
|
// Fetch the participation list
|
|
|
|
// The function will ensure that there are no duplicates
|
2018-12-05 00:35:52 -05:00
|
|
|
$relay_list = Diaspora::participantsForThread($target_id, $relay_list);
|
2018-01-12 15:52:43 -05:00
|
|
|
|
2019-01-19 07:30:16 -05:00
|
|
|
// Add the relay to the list, avoid duplicates.
|
|
|
|
// Don't send community posts to the relay. Forum posts via the Diaspora protocol are looking ugly.
|
|
|
|
if (!$followup && !self::isForumPost($target_item, $owner)) {
|
2018-12-05 00:35:52 -05:00
|
|
|
$relay_list = Diaspora::relayList($target_id, $relay_list);
|
2018-04-11 15:01:25 -04:00
|
|
|
}
|
2017-11-19 13:59:55 -05:00
|
|
|
}
|
|
|
|
|
2018-09-17 17:13:08 -04:00
|
|
|
$condition = ['network' => Protocol::DFRN, 'uid' => $owner['uid'], 'blocked' => false,
|
2018-07-24 22:53:46 -04:00
|
|
|
'pending' => false, 'archive' => false, 'rel' => [Contact::FOLLOWER, Contact::FRIEND]];
|
|
|
|
|
2019-01-30 14:33:08 -05:00
|
|
|
$r2 = DBA::toArray(DBA::select('contact', ['id', 'url', 'name', 'network'], $condition));
|
2018-01-12 15:52:43 -05:00
|
|
|
|
2018-12-05 00:35:52 -05:00
|
|
|
$r = array_merge($r2, $relay_list);
|
2017-11-19 13:59:55 -05:00
|
|
|
|
2018-07-21 08:46:04 -04:00
|
|
|
if (DBA::isResult($r)) {
|
2017-11-19 13:59:55 -05:00
|
|
|
foreach ($r as $rr) {
|
2019-02-11 15:30:08 -05:00
|
|
|
if (self::isRemovalActivity($cmd, $owner, $rr['network'])) {
|
|
|
|
Logger::log('Skipping dropping for ' . $rr['url'] . ' since the network supports account removal commands.', Logger::DEBUG);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-01-30 14:33:08 -05:00
|
|
|
if (Config::get('debug', 'total_ap_delivery') && !empty($rr['url']) && ($rr['network'] == Protocol::DFRN) && !empty(APContact::getByURL($rr['url'], false))) {
|
|
|
|
Logger::log('Skipping contact ' . $rr['url'] . ' since it will be delivered via AP', Logger::DEBUG);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-11-04 18:17:41 -05:00
|
|
|
$conversants[] = $rr['id'];
|
2018-12-07 00:52:14 -05:00
|
|
|
|
|
|
|
$delivery_queue_count++;
|
|
|
|
|
2018-12-04 23:49:48 -05:00
|
|
|
Logger::log('Public delivery of item ' . $target_item["guid"] . ' (' . $target_id . ') to ' . json_encode($rr), Logger::DEBUG);
|
2019-01-19 07:30:16 -05:00
|
|
|
|
|
|
|
// Ensure that posts with our own protocol arrives before Diaspora posts arrive.
|
|
|
|
// Situation is that sometimes Friendica servers receive Friendica posts over the Diaspora protocol first.
|
|
|
|
// The conversion in Markdown reduces the formatting, so these posts should arrive after the Friendica posts.
|
|
|
|
if ($rr['network'] == Protocol::DIASPORA) {
|
|
|
|
$deliver_options = ['priority' => $a->queue['priority'], 'dont_fork' => true];
|
|
|
|
} else {
|
|
|
|
$deliver_options = ['priority' => $a->queue['priority'], 'created' => $a->queue['created'], 'dont_fork' => true];
|
|
|
|
}
|
2018-12-04 23:49:48 -05:00
|
|
|
Worker::add($deliver_options, 'Delivery', $cmd, $target_id, (int)$rr['id']);
|
2018-11-04 18:17:41 -05:00
|
|
|
}
|
|
|
|
}
|
2017-11-19 13:59:55 -05:00
|
|
|
|
2018-11-04 18:17:41 -05:00
|
|
|
$push_notify = true;
|
|
|
|
}
|
2017-11-19 13:59:55 -05:00
|
|
|
|
2018-11-04 18:17:41 -05:00
|
|
|
// delivery loop
|
2018-12-05 00:35:52 -05:00
|
|
|
while ($contact = DBA::fetch($delivery_contacts_stmt)) {
|
2019-02-11 15:30:08 -05:00
|
|
|
if (self::isRemovalActivity($cmd, $owner, $contact['network'])) {
|
|
|
|
Logger::log('Skipping dropping for ' . $contact['url'] . ' since the network supports account removal commands.', Logger::DEBUG);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-01-30 14:33:08 -05:00
|
|
|
if (Config::get('debug', 'total_ap_delivery') && ($contact['network'] == Protocol::DFRN) && !empty(APContact::getByURL($contact['url'], false))) {
|
|
|
|
Logger::log('Skipping contact ' . $contact['url'] . ' since it will be delivered via AP', Logger::DEBUG);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-12-05 00:35:52 -05:00
|
|
|
// Don't deliver to Diaspora if it already had been done as batch delivery
|
|
|
|
if (($contact['network'] == Protocol::DIASPORA) && $batch_delivery) {
|
|
|
|
Logger::log('Already delivered id ' . $target_id . ' via batch to ' . json_encode($contact), Logger::DEBUG);
|
|
|
|
continue;
|
|
|
|
}
|
2018-11-04 18:17:41 -05:00
|
|
|
|
2018-12-05 00:35:52 -05:00
|
|
|
// Don't deliver to folks who have already been delivered to
|
|
|
|
if (in_array($contact['id'], $conversants)) {
|
|
|
|
Logger::log('Already delivered id ' . $target_id. ' to ' . json_encode($contact), Logger::DEBUG);
|
|
|
|
continue;
|
|
|
|
}
|
2018-11-04 18:17:41 -05:00
|
|
|
|
2018-12-07 00:52:14 -05:00
|
|
|
$delivery_queue_count++;
|
|
|
|
|
2018-12-05 00:35:52 -05:00
|
|
|
Logger::log('Delivery of item ' . $target_id . ' to ' . json_encode($contact), Logger::DEBUG);
|
2019-01-19 07:30:16 -05:00
|
|
|
|
2018-12-05 00:35:52 -05:00
|
|
|
// Ensure that posts with our own protocol arrives before Diaspora posts arrive.
|
|
|
|
// Situation is that sometimes Friendica servers receive Friendica posts over the Diaspora protocol first.
|
|
|
|
// The conversion in Markdown reduces the formatting, so these posts should arrive after the Friendica posts.
|
|
|
|
if ($contact['network'] == Protocol::DIASPORA) {
|
|
|
|
$deliver_options = ['priority' => $a->queue['priority'], 'dont_fork' => true];
|
|
|
|
} else {
|
|
|
|
$deliver_options = ['priority' => $a->queue['priority'], 'created' => $a->queue['created'], 'dont_fork' => true];
|
2017-11-19 13:59:55 -05:00
|
|
|
}
|
2018-12-05 00:35:52 -05:00
|
|
|
Worker::add($deliver_options, 'Delivery', $cmd, $target_id, (int)$contact['id']);
|
2018-11-04 18:17:41 -05:00
|
|
|
}
|
2018-12-05 00:35:52 -05:00
|
|
|
DBA::close($delivery_contacts_stmt);
|
2017-11-19 13:59:55 -05:00
|
|
|
|
2018-12-05 22:23:24 -05:00
|
|
|
$url_recipients = array_filter($url_recipients);
|
2018-11-04 18:17:41 -05: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.
|
2018-12-05 22:23:24 -05:00
|
|
|
if (!Config::get('system', 'dfrn_only') && count($url_recipients) && ($public_message || $push_notify) && !empty($target_item)) {
|
2018-12-07 00:52:14 -05:00
|
|
|
$delivery_queue_count += count($url_recipients);
|
2018-11-04 18:17:41 -05:00
|
|
|
$slap = OStatus::salmon($target_item, $owner);
|
|
|
|
foreach ($url_recipients as $url) {
|
2018-12-05 22:23:24 -05:00
|
|
|
Logger::log('Salmon delivery of item ' . $target_id . ' to ' . $url);
|
|
|
|
/// @TODO Redeliver/queue these items on failure, though there is no contact record
|
|
|
|
Salmon::slapper($owner, $url, $slap);
|
2018-12-07 00:52:14 -05:00
|
|
|
ItemDeliveryData::incrementQueueDone($target_id);
|
2018-11-04 18:17:41 -05:00
|
|
|
}
|
2017-11-19 13:59:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Notify PuSH subscribers (Used for OStatus distribution of regular posts)
|
|
|
|
if ($push_notify) {
|
2018-12-04 23:49:48 -05:00
|
|
|
Logger::log('Activating internal PuSH for item '.$target_id, Logger::DEBUG);
|
2017-11-19 13:59:55 -05:00
|
|
|
|
|
|
|
// Handling the pubsubhubbub requests
|
2018-05-18 23:56:29 -04:00
|
|
|
PushSubscriber::publishFeed($owner['uid'], $a->queue['priority']);
|
2017-11-19 13:59:55 -05:00
|
|
|
}
|
|
|
|
|
2018-12-05 22:23:24 -05:00
|
|
|
if (!empty($target_item)) {
|
|
|
|
Logger::log('Calling hooks for ' . $cmd . ' ' . $target_id, Logger::DEBUG);
|
2017-11-19 13:59:55 -05:00
|
|
|
|
2018-12-07 00:52:14 -05:00
|
|
|
if (in_array($cmd, [Delivery::POST, Delivery::COMMENT])) {
|
|
|
|
ItemDeliveryData::update($target_item['id'], ['queue_count' => $delivery_queue_count]);
|
|
|
|
}
|
|
|
|
|
2018-10-21 01:15:02 -04:00
|
|
|
Hook::fork($a->queue['priority'], 'notifier_normal', $target_item);
|
2017-11-19 13:59:55 -05:00
|
|
|
|
2018-12-05 22:23:24 -05:00
|
|
|
Hook::callAll('notifier_end', $target_item);
|
|
|
|
}
|
2017-11-19 13:59:55 -05:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
2018-08-31 23:23:12 -04:00
|
|
|
|
2019-02-11 15:30:08 -05:00
|
|
|
/**
|
|
|
|
* Checks if the current action is a deletion command of a account removal activity
|
|
|
|
* For Diaspora and ActivityPub we don't need to send single item deletion calls.
|
|
|
|
* These protocols do have a dedicated command for deleting a whole account.
|
|
|
|
*
|
|
|
|
* @param string $cmd Notifier command
|
|
|
|
* @param array $owner Sender of the post
|
|
|
|
* @param string $network Receiver network
|
|
|
|
* @return bool
|
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @throws \ImagickException
|
|
|
|
*/
|
|
|
|
private static function isRemovalActivity($cmd, $owner, $network)
|
|
|
|
{
|
|
|
|
return ($cmd == Delivery::DELETION) && $owner['account_removed'] && in_array($contact['network'], [Protocol::ACTIVITYPUB, Protocol::DIASPORA]);
|
|
|
|
}
|
|
|
|
|
2018-12-05 00:06:48 -05:00
|
|
|
/**
|
|
|
|
* @param int $self_user_id
|
2019-01-06 16:06:53 -05:00
|
|
|
* @param int $priority The priority the Notifier queue item was created with
|
|
|
|
* @param string $created The date the Notifier queue item was created on
|
2018-12-05 00:06:48 -05:00
|
|
|
* @return bool
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @throws \ImagickException
|
2018-12-05 00:06:48 -05:00
|
|
|
*/
|
|
|
|
private static function notifySelfRemoval($self_user_id, $priority, $created)
|
|
|
|
{
|
|
|
|
$owner = User::getOwnerDataById($self_user_id);
|
|
|
|
if (!$owner) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$contacts_stmt = DBA::select('contact', [], ['self' => false, 'uid' => $self_user_id]);
|
|
|
|
if (!DBA::isResult($contacts_stmt)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
while($contact = DBA::fetch($contacts_stmt)) {
|
|
|
|
Contact::terminateFriendship($owner, $contact, true);
|
|
|
|
}
|
2018-12-05 00:35:52 -05:00
|
|
|
DBA::close($contacts_stmt);
|
2018-12-05 00:06:48 -05:00
|
|
|
|
|
|
|
$inboxes = ActivityPub\Transmitter::fetchTargetInboxesforUser(0);
|
|
|
|
foreach ($inboxes as $inbox) {
|
|
|
|
Logger::log('Account removal for user ' . $self_user_id . ' to ' . $inbox .' via ActivityPub', Logger::DEBUG);
|
|
|
|
Worker::add(['priority' => PRIORITY_NEGLIGIBLE, 'created' => $created, 'dont_fork' => true],
|
|
|
|
'APDelivery', Delivery::REMOVAL, '', $inbox, $self_user_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-12-04 23:49:48 -05:00
|
|
|
/**
|
|
|
|
* @param string $cmd
|
|
|
|
* @param array $target_item
|
|
|
|
* @param array $parent
|
2019-01-06 16:06:53 -05:00
|
|
|
* @param int $priority The priority the Notifier queue item was created with
|
|
|
|
* @param string $created The date the Notifier queue item was created on
|
2018-12-07 00:52:14 -05:00
|
|
|
* @return int The number of delivery tasks created
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @throws \ImagickException
|
2018-12-04 23:49:48 -05:00
|
|
|
*/
|
|
|
|
private static function activityPubDelivery($cmd, array $target_item, array $parent, $priority, $created)
|
2018-10-05 23:16:38 -04:00
|
|
|
{
|
|
|
|
$inboxes = [];
|
|
|
|
|
2019-01-22 08:31:39 -05:00
|
|
|
$uid = $target_item['contact-uid'] ?: $target_item['uid'];
|
|
|
|
|
2018-10-05 23:16:38 -04:00
|
|
|
if ($target_item['origin']) {
|
2019-01-22 08:31:39 -05:00
|
|
|
$inboxes = ActivityPub\Transmitter::fetchTargetInboxes($target_item, $uid);
|
2018-12-04 23:49:48 -05:00
|
|
|
Logger::log('Origin item ' . $target_item['id'] . ' with URL ' . $target_item['uri'] . ' will be distributed.', Logger::DEBUG);
|
2018-10-06 09:16:52 -04:00
|
|
|
} elseif (!DBA::exists('conversation', ['item-uri' => $target_item['uri'], 'protocol' => Conversation::PARCEL_ACTIVITYPUB])) {
|
2018-12-04 23:49:48 -05:00
|
|
|
Logger::log('Remote item ' . $target_item['id'] . ' with URL ' . $target_item['uri'] . ' is no AP post. It will not be distributed.', Logger::DEBUG);
|
2018-12-07 00:52:14 -05:00
|
|
|
return 0;
|
2019-01-17 18:06:27 -05:00
|
|
|
} elseif ($parent['origin']) {
|
2018-10-20 03:53:45 -04:00
|
|
|
// Remote items are transmitted via the personal inboxes.
|
|
|
|
// Doing so ensures that the dedicated receiver will get the message.
|
2019-01-22 08:31:39 -05:00
|
|
|
$inboxes = ActivityPub\Transmitter::fetchTargetInboxes($parent, $uid, true, $target_item['id']);
|
2018-12-04 23:49:48 -05:00
|
|
|
Logger::log('Remote item ' . $target_item['id'] . ' with URL ' . $target_item['uri'] . ' will be distributed.', Logger::DEBUG);
|
2018-10-05 23:16:38 -04:00
|
|
|
}
|
|
|
|
|
2018-10-06 09:16:52 -04:00
|
|
|
if (empty($inboxes)) {
|
2018-12-04 23:49:48 -05:00
|
|
|
Logger::log('No inboxes found for item ' . $target_item['id'] . ' with URL ' . $target_item['uri'] . '. It will not be distributed.', Logger::DEBUG);
|
2018-12-07 00:52:14 -05:00
|
|
|
return 0;
|
2018-10-06 09:16:52 -04:00
|
|
|
}
|
|
|
|
|
2018-10-05 23:16:38 -04:00
|
|
|
// Fill the item cache
|
2018-12-04 23:49:48 -05:00
|
|
|
ActivityPub\Transmitter::createCachedActivityFromItem($target_item['id'], true);
|
2018-10-05 23:16:38 -04:00
|
|
|
|
|
|
|
foreach ($inboxes as $inbox) {
|
2018-12-04 23:49:48 -05:00
|
|
|
Logger::log('Deliver ' . $target_item['id'] .' to ' . $inbox .' via ActivityPub', Logger::DEBUG);
|
2018-10-05 23:16:38 -04:00
|
|
|
|
2018-12-04 23:49:48 -05:00
|
|
|
Worker::add(['priority' => $priority, 'created' => $created, 'dont_fork' => true],
|
2019-01-22 08:31:39 -05:00
|
|
|
'APDelivery', $cmd, $target_item['id'], $inbox, $uid);
|
2018-10-05 23:16:38 -04:00
|
|
|
}
|
2018-12-07 00:52:14 -05:00
|
|
|
|
|
|
|
return count($inboxes);
|
2018-10-05 23:16:38 -04:00
|
|
|
}
|
|
|
|
|
2018-12-04 23:49:48 -05:00
|
|
|
private static function isForumPost(array $item, array $owner)
|
|
|
|
{
|
2018-08-31 23:23:12 -04:00
|
|
|
if (($item['author-id'] == $item['owner-id']) ||
|
|
|
|
($owner['id'] == $item['contact-id']) ||
|
|
|
|
($item['uri'] != $item['parent-uri'])) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-01-28 01:23:06 -05:00
|
|
|
return self::isForum($item['contact-id']);
|
|
|
|
}
|
|
|
|
|
|
|
|
private static function isForum($contactid)
|
|
|
|
{
|
2018-08-31 23:23:12 -04:00
|
|
|
$fields = ['forum', 'prv'];
|
2019-01-28 01:23:06 -05:00
|
|
|
$condition = ['id' => $contactid];
|
2018-08-31 23:23:12 -04:00
|
|
|
$contact = DBA::selectFirst('contact', $fields, $condition);
|
|
|
|
if (!DBA::isResult($contact)) {
|
|
|
|
// Should never happen
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-01-28 01:23:06 -05:00
|
|
|
// Is it a forum?
|
2018-08-31 23:23:12 -04:00
|
|
|
return ($contact['forum'] || $contact['prv']);
|
|
|
|
}
|
2017-11-19 13:59:55 -05:00
|
|
|
}
|