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;
|
|
|
|
|
2018-04-26 18:30:43 -04:00
|
|
|
use Friendica\BaseObject;
|
2017-04-30 00:01:26 -04:00
|
|
|
use Friendica\Core\Config;
|
2018-01-22 09:54:13 -05:00
|
|
|
use Friendica\Core\L10n;
|
2018-01-30 21:14:44 -05:00
|
|
|
use Friendica\Core\System;
|
2017-11-07 22:57:46 -05:00
|
|
|
use Friendica\Database\DBM;
|
2017-12-07 09:04:24 -05:00
|
|
|
use Friendica\Model\Contact;
|
2018-01-30 21:14:44 -05:00
|
|
|
use Friendica\Model\Item;
|
2018-01-15 20:12:07 -05:00
|
|
|
use Friendica\Model\Queue;
|
2017-12-17 16:22:39 -05:00
|
|
|
use Friendica\Model\User;
|
2017-11-07 22:57:46 -05:00
|
|
|
use Friendica\Protocol\DFRN;
|
2018-01-30 21:14:44 -05:00
|
|
|
use Friendica\Protocol\Diaspora;
|
2017-12-01 14:41:27 -05:00
|
|
|
use Friendica\Protocol\Email;
|
2017-12-19 18:12:37 -05:00
|
|
|
use dba;
|
2017-01-18 16:45:32 -05:00
|
|
|
|
2017-11-19 13:59:55 -05:00
|
|
|
require_once 'include/items.php';
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2018-04-26 18:30:43 -04:00
|
|
|
class Delivery extends BaseObject {
|
2017-11-19 13:59:55 -05:00
|
|
|
public static function execute($cmd, $item_id, $contact_id) {
|
2018-04-26 01:45:05 -04:00
|
|
|
logger('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
|
|
|
$top_level = false;
|
2015-12-13 18:39:20 -05:00
|
|
|
$followup = false;
|
2018-04-26 01:45:05 -04:00
|
|
|
$public_message = false;
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2018-04-25 17:18:21 -04:00
|
|
|
if ($cmd == DELIVER_MAIL) {
|
|
|
|
$target_item = dba::selectFirst('mail', [], ['id' => $item_id]);
|
|
|
|
if (!DBM::is_result($message)) {
|
2015-12-13 18:39:20 -05:00
|
|
|
return;
|
|
|
|
}
|
2018-04-25 17:18:21 -04:00
|
|
|
$uid = $target_item['uid'];
|
|
|
|
} elseif ($cmd == DELIVER_SUGGESTION) {
|
|
|
|
$target_item = dba::selectFirst('fsuggest', [], ['id' => $item_id]);
|
|
|
|
if (!DBM::is_result($message)) {
|
2015-12-13 18:39:20 -05:00
|
|
|
return;
|
2017-01-10 11:11:08 -05:00
|
|
|
}
|
2018-04-25 17:18:21 -04:00
|
|
|
$uid = $target_item['uid'];
|
|
|
|
} elseif ($cmd == DELIVER_RELOCATION) {
|
2015-12-13 18:39:20 -05:00
|
|
|
$uid = $item_id;
|
|
|
|
} else {
|
2018-04-26 03:11:18 -04:00
|
|
|
$item = dba::selectFirst('item', ['parent'], ['id' => $item_id]);
|
|
|
|
if (!DBM::is_result($item) || empty($item['parent'])) {
|
2017-11-19 13:59:55 -05:00
|
|
|
return;
|
2012-05-19 05:42:11 -04:00
|
|
|
}
|
2018-04-26 03:11:18 -04:00
|
|
|
$parent_id = intval($item['parent']);
|
2011-08-28 22:22:27 -04:00
|
|
|
|
2018-04-26 03:11:18 -04:00
|
|
|
$itemdata = dba::p("SELECT `item`.*, `contact`.`uid` AS `cuid`,
|
|
|
|
`sign`.`signed_text`,`sign`.`signature`,`sign`.`signer`
|
|
|
|
FROM `item`
|
|
|
|
INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
|
|
|
|
LEFT JOIN `sign` ON `sign`.`iid` = `item`.`id`
|
|
|
|
WHERE `item`.`id` IN (?, ?) AND `visible` AND NOT `moderated`
|
|
|
|
ORDER BY `item`.`id`",
|
|
|
|
$item_id, $parent_id);
|
|
|
|
$items = [];
|
|
|
|
while ($item = dba::fetch($itemdata)) {
|
|
|
|
if ($item['id'] == $parent_id) {
|
|
|
|
$parent = $item;
|
2018-04-26 02:23:01 -04:00
|
|
|
}
|
2018-04-26 03:11:18 -04:00
|
|
|
if ($item['id'] == $item_id) {
|
|
|
|
$target_item = $item;
|
|
|
|
}
|
|
|
|
$items[] = $item;
|
2012-05-19 05:42:11 -04:00
|
|
|
}
|
2018-04-26 03:11:18 -04:00
|
|
|
dba::close($itemdata);
|
|
|
|
|
|
|
|
$uid = $target_item['cuid'];
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2012-05-19 05:42:11 -04:00
|
|
|
// avoid race condition with deleting entries
|
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.
|
2018-04-26 02:23:01 -04:00
|
|
|
if ((($parent['id'] == $item_id) || (count($items) == 1)) && ($parent['uri'] === $parent['parent-uri'])) {
|
2018-04-26 01:45:05 -04:00
|
|
|
logger('Top level post');
|
2012-05-19 05:42:11 -04:00
|
|
|
$top_level = true;
|
|
|
|
}
|
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
|
|
|
|
2018-04-26 18:30:43 -04:00
|
|
|
$localhost = self::getApp()->get_hostname();
|
2018-04-26 01:45:05 -04:00
|
|
|
if (strpos($localhost, ':')) {
|
|
|
|
$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
|
|
|
|
2018-01-17 18:22:01 -05:00
|
|
|
if (!$top_level && ($parent['wall'] == 0) && stristr($target_item['uri'], $localhost)) {
|
2018-04-26 01:45:05 -04:00
|
|
|
logger('Followup ' . $target_item["guid"], LOGGER_DEBUG);
|
2015-12-13 18:39:20 -05:00
|
|
|
// local followup to remote post
|
|
|
|
$followup = true;
|
|
|
|
}
|
|
|
|
|
2018-04-26 01:45:05 -04:00
|
|
|
if (empty($parent['allow_cid'])
|
|
|
|
&& empty($parent['allow_gid'])
|
|
|
|
&& empty($parent['deny_cid'])
|
|
|
|
&& empty($parent['deny_gid'])
|
|
|
|
&& !$parent["private"]) {
|
|
|
|
$public_message = true;
|
2015-12-13 18:39:20 -05:00
|
|
|
}
|
2012-05-19 05:42:11 -04:00
|
|
|
}
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2018-04-26 01:45:05 -04:00
|
|
|
$owner = User::getOwnerDataById($uid);
|
|
|
|
if (!DBM::is_result($owner)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-02-14 00:05:00 -05:00
|
|
|
// We don't deliver our items to blocked or pending contacts, and not to ourselves either
|
|
|
|
$contact = dba::selectFirst('contact', [],
|
|
|
|
['id' => $contact_id, 'blocked' => false, 'pending' => false, 'self' => false]
|
2012-05-19 05:42:11 -04:00
|
|
|
);
|
2018-02-14 00:05:00 -05:00
|
|
|
if (!DBM::is_result($contact)) {
|
2017-11-19 13:59:55 -05:00
|
|
|
return;
|
2017-01-10 11:11:08 -05:00
|
|
|
}
|
2018-02-14 00:05:00 -05:00
|
|
|
|
2018-04-26 01:45:05 -04:00
|
|
|
// Transmit via Diaspora if the thread had started as Diaspora post
|
|
|
|
// This is done since the uri wouldn't match (Diaspora doesn't transmit it)
|
|
|
|
if (isset($parent) && ($parent['network'] == NETWORK_DIASPORA) && ($contact['network'] == NETWORK_DFRN)) {
|
|
|
|
$contact['network'] = NETWORK_DIASPORA;
|
|
|
|
}
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2018-04-26 01:45:05 -04:00
|
|
|
logger("Delivering " . $cmd . " followup=$followup - via network " . $contact['network']);
|
2015-12-13 18:39:20 -05:00
|
|
|
|
2018-01-04 14:48:56 -05:00
|
|
|
switch ($contact['network']) {
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2015-12-13 18:39:20 -05:00
|
|
|
case NETWORK_DFRN:
|
2018-04-26 01:45:05 -04:00
|
|
|
self::deliverDFRN($cmd, $contact, $owner, $items, $target_item, $public_message, $top_level, $followup);
|
2018-04-25 17:18:21 -04:00
|
|
|
break;
|
2016-11-19 15:10:29 -05:00
|
|
|
|
2018-04-25 17:18:21 -04:00
|
|
|
case NETWORK_DIASPORA:
|
2018-04-26 01:45:05 -04:00
|
|
|
self::deliverDiaspora($cmd, $contact, $owner, $items, $target_item, $public_message, $top_level, $followup);
|
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:
|
2018-04-25 17:18:21 -04:00
|
|
|
self::deliverMail($cmd, $contact, $owner, $target_item);
|
|
|
|
break;
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2018-04-25 17:18:21 -04:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2018-04-25 17:18:21 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-04-26 01:45:05 -04:00
|
|
|
private static function deliverDFRN($cmd, $contact, $owner, $items, $target_item, $public_message, $top_level, $followup)
|
2018-04-25 17:18:21 -04:00
|
|
|
{
|
2018-04-26 01:45:05 -04:00
|
|
|
logger('Deliver ' . $target_item["guid"] . ' via DFRN to ' . $contact['addr']);
|
2018-04-25 17:18:21 -04:00
|
|
|
|
|
|
|
if ($cmd == DELIVER_MAIL) {
|
|
|
|
$item = $target_item;
|
|
|
|
$item['body'] = Item::fixPrivatePhotos($item['body'], $owner['uid'], null, $item['contact-id']);
|
|
|
|
$atom = DFRN::mail($item, $owner);
|
|
|
|
} elseif ($cmd == DELIVER_SUGGESTION) {
|
|
|
|
$item = $target_item;
|
|
|
|
$atom = DFRN::fsuggest($item, $owner);
|
|
|
|
dba::delete('fsuggest', ['id' => $item['id']]);
|
|
|
|
} elseif ($cmd == DELIVER_RELOCATION) {
|
|
|
|
$atom = DFRN::relocate($owner, $owner['uid']);
|
|
|
|
} elseif ($followup) {
|
2018-04-26 02:23:01 -04:00
|
|
|
$msgitems = [$target_item];
|
2018-04-25 17:18:21 -04:00
|
|
|
$atom = DFRN::entries($msgitems, $owner);
|
|
|
|
} else {
|
|
|
|
$msgitems = [];
|
|
|
|
foreach ($items as $item) {
|
2018-04-26 01:45:05 -04:00
|
|
|
// Only add the parent when we don't delete other items.
|
2018-04-26 02:23:01 -04:00
|
|
|
if (($target_item['id'] == $item['id']) || ($cmd != DELIVER_DELETION)) {
|
2018-04-25 17:18:21 -04:00
|
|
|
$item["entry:comment-allow"] = true;
|
2018-04-26 01:45:05 -04:00
|
|
|
$item["entry:cid"] = ($top_level ? $contact['id'] : 0);
|
2018-04-25 17:18:21 -04:00
|
|
|
$msgitems[] = $item;
|
|
|
|
}
|
|
|
|
}
|
2018-04-26 17:16:16 -04:00
|
|
|
$atom = DFRN::entries($msgitems, $owner);
|
2018-04-25 17:18:21 -04:00
|
|
|
}
|
2012-01-31 23:03:46 -05:00
|
|
|
|
2018-04-26 01:45:05 -04:00
|
|
|
logger('Notifier entry: ' . $contact["url"] . ' ' . $target_item["guid"] . ' entry: ' . $atom, LOGGER_DATA);
|
2012-01-31 23:03:46 -05:00
|
|
|
|
2018-04-26 17:16:16 -04:00
|
|
|
$basepath = implode('/', array_slice(explode('/', $contact['url']), 0, 3));
|
2012-01-31 23:03:46 -05:00
|
|
|
|
2018-04-25 17:18:21 -04:00
|
|
|
// perform local delivery if we are on the same site
|
2012-02-24 01:11:26 -05:00
|
|
|
|
2018-04-25 17:18:21 -04:00
|
|
|
if (link_compare($basepath, System::baseUrl())) {
|
|
|
|
$condition = ['nurl' => normalise_link($contact['url']), 'self' => true];
|
|
|
|
$target_self = dba::selectFirst('contact', ['uid'], $condition);
|
|
|
|
if (!DBM::is_result($target_self)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$target_uid = $target_self['uid'];
|
|
|
|
|
|
|
|
// Check if the user has got this contact
|
|
|
|
$cid = Contact::getIdForURL($owner['url'], $target_uid);
|
|
|
|
if (!$cid) {
|
|
|
|
// Otherwise there should be a public contact
|
|
|
|
$cid = Contact::getIdForURL($owner['url']);
|
|
|
|
if (!$cid) {
|
|
|
|
return;
|
2011-08-26 10:29:22 -04:00
|
|
|
}
|
2018-04-25 17:18:21 -04:00
|
|
|
}
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2018-04-25 17:18:21 -04:00
|
|
|
// We now have some contact, so we fetch it
|
|
|
|
$target_importer = dba::fetch_first("SELECT *, `name` as `senderName`
|
|
|
|
FROM `contact`
|
|
|
|
WHERE NOT `blocked` AND `id` = ? LIMIT 1",
|
|
|
|
$cid);
|
2011-09-22 07:11:39 -04:00
|
|
|
|
2018-04-25 17:18:21 -04:00
|
|
|
// This should never fail
|
|
|
|
if (!DBM::is_result($target_importer)) {
|
|
|
|
return;
|
|
|
|
}
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2018-04-25 17:18:21 -04:00
|
|
|
// Set the user id. This is important if this is a public contact
|
|
|
|
$target_importer['importer_uid'] = $target_uid;
|
|
|
|
DFRN::import($atom, $target_importer);
|
|
|
|
return;
|
|
|
|
}
|
2015-12-13 18:39:20 -05:00
|
|
|
|
2018-04-26 17:16:16 -04:00
|
|
|
// We don't have a relationship with contacts on a public post.
|
|
|
|
// Se we transmit with the new method and via Diaspora as a fallback
|
2018-04-25 17:55:24 -04:00
|
|
|
if ($items[0]['uid'] == 0) {
|
|
|
|
$deliver_status = DFRN::transmit($owner, $contact, $atom);
|
|
|
|
if ($deliver_status < 200) {
|
|
|
|
// Transmit via Diaspora if not possible via Friendica
|
2018-04-26 01:45:05 -04:00
|
|
|
self::deliverDiaspora($cmd, $contact, $owner, $items, $target_item, $public_message, $top_level, $followup);
|
2018-04-25 17:55:24 -04:00
|
|
|
return;
|
|
|
|
}
|
2018-04-26 02:23:01 -04:00
|
|
|
} else {
|
2018-04-25 17:18:21 -04:00
|
|
|
$deliver_status = DFRN::deliver($owner, $contact, $atom);
|
|
|
|
}
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2018-04-26 01:45:05 -04:00
|
|
|
logger('Delivery to ' . $contact["url"] . ' with guid ' . $target_item["guid"] . ' returns ' . $deliver_status);
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2018-04-25 17:18:21 -04:00
|
|
|
if ($deliver_status < 0) {
|
2018-04-26 01:45:05 -04:00
|
|
|
logger('Delivery failed: queuing message ' . $target_item["guid"] );
|
2018-04-25 17:18:21 -04:00
|
|
|
Queue::add($contact['id'], NETWORK_DFRN, $atom, false, $target_item['guid']);
|
|
|
|
}
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2018-04-25 17:18:21 -04:00
|
|
|
if (($deliver_status >= 200) && ($deliver_status <= 299)) {
|
|
|
|
// We successfully delivered a message, the contact is alive
|
|
|
|
Contact::unmarkForArchival($contact);
|
|
|
|
} else {
|
|
|
|
// The message could not be delivered. We mark the contact as "dead"
|
|
|
|
Contact::markForArchival($contact);
|
2012-05-19 05:42:11 -04:00
|
|
|
}
|
2018-04-25 17:18:21 -04:00
|
|
|
}
|
2011-08-26 10:29:22 -04:00
|
|
|
|
2018-04-26 01:45:05 -04:00
|
|
|
private static function deliverDiaspora($cmd, $contact, $owner, $items, $target_item, $public_message, $top_level, $followup)
|
2018-04-25 17:18:21 -04:00
|
|
|
{
|
2018-04-26 01:45:05 -04:00
|
|
|
// We don't treat Forum posts as "wall-to-wall" to be able to post them via Diaspora
|
|
|
|
$walltowall = $top_level && ($owner['id'] != $items[0]['contact-id']) & ($owner['account-type'] != ACCOUNT_TYPE_COMMUNITY);
|
|
|
|
|
2018-04-25 17:18:21 -04:00
|
|
|
if ($public_message) {
|
|
|
|
$loc = 'public batch ' . $contact['batch'];
|
|
|
|
} else {
|
2018-04-26 01:45:05 -04:00
|
|
|
$loc = $contact['addr'];
|
2018-04-25 17:18:21 -04:00
|
|
|
}
|
|
|
|
|
2018-04-26 01:45:05 -04:00
|
|
|
logger('Deliver ' . $target_item["guid"] . ' via Diaspora to ' . $loc);
|
2018-04-25 17:18:21 -04:00
|
|
|
|
|
|
|
if (Config::get('system', 'dfrn_only') || !Config::get('system', 'diaspora_enabled')) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if ($cmd == DELIVER_MAIL) {
|
|
|
|
Diaspora::sendMail($target_item, $owner, $contact);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($cmd == DELIVER_SUGGESTION) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!$contact['pubkey'] && !$public_message) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (($target_item['deleted']) && (($target_item['uri'] === $target_item['parent-uri']) || $followup)) {
|
|
|
|
// top-level retraction
|
|
|
|
logger('diaspora retract: ' . $loc);
|
|
|
|
Diaspora::sendRetraction($target_item, $owner, $contact, $public_message);
|
|
|
|
return;
|
|
|
|
} elseif ($cmd == DELIVER_RELOCATION) {
|
|
|
|
Diaspora::sendAccountMigration($owner, $contact, $owner['uid']);
|
|
|
|
return;
|
|
|
|
} elseif ($followup) {
|
|
|
|
// send comments and likes to owner to relay
|
|
|
|
logger('diaspora followup: ' . $loc);
|
|
|
|
Diaspora::sendFollowup($target_item, $owner, $contact, $public_message);
|
|
|
|
return;
|
|
|
|
} elseif ($target_item['uri'] !== $target_item['parent-uri']) {
|
|
|
|
// we are the relay - send comments, likes and relayable_retractions to our conversants
|
|
|
|
logger('diaspora relay: ' . $loc);
|
|
|
|
Diaspora::sendRelay($target_item, $owner, $contact, $public_message);
|
|
|
|
return;
|
|
|
|
} elseif ($top_level && !$walltowall) {
|
|
|
|
// currently no workable solution for sending walltowall
|
|
|
|
logger('diaspora status: ' . $loc);
|
|
|
|
Diaspora::sendStatus($target_item, $owner, $contact, $public_message);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-04-26 01:45:05 -04:00
|
|
|
logger('Unknown mode ' . $cmd . ' for ' . $loc);
|
2018-04-25 17:18:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
private static function deliverMail($cmd, $contact, $owner, $target_item)
|
|
|
|
{
|
|
|
|
if (Config::get('system','dfrn_only')) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// WARNING: does not currently convert to RFC2047 header encodings, etc.
|
|
|
|
|
|
|
|
$addr = $contact['addr'];
|
|
|
|
if (!strlen($addr)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!in_array($cmd, [DELIVER_POST, DELIVER_COMMENT])) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$local_user = dba::selectFirst('user', [], ['uid' => $owner['uid']]);
|
|
|
|
if (!DBM::is_result($local_user)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-04-26 01:45:05 -04:00
|
|
|
logger('Deliver ' . $target_item["guid"] . ' via mail to ' . $contact['addr']);
|
|
|
|
|
2018-04-25 17:18:21 -04:00
|
|
|
$reply_to = '';
|
|
|
|
$mailacct = dba::selectFirst('mailacct', ['reply_to'], ['uid' => $owner['uid']]);
|
|
|
|
if (DBM::is_result($mailacct) && !empty($mailacct['reply_to'])) {
|
|
|
|
$reply_to = $mailacct['reply_to'];
|
|
|
|
}
|
|
|
|
|
2018-04-25 17:55:24 -04:00
|
|
|
$subject = ($target_item['title'] ? Email::encodeHeader($target_item['title'], 'UTF-8') : L10n::t("\x28no subject\x29"));
|
2018-04-25 17:18:21 -04:00
|
|
|
|
|
|
|
// only expose our real email address to true friends
|
|
|
|
|
|
|
|
if (($contact['rel'] == CONTACT_IS_FRIEND) && !$contact['blocked']) {
|
|
|
|
if ($reply_to) {
|
|
|
|
$headers = 'From: ' . Email::encodeHeader($local_user['username'],'UTF-8') . ' <' . $reply_to.'>' . "\n";
|
|
|
|
$headers .= 'Sender: ' . $local_user['email'] . "\n";
|
|
|
|
} else {
|
|
|
|
$headers = 'From: ' . Email::encodeHeader($local_user['username'],'UTF-8').' <' . $local_user['email'] . '>' . "\n";
|
|
|
|
}
|
|
|
|
} else {
|
2018-04-26 18:30:43 -04:00
|
|
|
$headers = 'From: '. Email::encodeHeader($local_user['username'], 'UTF-8') . ' <noreply@' . self::getApp()->get_hostname() . '>' . "\n";
|
2018-04-25 17:18:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
$headers .= 'Message-Id: <' . Email::iri2msgid($target_item['uri']) . '>' . "\n";
|
|
|
|
|
|
|
|
if ($target_item['uri'] !== $target_item['parent-uri']) {
|
|
|
|
$headers .= "References: <" . Email::iri2msgid($target_item["parent-uri"]) . ">";
|
|
|
|
|
|
|
|
// If Threading is enabled, write down the correct parent
|
|
|
|
if (($target_item["thr-parent"] != "") && ($target_item["thr-parent"] != $target_item["parent-uri"])) {
|
|
|
|
$headers .= " <".Email::iri2msgid($target_item["thr-parent"]).">";
|
|
|
|
}
|
|
|
|
$headers .= "\n";
|
|
|
|
|
|
|
|
if (empty($target_item['title'])) {
|
|
|
|
$condition = ['uri' => $target_item['parent-uri'], 'uid' => $owner['uid']];
|
|
|
|
$title = dba::selectFirst('item', ['title'], $condition);
|
|
|
|
if (DBM::is_result($title) && ($title['title'] != '')) {
|
|
|
|
$subject = $title['title'];
|
|
|
|
} else {
|
|
|
|
$condition = ['parent-uri' => $target_item['parent-uri'], 'uid' => $owner['uid']];
|
|
|
|
$title = dba::selectFirst('item', ['title'], $condition);
|
|
|
|
if (DBM::is_result($title) && ($title['title'] != '')) {
|
|
|
|
$subject = $title['title'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-04-26 17:16:16 -04:00
|
|
|
if (strncasecmp($subject, 'RE:', 3)) {
|
2018-04-25 17:18:21 -04:00
|
|
|
$subject = 'Re: ' . $subject;
|
|
|
|
}
|
|
|
|
}
|
2018-04-25 17:55:24 -04:00
|
|
|
Email::send($addr, $subject, $headers, $target_item);
|
2017-11-19 13:59:55 -05:00
|
|
|
}
|
2011-08-26 10:29:22 -04:00
|
|
|
}
|