2011-08-26 10:29:22 -04:00
|
|
|
<?php
|
2017-11-16 07:32:31 -05:00
|
|
|
/**
|
2017-11-19 13:59:55 -05:00
|
|
|
* @file src/Worker/Delivery.php
|
2017-11-16 07:32:31 -05:00
|
|
|
*/
|
2017-11-19 13:59:55 -05:00
|
|
|
|
|
|
|
namespace Friendica\Worker;
|
|
|
|
|
2017-04-30 00:07:00 -04:00
|
|
|
use Friendica\App;
|
2017-08-26 02:04:21 -04:00
|
|
|
use Friendica\Core\System;
|
2017-04-30 00:01:26 -04:00
|
|
|
use Friendica\Core\Config;
|
2017-11-07 22:57:46 -05:00
|
|
|
use Friendica\Database\DBM;
|
2017-12-07 09:04:24 -05:00
|
|
|
use Friendica\Model\Contact;
|
2017-12-17 16:22:39 -05:00
|
|
|
use Friendica\Model\User;
|
2017-11-07 19:37:53 -05:00
|
|
|
use Friendica\Protocol\Diaspora;
|
2017-11-07 22:57:46 -05:00
|
|
|
use Friendica\Protocol\DFRN;
|
2017-12-01 14:41:27 -05:00
|
|
|
use Friendica\Protocol\Email;
|
2017-01-18 16:45:32 -05:00
|
|
|
|
2017-05-07 14:40:23 -04:00
|
|
|
require_once 'include/queue_fn.php';
|
|
|
|
require_once 'include/html2plain.php';
|
2017-11-19 13:59:55 -05:00
|
|
|
require_once 'include/datetime.php';
|
|
|
|
require_once 'include/items.php';
|
|
|
|
require_once 'include/bbcode.php';
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2017-11-19 13:59:55 -05:00
|
|
|
/// @todo This is some ugly code that needs to be split into several methods
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2017-11-19 13:59:55 -05:00
|
|
|
class Delivery {
|
|
|
|
public static function execute($cmd, $item_id, $contact_id) {
|
|
|
|
global $a;
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2017-11-19 13:59:55 -05:00
|
|
|
logger('delivery: invoked: '.$cmd.': '.$item_id.' to '.$contact_id, LOGGER_DEBUG);
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2012-05-19 05:42:11 -04:00
|
|
|
$expire = false;
|
2015-12-13 18:39:20 -05:00
|
|
|
$mail = false;
|
|
|
|
$fsuggest = false;
|
|
|
|
$relocate = false;
|
2012-05-19 05:42:11 -04:00
|
|
|
$top_level = false;
|
|
|
|
$recipients = array();
|
|
|
|
$url_recipients = array();
|
2015-12-13 18:39:20 -05:00
|
|
|
$followup = false;
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2012-05-19 05:42:11 -04:00
|
|
|
$normal_mode = true;
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2012-05-19 05:42:11 -04:00
|
|
|
$recipients[] = $contact_id;
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2016-03-13 14:47:02 -04:00
|
|
|
if ($cmd === 'mail') {
|
2015-12-13 18:39:20 -05:00
|
|
|
$normal_mode = false;
|
|
|
|
$mail = true;
|
|
|
|
$message = q("SELECT * FROM `mail` WHERE `id` = %d LIMIT 1",
|
|
|
|
intval($item_id)
|
|
|
|
);
|
2017-01-10 11:11:08 -05:00
|
|
|
if (!count($message)) {
|
2015-12-13 18:39:20 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
$uid = $message[0]['uid'];
|
|
|
|
$recipients[] = $message[0]['contact-id'];
|
|
|
|
$item = $message[0];
|
2017-01-10 11:11:08 -05:00
|
|
|
} elseif ($cmd === 'expire') {
|
2012-05-19 05:42:11 -04:00
|
|
|
$normal_mode = false;
|
|
|
|
$expire = true;
|
2015-12-13 18:39:20 -05:00
|
|
|
$items = q("SELECT * FROM `item` WHERE `uid` = %d AND `wall` = 1
|
2012-05-19 05:42:11 -04:00
|
|
|
AND `deleted` = 1 AND `changed` > UTC_TIMESTAMP() - INTERVAL 30 MINUTE",
|
|
|
|
intval($item_id)
|
|
|
|
);
|
|
|
|
$uid = $item_id;
|
|
|
|
$item_id = 0;
|
2017-01-10 11:11:08 -05:00
|
|
|
if (!count($items)) {
|
2017-11-19 13:59:55 -05:00
|
|
|
return;
|
2017-01-10 11:11:08 -05:00
|
|
|
}
|
|
|
|
} elseif ($cmd === 'suggest') {
|
2015-12-13 18:39:20 -05:00
|
|
|
$normal_mode = false;
|
|
|
|
$fsuggest = true;
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2015-12-13 18:39:20 -05:00
|
|
|
$suggest = q("SELECT * FROM `fsuggest` WHERE `id` = %d LIMIT 1",
|
|
|
|
intval($item_id)
|
|
|
|
);
|
2017-01-10 11:11:08 -05:00
|
|
|
if (!count($suggest)) {
|
2015-12-13 18:39:20 -05:00
|
|
|
return;
|
2017-01-10 11:11:08 -05:00
|
|
|
}
|
2015-12-13 18:39:20 -05:00
|
|
|
$uid = $suggest[0]['uid'];
|
|
|
|
$recipients[] = $suggest[0]['cid'];
|
|
|
|
$item = $suggest[0];
|
2016-03-13 14:47:02 -04:00
|
|
|
} elseif ($cmd === 'relocate') {
|
2015-12-13 18:39:20 -05:00
|
|
|
$normal_mode = false;
|
|
|
|
$relocate = true;
|
|
|
|
$uid = $item_id;
|
|
|
|
} else {
|
2012-05-19 05:42:11 -04:00
|
|
|
// find ancestors
|
2017-06-08 21:03:44 -04:00
|
|
|
$r = q("SELECT * FROM `item` WHERE `id` = %d AND visible = 1 AND moderated = 0 LIMIT 1",
|
2012-05-19 05:42:11 -04:00
|
|
|
intval($item_id)
|
|
|
|
);
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2017-11-19 13:59:55 -05:00
|
|
|
if (!DBM::is_result($r) || !intval($r[0]['parent'])) {
|
|
|
|
return;
|
2012-05-19 05:42:11 -04:00
|
|
|
}
|
2011-08-28 22:22:27 -04:00
|
|
|
|
2012-05-19 05:42:11 -04:00
|
|
|
$target_item = $r[0];
|
|
|
|
$parent_id = intval($r[0]['parent']);
|
|
|
|
$uid = $r[0]['uid'];
|
|
|
|
$updated = $r[0]['edited'];
|
2011-08-28 22:22:27 -04:00
|
|
|
|
2015-12-13 18:39:20 -05:00
|
|
|
$items = q("SELECT `item`.*, `sign`.`signed_text`,`sign`.`signature`,`sign`.`signer`
|
2017-06-08 21:03:44 -04:00
|
|
|
FROM `item` LEFT JOIN `sign` ON `sign`.`iid` = `item`.`id` WHERE `parent` = %d AND visible = 1 AND moderated = 0 ORDER BY `id` ASC",
|
2012-05-19 05:42:11 -04:00
|
|
|
intval($parent_id)
|
2011-09-27 02:39:47 -04:00
|
|
|
);
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2016-03-13 14:47:02 -04:00
|
|
|
if (!count($items)) {
|
2017-11-19 13:59:55 -05:00
|
|
|
return;
|
2012-05-19 05:42:11 -04:00
|
|
|
}
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2012-05-19 05:42:11 -04:00
|
|
|
$icontacts = null;
|
|
|
|
$contacts_arr = array();
|
2017-01-10 11:11:08 -05:00
|
|
|
foreach ($items as $item) {
|
|
|
|
if (!in_array($item['contact-id'],$contacts_arr)) {
|
2012-05-19 05:42:11 -04:00
|
|
|
$contacts_arr[] = intval($item['contact-id']);
|
2017-01-10 11:11:08 -05:00
|
|
|
}
|
|
|
|
}
|
2016-03-13 14:47:02 -04:00
|
|
|
if (count($contacts_arr)) {
|
2015-12-13 18:39:20 -05:00
|
|
|
$str_contacts = implode(',',$contacts_arr);
|
|
|
|
$icontacts = q("SELECT * FROM `contact`
|
2012-05-19 05:42:11 -04:00
|
|
|
WHERE `id` IN ( $str_contacts ) "
|
|
|
|
);
|
|
|
|
}
|
2017-01-10 11:11:08 -05:00
|
|
|
if ( !($icontacts && count($icontacts))) {
|
2017-11-19 13:59:55 -05:00
|
|
|
return;
|
2017-01-10 11:11:08 -05:00
|
|
|
}
|
2012-05-19 05:42:11 -04:00
|
|
|
|
|
|
|
// avoid race condition with deleting entries
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2016-03-13 14:47:02 -04:00
|
|
|
if ($items[0]['deleted']) {
|
2017-01-10 11:11:08 -05:00
|
|
|
foreach ($items as $item) {
|
2012-05-19 05:42:11 -04:00
|
|
|
$item['deleted'] = 1;
|
2017-01-10 11:11:08 -05:00
|
|
|
}
|
2012-05-19 05:42:11 -04:00
|
|
|
}
|
|
|
|
|
2017-01-10 02:40:57 -05:00
|
|
|
// When commenting too fast after delivery, a post wasn't recognized as top level post.
|
|
|
|
// The count then showed more than one entry. The additional check should help.
|
|
|
|
// The check for the "count" should be superfluous, but I'm not totally sure by now, so we keep it.
|
2017-01-10 11:11:08 -05:00
|
|
|
if ((($items[0]['id'] == $item_id) || (count($items) == 1)) && ($items[0]['uri'] === $items[0]['parent-uri'])) {
|
2012-05-19 05:42:11 -04:00
|
|
|
logger('delivery: top level post');
|
|
|
|
$top_level = true;
|
|
|
|
}
|
2011-08-29 02:00:45 -04:00
|
|
|
}
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2017-12-17 16:22:39 -05:00
|
|
|
$owner = User::getOwnerDataById($uid);
|
|
|
|
if (!$owner) {
|
2017-11-19 13:59:55 -05:00
|
|
|
return;
|
2017-01-10 11:11:08 -05:00
|
|
|
}
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2017-11-19 13:59:55 -05:00
|
|
|
$walltowall = (($top_level && ($owner['id'] != $items[0]['contact-id'])) ? true : false);
|
2011-09-04 03:48:45 -04:00
|
|
|
|
2012-05-19 05:42:11 -04:00
|
|
|
$public_message = true;
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2016-03-13 14:47:02 -04:00
|
|
|
if (!($mail || $fsuggest || $relocate)) {
|
2015-12-13 18:39:20 -05:00
|
|
|
$parent = $items[0];
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2012-05-19 05:42:11 -04:00
|
|
|
// This is IMPORTANT!!!!
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2012-05-19 05:42:11 -04:00
|
|
|
// 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.
|
2014-08-07 01:59:43 -04:00
|
|
|
|
2012-05-19 05:42:11 -04:00
|
|
|
// expire sends an entire group of expire messages and cannot be forwarded.
|
2014-08-07 01:59:43 -04:00
|
|
|
// However the conversation owner will be a part of the conversation and will
|
2012-05-19 05:42:11 -04:00
|
|
|
// be notified during this run.
|
|
|
|
// Other DFRN conversation members will be alerted during polled updates.
|
|
|
|
|
|
|
|
// Diaspora members currently are not notified of expirations, and other networks have
|
2014-08-07 01:59:43 -04:00
|
|
|
// either limited or no ability to process deletions. We should at least fix Diaspora
|
2012-05-19 05:42:11 -04:00
|
|
|
// by stringing togther an array of retractions and sending them onward.
|
2014-08-07 01:59:43 -04:00
|
|
|
|
|
|
|
|
2015-12-13 18:39:20 -05:00
|
|
|
$localhost = $a->get_hostname();
|
2017-01-10 11:11:08 -05:00
|
|
|
if (strpos($localhost,':')) {
|
2015-12-13 18:39:20 -05:00
|
|
|
$localhost = substr($localhost,0,strpos($localhost,':'));
|
2017-01-10 11:11:08 -05:00
|
|
|
}
|
2015-12-13 18:39:20 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Be VERY CAREFUL if you make any changes to the following line. Seemingly innocuous changes
|
|
|
|
* have been known to cause runaway conditions which affected several servers, along with
|
|
|
|
* permissions issues.
|
|
|
|
*
|
|
|
|
*/
|
2014-08-07 01:59:43 -04:00
|
|
|
|
2015-12-13 18:39:20 -05:00
|
|
|
$relay_to_owner = false;
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2016-03-13 14:47:02 -04:00
|
|
|
if (!$top_level && ($parent['wall'] == 0) && !$expire && stristr($target_item['uri'],$localhost)) {
|
2015-12-13 18:39:20 -05:00
|
|
|
$relay_to_owner = true;
|
|
|
|
}
|
|
|
|
|
2016-03-13 14:47:02 -04:00
|
|
|
if ($relay_to_owner) {
|
2015-12-13 18:39:20 -05:00
|
|
|
logger('followup '.$target_item["guid"], LOGGER_DEBUG);
|
|
|
|
// local followup to remote post
|
|
|
|
$followup = true;
|
|
|
|
}
|
|
|
|
|
2016-03-13 14:47:02 -04:00
|
|
|
if ((strlen($parent['allow_cid']))
|
2015-12-13 18:39:20 -05:00
|
|
|
|| (strlen($parent['allow_gid']))
|
|
|
|
|| (strlen($parent['deny_cid']))
|
2016-03-16 19:37:44 -04:00
|
|
|
|| (strlen($parent['deny_gid']))
|
|
|
|
|| $parent["private"]) {
|
2015-12-13 18:39:20 -05:00
|
|
|
$public_message = false; // private recipients, not public
|
|
|
|
}
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2012-05-19 05:42:11 -04:00
|
|
|
}
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2012-05-19 05:42:11 -04:00
|
|
|
$r = q("SELECT * FROM `contact` WHERE `id` = %d AND `blocked` = 0 AND `pending` = 0",
|
|
|
|
intval($contact_id)
|
|
|
|
);
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2017-11-07 22:57:46 -05:00
|
|
|
if (DBM::is_result($r)) {
|
2012-05-19 05:42:11 -04:00
|
|
|
$contact = $r[0];
|
2017-01-10 11:11:08 -05:00
|
|
|
}
|
|
|
|
if ($contact['self']) {
|
2017-11-19 13:59:55 -05:00
|
|
|
return;
|
2017-01-10 11:11:08 -05:00
|
|
|
}
|
2012-05-19 05:42:11 -04:00
|
|
|
$deliver_status = 0;
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2015-12-13 18:39:20 -05:00
|
|
|
logger("main delivery by delivery: followup=$followup mail=$mail fsuggest=$fsuggest relocate=$relocate - network ".$contact['network']);
|
|
|
|
|
2012-05-19 05:42:11 -04:00
|
|
|
switch($contact['network']) {
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2015-12-13 18:39:20 -05:00
|
|
|
case NETWORK_DFRN:
|
2016-03-13 14:47:02 -04:00
|
|
|
logger('notifier: '.$target_item["guid"].' dfrndelivery: '.$contact['name']);
|
2011-09-22 07:11:39 -04:00
|
|
|
|
2016-01-22 20:44:30 -05:00
|
|
|
if ($mail) {
|
2016-01-23 07:18:18 -05:00
|
|
|
$item['body'] = fix_private_photos($item['body'],$owner['uid'],null,$message[0]['contact-id']);
|
2017-11-07 22:57:46 -05:00
|
|
|
$atom = DFRN::mail($item, $owner);
|
2016-01-22 20:44:30 -05:00
|
|
|
} elseif ($fsuggest) {
|
2017-11-07 22:57:46 -05:00
|
|
|
$atom = DFRN::fsuggest($item, $owner);
|
2016-01-23 18:21:58 -05:00
|
|
|
q("DELETE FROM `fsuggest` WHERE `id` = %d LIMIT 1", intval($item['id']));
|
2017-01-10 11:11:08 -05:00
|
|
|
} elseif ($relocate) {
|
2017-11-07 22:57:46 -05:00
|
|
|
$atom = DFRN::relocate($owner, $uid);
|
2017-01-10 11:11:08 -05:00
|
|
|
} elseif ($followup) {
|
2016-01-22 20:44:30 -05:00
|
|
|
$msgitems = array();
|
2017-01-10 11:11:08 -05:00
|
|
|
foreach ($items as $item) { // there is only one item
|
|
|
|
if (!$item['parent']) {
|
2017-11-19 13:59:55 -05:00
|
|
|
return;
|
2017-01-10 11:11:08 -05:00
|
|
|
}
|
2016-03-13 14:47:02 -04:00
|
|
|
if ($item['id'] == $item_id) {
|
|
|
|
logger('followup: item: '. print_r($item,true), LOGGER_DATA);
|
2016-01-22 20:44:30 -05:00
|
|
|
$msgitems[] = $item;
|
|
|
|
}
|
|
|
|
}
|
2017-11-07 22:57:46 -05:00
|
|
|
$atom = DFRN::entries($msgitems,$owner);
|
2016-01-22 20:44:30 -05:00
|
|
|
} else {
|
|
|
|
$msgitems = array();
|
2017-01-10 11:11:08 -05:00
|
|
|
foreach ($items as $item) {
|
|
|
|
if (!$item['parent']) {
|
2017-11-19 13:59:55 -05:00
|
|
|
return;
|
2017-01-10 11:11:08 -05:00
|
|
|
}
|
2016-01-22 20:44:30 -05:00
|
|
|
|
|
|
|
// private emails may be in included in public conversations. Filter them.
|
2017-01-10 11:11:08 -05:00
|
|
|
if ($public_message && $item['private']) {
|
2017-11-19 13:59:55 -05:00
|
|
|
return;
|
2017-01-10 11:11:08 -05:00
|
|
|
}
|
2016-01-22 20:44:30 -05:00
|
|
|
|
|
|
|
$item_contact = get_item_contact($item,$icontacts);
|
2017-01-10 11:11:08 -05:00
|
|
|
if (!$item_contact) {
|
2017-11-19 13:59:55 -05:00
|
|
|
return;
|
2017-01-10 11:11:08 -05:00
|
|
|
}
|
2016-01-22 20:44:30 -05:00
|
|
|
|
2016-03-13 14:47:02 -04:00
|
|
|
if ($normal_mode) {
|
|
|
|
if ($item_id == $item['id'] || $item['id'] == $item['parent']) {
|
2016-01-22 20:44:30 -05:00
|
|
|
$item["entry:comment-allow"] = true;
|
|
|
|
$item["entry:cid"] = (($top_level) ? $contact['id'] : 0);
|
|
|
|
$msgitems[] = $item;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$item["entry:comment-allow"] = true;
|
|
|
|
$msgitems[] = $item;
|
|
|
|
}
|
|
|
|
}
|
2017-11-07 22:57:46 -05:00
|
|
|
$atom = DFRN::entries($msgitems,$owner);
|
2016-01-22 20:44:30 -05:00
|
|
|
}
|
2011-10-06 22:10:57 -04:00
|
|
|
|
2016-01-22 20:44:30 -05:00
|
|
|
logger('notifier entry: '.$contact["url"].' '.$target_item["guid"].' entry: '.$atom, LOGGER_DEBUG);
|
2016-01-02 18:17:28 -05:00
|
|
|
|
2016-03-13 14:47:02 -04:00
|
|
|
logger('notifier: '.$atom, LOGGER_DATA);
|
2012-05-19 05:42:11 -04:00
|
|
|
$basepath = implode('/', array_slice(explode('/',$contact['url']),0,3));
|
|
|
|
|
|
|
|
// perform local delivery if we are on the same site
|
|
|
|
|
2017-08-26 03:32:10 -04:00
|
|
|
if (link_compare($basepath,System::baseUrl())) {
|
2012-05-19 05:42:11 -04:00
|
|
|
|
|
|
|
$nickname = basename($contact['url']);
|
2017-01-10 11:11:08 -05:00
|
|
|
if ($contact['issued-id']) {
|
2012-05-19 05:42:11 -04:00
|
|
|
$sql_extra = sprintf(" AND `dfrn-id` = '%s' ", dbesc($contact['issued-id']));
|
2017-01-10 11:11:08 -05:00
|
|
|
} else {
|
2012-05-19 05:42:11 -04:00
|
|
|
$sql_extra = sprintf(" AND `issued-id` = '%s' ", dbesc($contact['dfrn-id']));
|
2017-01-10 11:11:08 -05:00
|
|
|
}
|
2012-05-19 05:42:11 -04:00
|
|
|
|
2014-08-07 01:59:43 -04:00
|
|
|
$x = q("SELECT `contact`.*, `contact`.`uid` AS `importer_uid`,
|
|
|
|
`contact`.`pubkey` AS `cpubkey`,
|
|
|
|
`contact`.`prvkey` AS `cprvkey`,
|
|
|
|
`contact`.`thumb` AS `thumb`,
|
2012-05-19 05:42:11 -04:00
|
|
|
`contact`.`url` as `url`,
|
|
|
|
`contact`.`name` as `senderName`,
|
2014-08-07 01:59:43 -04:00
|
|
|
`user`.*
|
|
|
|
FROM `contact`
|
|
|
|
INNER JOIN `user` ON `contact`.`uid` = `user`.`uid`
|
2012-05-19 05:42:11 -04:00
|
|
|
WHERE `contact`.`blocked` = 0 AND `contact`.`pending` = 0
|
|
|
|
AND `contact`.`network` = '%s' AND `user`.`nickname` = '%s'
|
|
|
|
$sql_extra
|
2012-11-02 16:43:47 -04:00
|
|
|
AND `user`.`account_expired` = 0 AND `user`.`account_removed` = 0 LIMIT 1",
|
2012-05-19 05:42:11 -04:00
|
|
|
dbesc(NETWORK_DFRN),
|
|
|
|
dbesc($nickname)
|
|
|
|
);
|
2011-10-06 22:10:57 -04:00
|
|
|
|
2016-03-13 14:47:02 -04:00
|
|
|
if ($x && count($x)) {
|
2012-09-05 19:26:11 -04:00
|
|
|
$write_flag = ((($x[0]['rel']) && ($x[0]['rel'] != CONTACT_IS_SHARING)) ? true : false);
|
2016-03-13 14:47:02 -04:00
|
|
|
if ((($owner['page-flags'] == PAGE_COMMUNITY) || $write_flag) && !$x[0]['writable']) {
|
|
|
|
q("UPDATE `contact` SET `writable` = 1 WHERE `id` = %d",
|
2012-05-19 05:42:11 -04:00
|
|
|
intval($x[0]['id'])
|
|
|
|
);
|
|
|
|
$x[0]['writable'] = 1;
|
|
|
|
}
|
2011-10-06 22:10:57 -04:00
|
|
|
|
2017-11-06 21:22:52 -05:00
|
|
|
$ssl_policy = Config::get('system','ssl_policy');
|
2012-05-19 05:42:11 -04:00
|
|
|
fix_contact_ssl_policy($x[0],$ssl_policy);
|
2012-02-16 21:29:09 -05:00
|
|
|
|
2015-11-12 15:55:33 -05:00
|
|
|
// If we are setup as a soapbox we aren't accepting top level posts from this person
|
2012-04-03 00:01:19 -04:00
|
|
|
|
2017-06-07 22:00:59 -04:00
|
|
|
if (($x[0]['page-flags'] == PAGE_SOAPBOX) && $top_level) {
|
2015-11-12 15:55:33 -05:00
|
|
|
break;
|
2017-01-10 11:11:08 -05:00
|
|
|
}
|
2012-05-19 05:42:11 -04:00
|
|
|
logger('mod-delivery: local delivery');
|
2017-11-07 22:57:46 -05:00
|
|
|
DFRN::import($atom, $x[0]);
|
2012-04-03 00:01:19 -04:00
|
|
|
break;
|
2012-05-19 05:42:11 -04:00
|
|
|
}
|
2011-10-06 22:10:57 -04:00
|
|
|
}
|
2012-02-24 01:11:26 -05:00
|
|
|
|
2017-01-10 11:11:08 -05:00
|
|
|
if (!was_recently_delayed($contact['id'])) {
|
2017-11-07 22:57:46 -05:00
|
|
|
$deliver_status = DFRN::deliver($owner,$contact,$atom);
|
2017-01-10 11:11:08 -05:00
|
|
|
} else {
|
2012-05-19 05:42:11 -04:00
|
|
|
$deliver_status = (-1);
|
2017-01-10 11:11:08 -05:00
|
|
|
}
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2016-01-02 18:17:28 -05:00
|
|
|
logger('notifier: dfrn_delivery to '.$contact["url"].' with guid '.$target_item["guid"].' returns '.$deliver_status);
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2017-02-04 11:16:15 -05:00
|
|
|
if ($deliver_status < 0) {
|
2012-05-19 05:42:11 -04:00
|
|
|
logger('notifier: delivery failed: queuing message');
|
|
|
|
add_to_queue($contact['id'],NETWORK_DFRN,$atom);
|
2016-11-19 15:10:29 -05:00
|
|
|
|
|
|
|
// The message could not be delivered. We mark the contact as "dead"
|
2017-11-19 17:03:39 -05:00
|
|
|
Contact::markForArchival($contact);
|
2016-11-19 15:10:29 -05:00
|
|
|
} else {
|
|
|
|
// We successfully delivered a message, the contact is alive
|
2017-11-19 17:03:39 -05:00
|
|
|
Contact::unmarkForArchival($contact);
|
2012-05-19 05:42:11 -04:00
|
|
|
}
|
2016-11-19 15:10:29 -05:00
|
|
|
|
2011-08-26 10:29:22 -04:00
|
|
|
break;
|
|
|
|
|
2015-12-13 18:39:20 -05:00
|
|
|
case NETWORK_OSTATUS:
|
2012-05-19 05:42:11 -04:00
|
|
|
// Do not send to otatus if we are not configured to send to public networks
|
2017-01-10 11:11:08 -05:00
|
|
|
if ($owner['prvnets']) {
|
2012-05-19 05:42:11 -04:00
|
|
|
break;
|
2017-01-10 11:11:08 -05:00
|
|
|
}
|
2017-11-06 21:22:52 -05:00
|
|
|
if (Config::get('system','ostatus_disabled') || Config::get('system','dfrn_only')) {
|
2012-05-19 05:42:11 -04:00
|
|
|
break;
|
2017-01-10 11:11:08 -05:00
|
|
|
}
|
2011-09-22 07:11:39 -04:00
|
|
|
|
2015-12-13 18:39:20 -05:00
|
|
|
// There is currently no code here to distribute anything to OStatus.
|
|
|
|
// This is done in "notifier.php" (See "url_recipients" and "push_notify")
|
2011-08-26 10:29:22 -04:00
|
|
|
break;
|
|
|
|
|
2015-12-13 18:39:20 -05:00
|
|
|
case NETWORK_MAIL:
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2017-11-06 21:22:52 -05:00
|
|
|
if (Config::get('system','dfrn_only')) {
|
2011-08-26 10:29:22 -04:00
|
|
|
break;
|
2017-01-10 11:11:08 -05:00
|
|
|
}
|
2012-05-19 05:42:11 -04:00
|
|
|
// WARNING: does not currently convert to RFC2047 header encodings, etc.
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2012-05-19 05:42:11 -04:00
|
|
|
$addr = $contact['addr'];
|
2017-01-10 11:11:08 -05:00
|
|
|
if (!strlen($addr)) {
|
2011-08-26 10:29:22 -04:00
|
|
|
break;
|
2017-01-10 11:11:08 -05:00
|
|
|
}
|
2012-05-19 05:42:11 -04:00
|
|
|
|
2016-03-13 14:47:02 -04:00
|
|
|
if ($cmd === 'wall-new' || $cmd === 'comment-new') {
|
2012-05-19 05:42:11 -04:00
|
|
|
|
|
|
|
$it = null;
|
2017-01-10 11:11:08 -05:00
|
|
|
if ($cmd === 'wall-new') {
|
2012-05-19 05:42:11 -04:00
|
|
|
$it = $items[0];
|
2017-01-10 11:11:08 -05:00
|
|
|
} else {
|
2013-11-02 05:49:44 -04:00
|
|
|
$r = q("SELECT * FROM `item` WHERE `id` = %d AND `uid` = %d LIMIT 1",
|
2017-11-19 13:59:55 -05:00
|
|
|
intval($item_id),
|
2012-05-19 05:42:11 -04:00
|
|
|
intval($uid)
|
|
|
|
);
|
2017-11-07 22:57:46 -05:00
|
|
|
if (DBM::is_result($r))
|
2012-05-19 05:42:11 -04:00
|
|
|
$it = $r[0];
|
|
|
|
}
|
2016-03-13 14:47:02 -04:00
|
|
|
if (!$it)
|
2012-05-19 05:42:11 -04:00
|
|
|
break;
|
2012-12-19 06:18:52 -05:00
|
|
|
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2012-05-19 05:42:11 -04:00
|
|
|
$local_user = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1",
|
|
|
|
intval($uid)
|
|
|
|
);
|
2016-03-13 14:47:02 -04:00
|
|
|
if (!count($local_user))
|
2012-05-19 05:42:11 -04:00
|
|
|
break;
|
2012-12-19 06:18:52 -05:00
|
|
|
|
2012-05-19 05:42:11 -04:00
|
|
|
$reply_to = '';
|
|
|
|
$r1 = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
|
|
|
|
intval($uid)
|
|
|
|
);
|
2016-03-13 14:47:02 -04:00
|
|
|
if ($r1 && $r1[0]['reply_to'])
|
2012-05-19 05:42:11 -04:00
|
|
|
$reply_to = $r1[0]['reply_to'];
|
2012-01-31 23:03:46 -05:00
|
|
|
|
2017-12-01 21:05:06 -05:00
|
|
|
$subject = (($it['title']) ? Email::encodeHeader($it['title'],'UTF-8') : t("\x28no subject\x29")) ;
|
2012-01-31 23:03:46 -05:00
|
|
|
|
2012-05-19 05:42:11 -04:00
|
|
|
// only expose our real email address to true friends
|
2012-01-31 23:03:46 -05:00
|
|
|
|
2016-03-13 14:47:02 -04:00
|
|
|
if (($contact['rel'] == CONTACT_IS_FRIEND) && !$contact['blocked']) {
|
|
|
|
if ($reply_to) {
|
2017-12-01 21:05:06 -05:00
|
|
|
$headers = 'From: '.Email::encodeHeader($local_user[0]['username'],'UTF-8').' <'.$reply_to.'>'."\n";
|
2012-12-17 18:47:55 -05:00
|
|
|
$headers .= 'Sender: '.$local_user[0]['email']."\n";
|
2017-01-10 11:11:08 -05:00
|
|
|
} else {
|
2017-12-01 21:05:06 -05:00
|
|
|
$headers = 'From: '.Email::encodeHeader($local_user[0]['username'],'UTF-8').' <'.$local_user[0]['email'].'>'."\n";
|
2017-01-10 11:11:08 -05:00
|
|
|
}
|
|
|
|
} else {
|
2017-12-01 21:05:06 -05:00
|
|
|
$headers = 'From: '. Email::encodeHeader($local_user[0]['username'],'UTF-8') .' <'. t('noreply') .'@'.$a->get_hostname() .'>'. "\n";
|
2017-01-10 11:11:08 -05:00
|
|
|
}
|
2012-02-24 01:11:26 -05:00
|
|
|
|
2016-03-13 14:47:02 -04:00
|
|
|
//if ($reply_to)
|
|
|
|
// $headers .= 'Reply-to: '.$reply_to . "\n";
|
2012-02-24 01:11:26 -05:00
|
|
|
|
2017-12-01 14:41:27 -05:00
|
|
|
$headers .= 'Message-Id: <'. Email::iri2msgid($it['uri']).'>'. "\n";
|
2012-02-24 01:11:26 -05:00
|
|
|
|
2012-05-19 05:42:11 -04:00
|
|
|
//logger("Mail: uri: ".$it['uri']." parent-uri ".$it['parent-uri'], LOGGER_DEBUG);
|
|
|
|
//logger("Mail: Data: ".print_r($it, true), LOGGER_DEBUG);
|
|
|
|
//logger("Mail: Data: ".print_r($it, true), LOGGER_DATA);
|
2012-02-24 01:11:26 -05:00
|
|
|
|
2016-03-13 14:47:02 -04:00
|
|
|
if ($it['uri'] !== $it['parent-uri']) {
|
2017-12-01 14:41:27 -05:00
|
|
|
$headers .= "References: <".Email::iri2msgid($it["parent-uri"]).">";
|
2012-12-19 10:31:06 -05:00
|
|
|
|
|
|
|
// If Threading is enabled, write down the correct parent
|
2017-06-08 21:03:44 -04:00
|
|
|
if (($it["thr-parent"] != "") && ($it["thr-parent"] != $it["parent-uri"]))
|
2017-12-01 14:41:27 -05:00
|
|
|
$headers .= " <".Email::iri2msgid($it["thr-parent"]).">";
|
2012-12-19 10:31:06 -05:00
|
|
|
$headers .= "\n";
|
|
|
|
|
2016-03-13 14:47:02 -04:00
|
|
|
if (!$it['title']) {
|
2012-12-19 06:18:52 -05:00
|
|
|
$r = q("SELECT `title` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
|
|
|
|
dbesc($it['parent-uri']),
|
|
|
|
intval($uid));
|
2012-03-11 19:22:12 -04:00
|
|
|
|
2017-11-07 22:57:46 -05:00
|
|
|
if (DBM::is_result($r) && ($r[0]['title'] != '')) {
|
2012-05-19 05:42:11 -04:00
|
|
|
$subject = $r[0]['title'];
|
2017-01-10 11:11:08 -05:00
|
|
|
} else {
|
2012-12-19 06:18:52 -05:00
|
|
|
$r = q("SELECT `title` FROM `item` WHERE `parent-uri` = '%s' AND `uid` = %d LIMIT 1",
|
|
|
|
dbesc($it['parent-uri']),
|
|
|
|
intval($uid));
|
|
|
|
|
2017-11-07 22:57:46 -05:00
|
|
|
if (DBM::is_result($r) && ($r[0]['title'] != ''))
|
2012-12-19 06:18:52 -05:00
|
|
|
$subject = $r[0]['title'];
|
|
|
|
}
|
2012-05-19 05:42:11 -04:00
|
|
|
}
|
2016-03-13 14:47:02 -04:00
|
|
|
if (strncasecmp($subject,'RE:',3))
|
2012-05-19 05:42:11 -04:00
|
|
|
$subject = 'Re: '.$subject;
|
2011-08-26 10:29:22 -04:00
|
|
|
}
|
2017-12-01 21:05:06 -05:00
|
|
|
Email::send($addr, $subject, $headers, $it);
|
2011-08-26 10:29:22 -04:00
|
|
|
}
|
2012-05-19 05:42:11 -04:00
|
|
|
break;
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2015-12-13 18:39:20 -05:00
|
|
|
case NETWORK_DIASPORA:
|
2016-03-13 14:47:02 -04:00
|
|
|
if ($public_message)
|
|
|
|
$loc = 'public batch '.$contact['batch'];
|
2014-08-07 01:59:43 -04:00
|
|
|
else
|
2012-05-19 05:42:11 -04:00
|
|
|
$loc = $contact['name'];
|
2011-09-22 07:11:39 -04:00
|
|
|
|
2016-03-13 14:47:02 -04:00
|
|
|
logger('delivery: diaspora batch deliver: '.$loc);
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2017-11-19 13:59:55 -05:00
|
|
|
if (Config::get('system','dfrn_only') || !Config::get('system','diaspora_enabled'))
|
2015-12-13 18:39:20 -05:00
|
|
|
break;
|
|
|
|
|
2016-03-13 14:47:02 -04:00
|
|
|
if ($mail) {
|
2017-11-23 14:01:58 -05:00
|
|
|
Diaspora::sendMail($item,$owner,$contact);
|
2015-12-13 18:39:20 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2016-03-13 14:47:02 -04:00
|
|
|
if (!$normal_mode)
|
2012-06-12 20:38:24 -04:00
|
|
|
break;
|
|
|
|
|
2016-03-13 14:47:02 -04:00
|
|
|
if (!$contact['pubkey'] && !$public_message)
|
2012-05-19 05:42:11 -04:00
|
|
|
break;
|
2012-02-24 01:11:26 -05:00
|
|
|
|
2016-03-13 14:47:02 -04:00
|
|
|
if (($target_item['deleted']) && (($target_item['uri'] === $target_item['parent-uri']) || $followup)) {
|
2012-06-03 01:56:42 -04:00
|
|
|
// top-level retraction
|
2016-03-14 03:11:14 -04:00
|
|
|
logger('diaspora retract: '.$loc);
|
2017-11-23 14:01:58 -05:00
|
|
|
Diaspora::sendRetraction($target_item,$owner,$contact,$public_message);
|
2012-05-19 05:42:11 -04:00
|
|
|
break;
|
2017-10-13 05:22:05 -04:00
|
|
|
} elseif ($relocate) {
|
2017-10-13 05:41:01 -04:00
|
|
|
Diaspora::sendAccountMigration($owner, $contact, $uid);
|
2017-10-13 05:22:05 -04:00
|
|
|
break;
|
2016-03-13 14:47:02 -04:00
|
|
|
} elseif ($followup) {
|
2015-12-13 18:39:20 -05:00
|
|
|
// send comments and likes to owner to relay
|
2016-03-14 03:11:14 -04:00
|
|
|
logger('diaspora followup: '.$loc);
|
2017-11-23 14:01:58 -05:00
|
|
|
Diaspora::sendFollowup($target_item,$owner,$contact,$public_message);
|
2015-12-13 18:39:20 -05:00
|
|
|
break;
|
2016-03-13 14:47:02 -04:00
|
|
|
} elseif ($target_item['uri'] !== $target_item['parent-uri']) {
|
2012-06-03 01:56:42 -04:00
|
|
|
// we are the relay - send comments, likes and relayable_retractions to our conversants
|
2016-03-14 03:11:14 -04:00
|
|
|
logger('diaspora relay: '.$loc);
|
2017-11-23 14:01:58 -05:00
|
|
|
Diaspora::sendRelay($target_item,$owner,$contact,$public_message);
|
2012-05-19 05:42:11 -04:00
|
|
|
break;
|
2016-03-13 14:47:02 -04:00
|
|
|
} elseif ($top_level && !$walltowall) {
|
2012-05-19 05:42:11 -04:00
|
|
|
// currently no workable solution for sending walltowall
|
2016-03-14 03:11:14 -04:00
|
|
|
logger('diaspora status: '.$loc);
|
2017-11-23 14:01:58 -05:00
|
|
|
Diaspora::sendStatus($target_item,$owner,$contact,$public_message);
|
2012-05-19 05:42:11 -04:00
|
|
|
break;
|
|
|
|
}
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2016-03-13 14:47:02 -04:00
|
|
|
logger('delivery: diaspora unknown mode: '.$contact['name']);
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2012-05-19 05:42:11 -04:00
|
|
|
break;
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2012-05-19 05:42:11 -04:00
|
|
|
default:
|
2011-08-26 10:29:22 -04:00
|
|
|
break;
|
2012-05-19 05:42:11 -04:00
|
|
|
}
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2017-11-19 13:59:55 -05:00
|
|
|
return;
|
|
|
|
}
|
2011-08-26 10:29:22 -04:00
|
|
|
}
|