2017-11-19 13:59:55 -05:00
< ? php
/**
2020-02-09 10:18:46 -05:00
* @ copyright Copyright ( C ) 2020 , Friendica
*
* @ license GNU AGPL version 3 or any later version
*
* This program is free software : you can redistribute it and / or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation , either version 3 of the
* License , or ( at your option ) any later version .
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU Affero General Public License for more details .
*
* You should have received a copy of the GNU Affero General Public License
* along with this program . If not , see < https :// www . gnu . org / licenses />.
*
2017-11-19 13:59:55 -05:00
*/
2020-02-09 10:18:46 -05:00
2017-11-19 13:59:55 -05:00
namespace Friendica\Worker ;
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-12-15 16:34:11 -05:00
use Friendica\DI ;
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 ;
2020-05-02 15:34:02 -04:00
use Friendica\Model\Post ;
2018-05-17 19:30:49 -04:00
use Friendica\Model\PushSubscriber ;
2020-05-05 01:11:59 -04:00
use Friendica\Model\Tag ;
2018-07-19 22:15:21 -04:00
use Friendica\Model\User ;
2020-08-09 14:42:25 -04:00
use Friendica\Protocol\Activity ;
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 ;
2020-11-15 18:28:05 -05:00
use Friendica\Protocol\Relay ;
2017-12-02 09:32:45 -05:00
use Friendica\Protocol\Salmon ;
2017-11-19 13:59:55 -05:00
/*
* The notifier is typically called with :
*
* Worker :: add ( PRIORITY_HIGH , " Notifier " , COMMAND , ITEM_ID );
*
2019-06-10 10:19:24 -04:00
* where COMMAND is one of the constants that are defined in Worker / Delivery . php
2017-11-19 13:59:55 -05:00
* 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
{
2021-02-14 09:24:48 -05:00
public static function execute ( string $cmd , int $post_uriid , int $sender_uid = 0 )
2018-07-09 22:39:59 -04:00
{
2019-12-15 16:34:11 -05:00
$a = DI :: app ();
2017-11-19 13:59:55 -05:00
2021-02-14 09:24:48 -05:00
Logger :: info ( 'Invoked' , [ 'cmd' => $cmd , 'target' => $post_uriid , 'sender_uid' => $sender_uid ]);
2021-02-15 02:44:51 -05:00
$target_id = $post_uriid ;
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 = [];
2019-11-22 03:01:23 -05:00
$parent = [];
$thr_parent = [];
2018-12-04 23:49:48 -05:00
$items = [];
2018-12-07 00:52:14 -05:00
$delivery_queue_count = 0 ;
2021-01-10 10:08:40 -05:00
$ap_contacts = [];
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' ];
2019-05-14 13:50:45 -04:00
$mail = ActivityPub\Transmitter :: ItemArrayFromMail ( $target_id );
2019-05-18 05:09:13 -04:00
$inboxes = ActivityPub\Transmitter :: fetchTargetInboxes ( $mail , $uid , true );
2020-12-14 23:33:14 -05:00
foreach ( $inboxes as $inbox => $receivers ) {
2021-01-10 10:08:40 -05:00
$ap_contacts = array_merge ( $ap_contacts , $receivers );
2019-10-06 17:59:23 -04:00
Logger :: info ( 'Delivery via ActivityPub' , [ 'cmd' => $cmd , 'target' => $target_id , 'inbox' => $inbox ]);
2019-05-14 13:50:45 -04:00
Worker :: add ([ 'priority' => PRIORITY_HIGH , 'created' => $a -> queue [ 'created' ], 'dont_fork' => true ],
2021-02-14 09:24:48 -05:00
'APDelivery' , $cmd , $target_id , $inbox , $uid , $receivers , $post_uriid );
2019-05-14 13:50:45 -04:00
}
2018-05-01 02:37:12 -04:00
} elseif ( $cmd == Delivery :: SUGGESTION ) {
2020-01-31 17:50:46 -05:00
$suggest = DI :: fsuggest () -> getById ( $target_id );
$uid = $suggest -> uid ;
$recipients [] = $suggest -> cid ;
2018-05-01 02:37:12 -04:00
} 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 ]];
2019-10-06 17:59:23 -04:00
$delivery_contacts_stmt = DBA :: select ( 'contact' , [ 'id' , 'url' , 'addr' , 'network' , 'protocol' , 'batch' ], $condition );
2017-11-19 13:59:55 -05:00
} else {
2021-02-19 01:30:38 -05:00
$post = Post :: selectFirst ([ 'id' ], [ 'uri-id' => $post_uriid , 'uid' => $sender_uid ]);
if ( ! DBA :: isResult ( $post )) {
Logger :: warning ( 'Post not found' , [ 'uri-id' => $post_uriid , 'uid' => $sender_uid ]);
return ;
}
$target_id = $post [ 'id' ];
2017-11-19 13:59:55 -05:00
// find ancestors
2021-02-13 14:56:03 -05:00
$condition = [ 'id' => $target_id , 'visible' => true ];
$target_item = Post :: selectFirst ( Item :: DELIVER_FIELDLIST , $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' ])) {
2019-10-06 17:59:23 -04:00
Logger :: info ( 'No target item' , [ 'cmd' => $cmd , 'target' => $target_id ]);
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 {
2019-10-06 17:59:23 -04:00
Logger :: info ( 'Only public users, quitting' , [ 'target' => $target_id ]);
2019-01-17 18:06:27 -05:00
return ;
}
2021-02-13 14:56:03 -05:00
$condition = [ 'parent' => $target_item [ 'parent' ], 'visible' => true ];
2018-06-17 17:35:33 -04:00
$params = [ 'order' => [ 'id' ]];
2021-02-13 14:56:03 -05:00
$items_stmt = Post :: select ( Item :: DELIVER_FIELDLIST , $condition , $params );
2018-12-04 23:49:48 -05:00
if ( ! DBA :: isResult ( $items_stmt )) {
2019-10-06 17:59:23 -04:00
Logger :: info ( 'No item found' , [ 'cmd' => $cmd , 'target' => $target_id ]);
2017-11-19 13:59:55 -05:00
return ;
}
2021-01-16 17:37:27 -05:00
$items = Post :: toArray ( $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 ;
}
}
2020-12-11 01:35:38 -05:00
$top_level = $target_item [ 'gravity' ] == GRAVITY_PARENT ;
2017-11-19 13:59:55 -05:00
}
2017-12-19 18:12:37 -05:00
$owner = User :: getOwnerDataById ( $uid );
if ( ! $owner ) {
2019-10-06 17:59:23 -04:00
Logger :: info ( 'Owner not found' , [ 'cmd' => $cmd , 'target' => $target_id ]);
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 ;
2020-03-02 02:57:23 -05:00
$unlisted = false ;
2017-11-19 13:59:55 -05:00
// 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 ];
2020-06-27 11:10:06 -04:00
$fields = [ 'network' , 'author-id' , 'author-link' , 'author-network' , 'owner-id' ];
2018-06-03 04:36:05 -04:00
$condition = [ 'uri' => $target_item [ " thr-parent " ], 'uid' => $target_item [ " uid " ]];
2021-01-15 23:14:58 -05:00
$thr_parent = Post :: selectFirst ( $fields , $condition );
2019-10-30 02:50:20 -04:00
if ( empty ( $thr_parent )) {
$thr_parent = $parent ;
}
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
2019-10-06 17:59:23 -04:00
if ( ! self :: isRemovalActivity ( $cmd , $owner , Protocol :: ACTIVITYPUB )) {
2021-01-10 10:08:40 -05:00
$apdelivery = self :: activityPubDelivery ( $cmd , $target_item , $parent , $thr_parent , $a -> queue [ 'priority' ], $a -> queue [ 'created' ], $owner );
$ap_contacts = $apdelivery [ 'contacts' ];
$delivery_queue_count += $apdelivery [ 'count' ];
2019-10-06 17:59:23 -04:00
}
2019-07-28 15:13:17 -04:00
// Only deliver threaded replies (comment to a comment) to Diaspora
// when the original comment author does support the Diaspora protocol.
2020-09-17 22:47:37 -04:00
if ( $thr_parent [ 'author-link' ] && $target_item [ 'parent-uri' ] != $target_item [ 'thr-parent' ]) {
2019-07-28 15:13:17 -04:00
$diaspora_delivery = Diaspora :: isSupportedByContactUrl ( $thr_parent [ 'author-link' ]);
Logger :: info ( 'Threaded comment' , [ 'diaspora_delivery' => ( int ) $diaspora_delivery ]);
}
2020-03-02 02:57:23 -05:00
$unlisted = $target_item [ 'private' ] == Item :: UNLISTED ;
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.
2019-12-15 18:47:24 -05:00
$localhost = str_replace ( 'www.' , '' , DI :: baseUrl () -> 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 ;
}
2019-06-10 10:19:24 -04:00
if (( $cmd === Delivery :: UPLINK ) && ( intval ( $parent [ 'forum_mode' ]) == 1 ) && ! $top_level ) {
2017-11-19 13:59:55 -05:00
$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
2019-03-14 14:44:41 -04:00
if ( Item :: isForumPost ( $target_item , $owner )) {
2018-08-31 23:23:12 -04:00
$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
2019-03-14 14:44:41 -04:00
if ( Item :: isForumPost ( $parent , $owner )) {
2018-08-31 23:23:12 -04:00
$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
2019-10-06 17:59:23 -04:00
Logger :: info ( 'Followup' , [ 'target' => $target_id , 'guid' => $target_item [ 'guid' ], 'to' => $parent [ 'contact-id' ]]);
2017-12-27 16:51:16 -05:00
2020-03-02 02:57:23 -05:00
if (( $target_item [ 'private' ] != Item :: PRIVATE ) &&
2017-11-19 13:59:55 -05:00
( 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 ;
2019-10-06 17:59:23 -04:00
Logger :: info ( 'Distributing directly' , [ 'target' => $target_id , 'guid' => $target_item [ 'guid' ]]);
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
}
2019-12-15 17:28:01 -05:00
$aclFormatter = DI :: aclFormatter ();
2019-10-22 18:40:14 -04:00
2019-11-01 09:13:29 -04:00
$allow_people = $aclFormatter -> expand ( $parent [ 'allow_cid' ]);
$allow_groups = Group :: expand ( $uid , $aclFormatter -> expand ( $parent [ 'allow_gid' ]), true );
$deny_people = $aclFormatter -> expand ( $parent [ 'deny_cid' ]);
$deny_groups = Group :: expand ( $uid , $aclFormatter -> expand ( $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
2020-08-09 14:42:25 -04:00
/// @todo Possibly we should not uplink when the author is the forum itself?
2017-11-19 13:59:55 -05:00
2020-08-09 14:42:25 -04:00
if (( intval ( $parent [ 'forum_mode' ]) == 1 ) && ! $top_level && ( $cmd !== Delivery :: UPLINK )
2021-02-14 09:24:48 -05:00
&& ( $target_item [ 'verb' ] != Activity :: ANNOUNCE )) {
Worker :: add ( $a -> queue [ 'priority' ], 'Notifier' , Delivery :: UPLINK , $post_uriid , $sender_uid );
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 )) {
2019-10-06 17:59:23 -04:00
Logger :: notice ( 'Deliver' , [ 'target' => $target_id , 'guid' => $target_item [ 'guid' ], 'recipients' => $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' )
2020-01-19 15:21:13 -05:00
&& ! DI :: config () -> get ( 'system' , 'imap_disabled' )
2018-12-05 22:23:24 -05:00
&& $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 " ])) {
2020-07-16 06:22:14 -04:00
Logger :: notice ( 'Notify parent author' , [ 'url' => $probed_contact [ " url " ], 'notify' => $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 " ])) {
2020-07-16 06:22:14 -04:00
Logger :: notice ( 'Notify parent owner' , [ 'url' => $probed_contact [ " url " ], 'notify' => $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
2020-05-05 01:11:59 -04:00
foreach ( Tag :: getByURIId ( $target_item [ 'uri-id' ], [ Tag :: MENTION , Tag :: EXCLUSIVE_MENTION , Tag :: IMPLICIT_MENTION ]) as $tag ) {
2020-07-16 06:22:14 -04:00
$probed_contact = Contact :: getByURL ( $tag [ 'url' ]);
if ( ! empty ( $probed_contact [ 'notify' ])) {
Logger :: notice ( 'Notify mentioned user' , [ 'url' => $probed_contact [ " url " ], 'notify' => $probed_contact [ " notify " ]]);
$url_recipients [ $probed_contact [ 'notify' ]] = $probed_contact [ 'notify' ];
2017-11-19 13:59:55 -05:00
}
}
// It only makes sense to distribute answers to OStatus messages to Friendica and OStatus - but not Diaspora
2019-07-28 15:13:17 -04:00
$networks = [ Protocol :: DFRN ];
} elseif ( $diaspora_delivery ) {
$networks = [ Protocol :: DFRN , Protocol :: DIASPORA , Protocol :: MAIL ];
2019-10-06 17:59:23 -04:00
if (( $parent [ 'network' ] == Protocol :: DIASPORA ) || ( $thr_parent [ 'network' ] == Protocol :: DIASPORA )) {
Logger :: info ( 'Add AP contacts' , [ 'target' => $target_id , 'guid' => $target_item [ 'guid' ]]);
$networks [] = Protocol :: ACTIVITYPUB ;
}
2017-11-19 13:59:55 -05:00
} else {
2019-07-28 15:13:17 -04:00
$networks = [ Protocol :: DFRN , 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 ;
}
2020-08-09 14:42:25 -04:00
$condition = [ 'id' => $recipients , 'self' => false , 'uid' => [ 0 , $uid ],
2018-05-01 02:37:12 -04:00
'blocked' => false , 'pending' => false , 'archive' => false ];
if ( ! empty ( $networks )) {
$condition [ 'network' ] = $networks ;
}
2019-10-06 17:59:23 -04:00
$delivery_contacts_stmt = DBA :: select ( 'contact' , [ 'id' , 'addr' , 'url' , 'network' , 'protocol' , '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
2020-03-02 02:57:23 -05:00
if ( $diaspora_delivery && ! $unlisted ) {
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
2020-11-15 18:28:05 -05:00
`batch` , `network` , `protocol` ,
2019-05-11 01:58:22 -04:00
ANY_VALUE ( `id` ) AS `id` ,
2019-10-31 03:33:25 -04:00
ANY_VALUE ( `url` ) AS `url` ,
2020-11-15 18:28:05 -05:00
ANY_VALUE ( `name` ) AS `name`
2018-12-05 00:35:52 -05:00
FROM `contact`
WHERE `network` = ?
AND `batch` != ''
AND `uid` = ?
AND `rel` != ?
AND NOT `blocked`
AND NOT `pending`
AND NOT `archive`
2020-11-15 18:28:05 -05:00
GROUP BY `batch` , `network` , `protocol` " ,
2018-12-05 00:35:52 -05:00
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
2020-05-06 11:20:49 -04:00
$relay_list = Diaspora :: participantsForThread ( $target_item , $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.
2020-08-09 14:42:25 -04:00
if ( ! $followup && ! Item :: isForumPost ( $target_item , $owner ) && ! self :: isForumPost ( $target_item )) {
2020-11-15 18:28:05 -05:00
$relay_list = Relay :: getList ( $target_id , $relay_list , [ Protocol :: DFRN , Protocol :: DIASPORA ]);
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 ]];
2021-01-10 10:08:40 -05:00
$contacts = DBA :: toArray ( DBA :: select ( 'contact' , [ 'id' , 'url' , 'addr' , 'name' , 'network' , 'protocol' ], $condition ));
2018-01-12 15:52:43 -05:00
2021-01-10 10:08:40 -05:00
$conversants = array_merge ( $contacts , $relay_list );
2017-11-19 13:59:55 -05:00
2021-02-14 09:24:48 -05:00
$delivery_queue_count += self :: delivery ( $cmd , $post_uriid , $sender_uid , $target_item , $thr_parent , $owner , $batch_delivery , true , $conversants , $ap_contacts , []);
2019-10-06 17:59:23 -04:00
2021-01-10 10:08:40 -05:00
$push_notify = true ;
}
2019-02-11 15:30:08 -05:00
2021-01-10 10:08:40 -05:00
$contacts = DBA :: toArray ( $delivery_contacts_stmt );
2021-02-14 09:24:48 -05:00
$delivery_queue_count += self :: delivery ( $cmd , $post_uriid , $sender_uid , $target_item , $thr_parent , $owner , $batch_delivery , false , $contacts , $ap_contacts , $conversants );
2019-01-30 14:33:08 -05:00
2021-01-10 10:08:40 -05:00
$delivery_queue_count += self :: deliverOStatus ( $target_id , $target_item , $owner , $url_recipients , $public_message , $push_notify );
2020-06-27 08:18:36 -04:00
2021-01-10 10:08:40 -05:00
if ( ! empty ( $target_item )) {
Logger :: log ( 'Calling hooks for ' . $cmd . ' ' . $target_id , Logger :: DEBUG );
2018-12-07 00:52:14 -05:00
2021-01-10 10:08:40 -05:00
Hook :: fork ( $a -> queue [ 'priority' ], 'notifier_normal' , $target_item );
2019-01-19 07:30:16 -05:00
2021-01-10 10:08:40 -05:00
Hook :: callAll ( 'notifier_end' , $target_item );
2019-09-01 23:25:05 -04:00
2021-01-10 10:08:40 -05:00
// Workaround for pure connector posts
if ( in_array ( $cmd , [ Delivery :: POST , Delivery :: POKE ])) {
if ( $delivery_queue_count == 0 ) {
Post\DeliveryData :: incrementQueueDone ( $target_item [ 'uri-id' ]);
$delivery_queue_count = 1 ;
2018-11-04 18:17:41 -05:00
}
2017-11-19 13:59:55 -05:00
2021-01-10 10:08:40 -05:00
Post\DeliveryData :: incrementQueueCount ( $target_item [ 'uri-id' ], $delivery_queue_count );
}
2018-11-04 18:17:41 -05:00
}
2017-11-19 13:59:55 -05:00
2021-01-10 10:08:40 -05:00
return ;
}
/**
* Deliver the message to the contacts
*
* @ param string $cmd
2021-02-14 09:24:48 -05:00
* @ param int $post_uriid
* @ param int $sender_uid
2021-01-10 10:08:40 -05:00
* @ param array $target_item
* @ param array $thr_parent
* @ param array $owner
* @ param bool $batch_delivery
* @ param array $contacts
* @ param array $ap_contacts
* @ param array $conversants
* @ return int
* @ throws InternalServerErrorException
* @ throws Exception
*/
2021-02-14 09:24:48 -05:00
private static function delivery ( string $cmd , int $post_uriid , int $sender_uid , array $target_item , array $thr_parent , array $owner , bool $batch_delivery , bool $in_batch , array $contacts , array $ap_contacts , array $conversants = [])
2021-01-10 10:08:40 -05:00
{
$a = DI :: app ();
$delivery_queue_count = 0 ;
foreach ( $contacts as $contact ) {
2020-01-11 13:25:48 -05:00
// Ensure that local contacts are delivered via DFRN
if ( Contact :: isLocal ( $contact [ 'url' ])) {
2020-01-11 13:28:04 -05:00
$contact [ 'network' ] = Protocol :: DFRN ;
2020-01-11 13:25:48 -05:00
}
2021-03-26 16:09:23 -04:00
// Deletions are always sent via DFRN as well.
// This is done until we can perform deletions of foreign comments on our own threads via AP.
if (( $cmd != Delivery :: DELETION ) && in_array ( $contact [ 'id' ], $ap_contacts )) {
2021-02-14 09:24:48 -05:00
Logger :: info ( 'Contact is already delivered via AP, so skip delivery via legacy DFRN/Diaspora' , [ 'target' => $post_uriid , 'uid' => $sender_uid , 'contact' => $contact [ 'url' ]]);
2019-10-06 17:59:23 -04:00
continue ;
}
2019-08-27 15:01:11 -04:00
if ( ! empty ( $contact [ 'id' ]) && Contact :: isArchived ( $contact [ 'id' ])) {
2021-02-14 09:24:48 -05:00
Logger :: info ( 'Contact is archived, so skip delivery' , [ 'target' => $post_uriid , 'uid' => $sender_uid , 'contact' => $contact [ 'url' ]]);
2019-08-27 15:01:11 -04:00
continue ;
}
2019-02-11 15:30:08 -05:00
if ( self :: isRemovalActivity ( $cmd , $owner , $contact [ 'network' ])) {
2021-02-14 09:24:48 -05:00
Logger :: info ( 'Contact does no supports account removal commands, so skip delivery' , [ 'target' => $post_uriid , 'uid' => $sender_uid , 'contact' => $contact [ 'url' ]]);
2019-02-11 15:30:08 -05:00
continue ;
}
2020-06-27 08:18:36 -04:00
if ( self :: skipActivityPubForDiaspora ( $contact , $target_item , $thr_parent )) {
2021-02-14 09:24:48 -05:00
Logger :: info ( 'Contact is from Diaspora, but the replied author is from ActivityPub, so skip delivery via Diaspora' , [ 'id' => $post_uriid , 'uid' => $sender_uid , 'url' => $contact [ 'url' ]]);
2020-06-27 08:18:36 -04:00
continue ;
}
2018-12-05 00:35:52 -05:00
// Don't deliver to Diaspora if it already had been done as batch delivery
2021-01-11 15:31:52 -05:00
if ( ! $in_batch && $batch_delivery && ( $contact [ 'network' ] == Protocol :: DIASPORA )) {
2021-02-14 09:24:48 -05:00
Logger :: info ( 'Diaspora contact is already delivered via batch' , [ 'id' => $post_uriid , 'uid' => $sender_uid , 'contact' => $contact ]);
2018-12-05 00:35:52 -05:00
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 )) {
2021-02-14 09:24:48 -05:00
Logger :: info ( 'Already delivery' , [ 'id' => $post_uriid , 'uid' => $sender_uid , 'contact' => $contact ]);
2018-12-05 00:35:52 -05:00
continue ;
}
2018-11-04 18:17:41 -05:00
2021-02-14 09:24:48 -05:00
Logger :: info ( 'Delivery' , [ 'batch' => $in_batch , 'target' => $post_uriid , 'uid' => $sender_uid , 'guid' => $target_item [ 'guid' ] ? ? '' , 'to' => $contact ]);
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.
2021-01-10 10:08:40 -05:00
// This is only important for high and medium priority tasks and not for Low priority jobs like deletions.
if (( $contact [ 'network' ] == Protocol :: DIASPORA ) && in_array ( $a -> queue [ 'priority' ], [ PRIORITY_HIGH , PRIORITY_MEDIUM ])) {
2018-12-05 00:35:52 -05:00
$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
}
2019-09-01 23:25:05 -04:00
2021-02-14 09:24:48 -05:00
if ( Worker :: add ( $deliver_options , 'Delivery' , $cmd , $post_uriid , ( int ) $contact [ 'id' ], $sender_uid )) {
2019-09-01 23:25:05 -04:00
$delivery_queue_count ++ ;
}
2018-11-04 18:17:41 -05:00
}
2021-01-10 10:08:40 -05:00
return $delivery_queue_count ;
}
/**
* Deliver the message via OStatus
*
* @ param int $target_id
* @ param array $target_item
* @ param array $owner
* @ param array $url_recipients
* @ param bool $public_message
* @ param bool $push_notify
* @ return int
* @ throws InternalServerErrorException
* @ throws Exception
*/
private static function deliverOStatus ( int $target_id , array $target_item , array $owner , array $url_recipients , bool $public_message , bool $push_notify )
{
$a = DI :: app ();
$delivery_queue_count = 0 ;
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.
2020-01-19 15:21:13 -05:00
if ( ! DI :: config () -> get ( 'system' , 'dfrn_only' ) && count ( $url_recipients ) && ( $public_message || $push_notify ) && ! empty ( $target_item )) {
2018-11-04 18:17:41 -05:00
$slap = OStatus :: salmon ( $target_item , $owner );
foreach ( $url_recipients as $url ) {
2021-01-10 10:08:40 -05:00
Logger :: info ( 'Salmon delivery' , [ 'item' => $target_id , 'to' => $url ]);
2019-09-01 23:25:05 -04:00
$delivery_queue_count ++ ;
2018-12-05 22:23:24 -05:00
Salmon :: slapper ( $owner , $url , $slap );
2020-05-02 15:34:02 -04:00
Post\DeliveryData :: incrementQueueDone ( $target_item [ 'uri-id' ], Post\DeliveryData :: OSTATUS );
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 ) {
2021-01-10 10:08:40 -05:00
Logger :: info ( 'Activating internal PuSH' , [ 'item' => $target_id ]);
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
}
2021-01-10 10:08:40 -05:00
return $delivery_queue_count ;
2017-11-19 13:59:55 -05:00
}
2018-08-31 23:23:12 -04:00
2020-06-27 08:18:36 -04:00
/**
* Checks if the current delivery shouldn ' t be transported to Diaspora .
* This is done for posts from AP authors or posts that are comments to AP authors .
*
* @ param array $contact Receiver of the post
* @ param array $item The post
* @ param array $thr_parent The thread parent
* @ return bool
*/
private static function skipActivityPubForDiaspora ( array $contact , array $item , array $thr_parent )
{
// No skipping needs to be done when delivery isn't done to Diaspora
if ( $contact [ 'network' ] != Protocol :: DIASPORA ) {
return false ;
}
// Skip the delivery to Diaspora if the item is from an ActivityPub author
2020-09-29 16:12:19 -04:00
if ( ! empty ( $item [ 'author-network' ]) && ( $item [ 'author-network' ] == Protocol :: ACTIVITYPUB )) {
2020-06-27 08:18:36 -04:00
return true ;
}
2020-09-22 16:14:37 -04:00
2020-06-27 08:18:36 -04:00
// Skip the delivery to Diaspora if the thread parent is from an ActivityPub author
2020-09-29 16:12:19 -04:00
if ( ! empty ( $thr_parent [ 'author-network' ]) && ( $thr_parent [ 'author-network' ] == Protocol :: ACTIVITYPUB )) {
2020-06-27 08:18:36 -04:00
return true ;
}
return false ;
}
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 )
{
2019-03-23 00:05:47 -04:00
return ( $cmd == Delivery :: DELETION ) && $owner [ 'account_removed' ] && in_array ( $network , [ Protocol :: ACTIVITYPUB , Protocol :: DIASPORA ]);
2019-02-11 15:30:08 -05:00
}
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 );
2020-12-14 23:33:14 -05:00
foreach ( $inboxes as $inbox => $receivers ) {
2019-05-14 13:50:45 -04:00
Logger :: info ( 'Account removal via ActivityPub' , [ 'uid' => $self_user_id , 'inbox' => $inbox ]);
2018-12-05 00:06:48 -05:00
Worker :: add ([ 'priority' => PRIORITY_NEGLIGIBLE , 'created' => $created , 'dont_fork' => true ],
2020-12-14 23:33:14 -05:00
'APDelivery' , Delivery :: REMOVAL , 0 , $inbox , $self_user_id , $receivers );
2018-12-05 00:06:48 -05:00
}
return true ;
}
2018-12-04 23:49:48 -05:00
/**
* @ param string $cmd
* @ param array $target_item
* @ param array $parent
2019-10-06 17:59:23 -04:00
* @ param array $thr_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
2021-01-10 10:08:40 -05:00
* @ return array 'count' => The number of delivery tasks created , 'contacts' => their contact ids
2019-01-06 16:06:53 -05:00
* @ throws \Friendica\Network\HTTPException\InternalServerErrorException
* @ throws \ImagickException
2018-12-04 23:49:48 -05:00
*/
2019-10-06 17:59:23 -04:00
private static function activityPubDelivery ( $cmd , array $target_item , array $parent , array $thr_parent , $priority , $created , $owner )
2018-10-05 23:16:38 -04:00
{
2020-12-28 01:49:23 -05:00
// Don't deliver via AP when the starting post isn't from a federated network
if ( ! in_array ( $parent [ 'network' ], Protocol :: FEDERATED )) {
2021-01-10 10:08:40 -05:00
return [ 'count' => 0 , 'contacts' => []];
2020-12-28 01:49:23 -05:00
}
2019-10-06 17:59:23 -04:00
// Don't deliver via AP when the starting post is delivered via Diaspora
if ( $parent [ 'network' ] == Protocol :: DIASPORA ) {
2021-01-10 10:08:40 -05:00
return [ 'count' => 0 , 'contacts' => []];
2019-10-06 17:59:23 -04:00
}
2020-12-11 01:35:38 -05:00
// Also don't deliver when the direct thread parent was delivered via Diaspora
2019-10-06 17:59:23 -04:00
if ( $thr_parent [ 'network' ] == Protocol :: DIASPORA ) {
2021-01-10 10:08:40 -05:00
return [ 'count' => 0 , 'contacts' => []];
2019-10-06 17:59:23 -04:00
}
2020-12-11 01:35:38 -05:00
// Posts from Diaspora contacts are transmitted via Diaspora
if ( $target_item [ 'network' ] == Protocol :: DIASPORA ) {
2021-01-10 10:08:40 -05:00
return [ 'count' => 0 , 'contacts' => []];
2020-12-11 01:35:38 -05:00
}
2018-10-05 23:16:38 -04:00
$inboxes = [];
2020-09-22 16:14:37 -04:00
$relay_inboxes = [];
2018-10-05 23:16:38 -04:00
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 );
2020-09-15 13:45:19 -04:00
if ( in_array ( $target_item [ 'private' ], [ Item :: PUBLIC ])) {
2020-11-15 18:28:05 -05:00
$inboxes = ActivityPub\Transmitter :: addRelayServerInboxesForItem ( $target_item [ 'id' ], $inboxes );
2020-09-23 11:20:16 -04:00
$relay_inboxes = ActivityPub\Transmitter :: addRelayServerInboxes ();
2020-09-15 13:45:19 -04:00
}
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 );
2019-03-14 14:44:41 -04:00
} elseif ( Item :: isForumPost ( $target_item , $owner )) {
$inboxes = ActivityPub\Transmitter :: fetchTargetInboxes ( $target_item , $uid , false , 0 , true );
Logger :: log ( 'Forum 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 );
2021-01-10 10:08:40 -05:00
return [ 'count' => 0 , 'contacts' => []];
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' ]);
2020-09-22 16:14:37 -04:00
if ( in_array ( $target_item [ 'private' ], [ Item :: PUBLIC ])) {
2020-11-15 18:28:05 -05:00
$inboxes = ActivityPub\Transmitter :: addRelayServerInboxesForItem ( $parent [ 'id' ], $inboxes );
2020-09-22 16:14:37 -04:00
$relay_inboxes = ActivityPub\Transmitter :: addRelayServerInboxes ([]);
}
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
}
2020-09-22 16:14:37 -04:00
if ( empty ( $inboxes ) && empty ( $relay_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 );
2021-01-10 10:08:40 -05:00
return [ 'count' => 0 , 'contacts' => []];
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
2019-09-01 23:25:05 -04:00
$delivery_queue_count = 0 ;
2021-01-10 10:08:40 -05:00
$contacts = [];
2019-09-01 23:25:05 -04:00
2020-12-12 11:45:23 -05:00
foreach ( $inboxes as $inbox => $receivers ) {
2021-01-10 10:08:40 -05:00
$contacts = array_merge ( $contacts , $receivers );
2019-05-14 13:50:45 -04:00
Logger :: info ( 'Delivery via ActivityPub' , [ 'cmd' => $cmd , 'id' => $target_item [ 'id' ], 'inbox' => $inbox ]);
2018-10-05 23:16:38 -04:00
2019-09-01 23:25:05 -04:00
if ( Worker :: add ([ 'priority' => $priority , 'created' => $created , 'dont_fork' => true ],
2021-02-14 09:24:48 -05:00
'APDelivery' , $cmd , $target_item [ 'id' ], $inbox , $uid , $receivers , $target_item [ 'uri-id' ])) {
2019-09-01 23:25:05 -04:00
$delivery_queue_count ++ ;
}
2018-10-05 23:16:38 -04:00
}
2018-12-07 00:52:14 -05:00
2020-09-22 16:14:37 -04:00
// We deliver posts to relay servers slightly delayed to priorize the direct delivery
2020-12-15 15:42:16 -05:00
foreach ( $relay_inboxes as $inbox ) {
2020-09-22 16:14:37 -04:00
Logger :: info ( 'Delivery to relay servers via ActivityPub' , [ 'cmd' => $cmd , 'id' => $target_item [ 'id' ], 'inbox' => $inbox ]);
2021-02-14 09:24:48 -05:00
if ( Worker :: add ([ 'priority' => $priority , 'dont_fork' => true ], 'APDelivery' , $cmd , $target_item [ 'id' ], $inbox , $uid , [], $target_item [ 'uri-id' ])) {
2020-09-22 16:14:37 -04:00
$delivery_queue_count ++ ;
}
}
2021-01-10 10:08:40 -05:00
return [ 'count' => $delivery_queue_count , 'contacts' => $contacts ];
2018-10-05 23:16:38 -04:00
}
2020-08-09 14:42:25 -04:00
/**
* Check if the delivered item is a forum post
*
* @ param array $item
* @ return boolean
*/
public static function isForumPost ( array $item )
{
2021-02-13 14:56:03 -05:00
return ( $item [ 'gravity' ] == GRAVITY_PARENT ) && ! empty ( $item [ 'forum_mode' ]);
2020-08-09 14:42:25 -04:00
}
2017-11-19 13:59:55 -05:00
}