3 * @file src/Worker/Delivery.php
6 namespace Friendica\Worker;
9 use Friendica\Core\System;
10 use Friendica\Core\Config;
11 use Friendica\Database\DBM;
12 use Friendica\Object\Contact;
13 use Friendica\Protocol\Diaspora;
14 use Friendica\Protocol\DFRN;
16 require_once 'include/queue_fn.php';
17 require_once 'include/html2plain.php';
18 require_once 'include/datetime.php';
19 require_once 'include/items.php';
20 require_once 'include/bbcode.php';
21 require_once 'include/email.php';
23 /// @todo This is some ugly code that needs to be split into several methods
26 public static function execute($cmd, $item_id, $contact_id) {
29 logger('delivery: invoked: '.$cmd.': '.$item_id.' to '.$contact_id, LOGGER_DEBUG);
36 $recipients = array();
37 $url_recipients = array();
42 $recipients[] = $contact_id;
44 if ($cmd === 'mail') {
47 $message = q("SELECT * FROM `mail` WHERE `id` = %d LIMIT 1",
50 if (!count($message)) {
53 $uid = $message[0]['uid'];
54 $recipients[] = $message[0]['contact-id'];
56 } elseif ($cmd === 'expire') {
59 $items = q("SELECT * FROM `item` WHERE `uid` = %d AND `wall` = 1
60 AND `deleted` = 1 AND `changed` > UTC_TIMESTAMP() - INTERVAL 30 MINUTE",
68 } elseif ($cmd === 'suggest') {
72 $suggest = q("SELECT * FROM `fsuggest` WHERE `id` = %d LIMIT 1",
75 if (!count($suggest)) {
78 $uid = $suggest[0]['uid'];
79 $recipients[] = $suggest[0]['cid'];
81 } elseif ($cmd === 'relocate') {
87 $r = q("SELECT * FROM `item` WHERE `id` = %d AND visible = 1 AND moderated = 0 LIMIT 1",
91 if (!DBM::is_result($r) || !intval($r[0]['parent'])) {
96 $parent_id = intval($r[0]['parent']);
98 $updated = $r[0]['edited'];
100 $items = q("SELECT `item`.*, `sign`.`signed_text`,`sign`.`signature`,`sign`.`signer`
101 FROM `item` LEFT JOIN `sign` ON `sign`.`iid` = `item`.`id` WHERE `parent` = %d AND visible = 1 AND moderated = 0 ORDER BY `id` ASC",
105 if (!count($items)) {
110 $contacts_arr = array();
111 foreach ($items as $item) {
112 if (!in_array($item['contact-id'],$contacts_arr)) {
113 $contacts_arr[] = intval($item['contact-id']);
116 if (count($contacts_arr)) {
117 $str_contacts = implode(',',$contacts_arr);
118 $icontacts = q("SELECT * FROM `contact`
119 WHERE `id` IN ( $str_contacts ) "
122 if ( !($icontacts && count($icontacts))) {
126 // avoid race condition with deleting entries
128 if ($items[0]['deleted']) {
129 foreach ($items as $item) {
130 $item['deleted'] = 1;
134 // When commenting too fast after delivery, a post wasn't recognized as top level post.
135 // The count then showed more than one entry. The additional check should help.
136 // The check for the "count" should be superfluous, but I'm not totally sure by now, so we keep it.
137 if ((($items[0]['id'] == $item_id) || (count($items) == 1)) && ($items[0]['uri'] === $items[0]['parent-uri'])) {
138 logger('delivery: top level post');
143 $r = q("SELECT `contact`.*, `user`.`pubkey` AS `upubkey`, `user`.`prvkey` AS `uprvkey`,
144 `user`.`timezone`, `user`.`nickname`, `user`.`sprvkey`, `user`.`spubkey`,
145 `user`.`page-flags`, `user`.`account-type`, `user`.`prvnets`
146 FROM `contact` INNER JOIN `user` ON `user`.`uid` = `contact`.`uid`
147 WHERE `contact`.`uid` = %d AND `contact`.`self` = 1 LIMIT 1",
151 if (!DBM::is_result($r)) {
157 $walltowall = (($top_level && ($owner['id'] != $items[0]['contact-id'])) ? true : false);
159 $public_message = true;
161 if (!($mail || $fsuggest || $relocate)) {
162 require_once 'include/group.php';
166 // This is IMPORTANT!!!!
168 // We will only send a "notify owner to relay" or followup message if the referenced post
169 // originated on our system by virtue of having our hostname somewhere
170 // in the URI, AND it was a comment (not top_level) AND the parent originated elsewhere.
171 // if $parent['wall'] == 1 we will already have the parent message in our array
172 // and we will relay the whole lot.
174 // expire sends an entire group of expire messages and cannot be forwarded.
175 // However the conversation owner will be a part of the conversation and will
176 // be notified during this run.
177 // Other DFRN conversation members will be alerted during polled updates.
179 // Diaspora members currently are not notified of expirations, and other networks have
180 // either limited or no ability to process deletions. We should at least fix Diaspora
181 // by stringing togther an array of retractions and sending them onward.
184 $localhost = $a->get_hostname();
185 if (strpos($localhost,':')) {
186 $localhost = substr($localhost,0,strpos($localhost,':'));
190 * Be VERY CAREFUL if you make any changes to the following line. Seemingly innocuous changes
191 * have been known to cause runaway conditions which affected several servers, along with
192 * permissions issues.
196 $relay_to_owner = false;
198 if (!$top_level && ($parent['wall'] == 0) && !$expire && stristr($target_item['uri'],$localhost)) {
199 $relay_to_owner = true;
202 if ($relay_to_owner) {
203 logger('followup '.$target_item["guid"], LOGGER_DEBUG);
204 // local followup to remote post
208 if ((strlen($parent['allow_cid']))
209 || (strlen($parent['allow_gid']))
210 || (strlen($parent['deny_cid']))
211 || (strlen($parent['deny_gid']))
212 || $parent["private"]) {
213 $public_message = false; // private recipients, not public
218 $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `blocked` = 0 AND `pending` = 0",
222 if (DBM::is_result($r)) {
225 if ($contact['self']) {
230 logger("main delivery by delivery: followup=$followup mail=$mail fsuggest=$fsuggest relocate=$relocate - network ".$contact['network']);
232 switch($contact['network']) {
235 logger('notifier: '.$target_item["guid"].' dfrndelivery: '.$contact['name']);
238 $item['body'] = fix_private_photos($item['body'],$owner['uid'],null,$message[0]['contact-id']);
239 $atom = DFRN::mail($item, $owner);
240 } elseif ($fsuggest) {
241 $atom = DFRN::fsuggest($item, $owner);
242 q("DELETE FROM `fsuggest` WHERE `id` = %d LIMIT 1", intval($item['id']));
243 } elseif ($relocate) {
244 $atom = DFRN::relocate($owner, $uid);
245 } elseif ($followup) {
247 foreach ($items as $item) { // there is only one item
248 if (!$item['parent']) {
251 if ($item['id'] == $item_id) {
252 logger('followup: item: '. print_r($item,true), LOGGER_DATA);
256 $atom = DFRN::entries($msgitems,$owner);
259 foreach ($items as $item) {
260 if (!$item['parent']) {
264 // private emails may be in included in public conversations. Filter them.
265 if ($public_message && $item['private']) {
269 $item_contact = get_item_contact($item,$icontacts);
270 if (!$item_contact) {
275 if ($item_id == $item['id'] || $item['id'] == $item['parent']) {
276 $item["entry:comment-allow"] = true;
277 $item["entry:cid"] = (($top_level) ? $contact['id'] : 0);
281 $item["entry:comment-allow"] = true;
285 $atom = DFRN::entries($msgitems,$owner);
288 logger('notifier entry: '.$contact["url"].' '.$target_item["guid"].' entry: '.$atom, LOGGER_DEBUG);
290 logger('notifier: '.$atom, LOGGER_DATA);
291 $basepath = implode('/', array_slice(explode('/',$contact['url']),0,3));
293 // perform local delivery if we are on the same site
295 if (link_compare($basepath,System::baseUrl())) {
297 $nickname = basename($contact['url']);
298 if ($contact['issued-id']) {
299 $sql_extra = sprintf(" AND `dfrn-id` = '%s' ", dbesc($contact['issued-id']));
301 $sql_extra = sprintf(" AND `issued-id` = '%s' ", dbesc($contact['dfrn-id']));
304 $x = q("SELECT `contact`.*, `contact`.`uid` AS `importer_uid`,
305 `contact`.`pubkey` AS `cpubkey`,
306 `contact`.`prvkey` AS `cprvkey`,
307 `contact`.`thumb` AS `thumb`,
308 `contact`.`url` as `url`,
309 `contact`.`name` as `senderName`,
312 INNER JOIN `user` ON `contact`.`uid` = `user`.`uid`
313 WHERE `contact`.`blocked` = 0 AND `contact`.`pending` = 0
314 AND `contact`.`network` = '%s' AND `user`.`nickname` = '%s'
316 AND `user`.`account_expired` = 0 AND `user`.`account_removed` = 0 LIMIT 1",
321 if ($x && count($x)) {
322 $write_flag = ((($x[0]['rel']) && ($x[0]['rel'] != CONTACT_IS_SHARING)) ? true : false);
323 if ((($owner['page-flags'] == PAGE_COMMUNITY) || $write_flag) && !$x[0]['writable']) {
324 q("UPDATE `contact` SET `writable` = 1 WHERE `id` = %d",
327 $x[0]['writable'] = 1;
330 $ssl_policy = Config::get('system','ssl_policy');
331 fix_contact_ssl_policy($x[0],$ssl_policy);
333 // If we are setup as a soapbox we aren't accepting top level posts from this person
335 if (($x[0]['page-flags'] == PAGE_SOAPBOX) && $top_level) {
338 logger('mod-delivery: local delivery');
339 DFRN::import($atom, $x[0]);
344 if (!was_recently_delayed($contact['id'])) {
345 $deliver_status = DFRN::deliver($owner,$contact,$atom);
347 $deliver_status = (-1);
350 logger('notifier: dfrn_delivery to '.$contact["url"].' with guid '.$target_item["guid"].' returns '.$deliver_status);
352 if ($deliver_status < 0) {
353 logger('notifier: delivery failed: queuing message');
354 add_to_queue($contact['id'],NETWORK_DFRN,$atom);
356 // The message could not be delivered. We mark the contact as "dead"
357 Contact::markForArchival($contact);
359 // We successfully delivered a message, the contact is alive
360 Contact::unmarkForArchival($contact);
365 case NETWORK_OSTATUS:
366 // Do not send to otatus if we are not configured to send to public networks
367 if ($owner['prvnets']) {
370 if (Config::get('system','ostatus_disabled') || Config::get('system','dfrn_only')) {
374 // There is currently no code here to distribute anything to OStatus.
375 // This is done in "notifier.php" (See "url_recipients" and "push_notify")
381 if (Config::get('system','dfrn_only')) {
384 // WARNING: does not currently convert to RFC2047 header encodings, etc.
386 $addr = $contact['addr'];
387 if (!strlen($addr)) {
391 if ($cmd === 'wall-new' || $cmd === 'comment-new') {
394 if ($cmd === 'wall-new') {
397 $r = q("SELECT * FROM `item` WHERE `id` = %d AND `uid` = %d LIMIT 1",
401 if (DBM::is_result($r))
408 $local_user = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1",
411 if (!count($local_user))
415 $r1 = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
418 if ($r1 && $r1[0]['reply_to'])
419 $reply_to = $r1[0]['reply_to'];
421 $subject = (($it['title']) ? email_header_encode($it['title'],'UTF-8') : t("\x28no subject\x29")) ;
423 // only expose our real email address to true friends
425 if (($contact['rel'] == CONTACT_IS_FRIEND) && !$contact['blocked']) {
427 $headers = 'From: '.email_header_encode($local_user[0]['username'],'UTF-8').' <'.$reply_to.'>'."\n";
428 $headers .= 'Sender: '.$local_user[0]['email']."\n";
430 $headers = 'From: '.email_header_encode($local_user[0]['username'],'UTF-8').' <'.$local_user[0]['email'].'>'."\n";
433 $headers = 'From: '. email_header_encode($local_user[0]['username'],'UTF-8') .' <'. t('noreply') .'@'.$a->get_hostname() .'>'. "\n";
437 // $headers .= 'Reply-to: '.$reply_to . "\n";
439 $headers .= 'Message-Id: <'. iri2msgid($it['uri']).'>'. "\n";
441 //logger("Mail: uri: ".$it['uri']." parent-uri ".$it['parent-uri'], LOGGER_DEBUG);
442 //logger("Mail: Data: ".print_r($it, true), LOGGER_DEBUG);
443 //logger("Mail: Data: ".print_r($it, true), LOGGER_DATA);
445 if ($it['uri'] !== $it['parent-uri']) {
446 $headers .= "References: <".iri2msgid($it["parent-uri"]).">";
448 // If Threading is enabled, write down the correct parent
449 if (($it["thr-parent"] != "") && ($it["thr-parent"] != $it["parent-uri"]))
450 $headers .= " <".iri2msgid($it["thr-parent"]).">";
454 $r = q("SELECT `title` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
455 dbesc($it['parent-uri']),
458 if (DBM::is_result($r) && ($r[0]['title'] != '')) {
459 $subject = $r[0]['title'];
461 $r = q("SELECT `title` FROM `item` WHERE `parent-uri` = '%s' AND `uid` = %d LIMIT 1",
462 dbesc($it['parent-uri']),
465 if (DBM::is_result($r) && ($r[0]['title'] != ''))
466 $subject = $r[0]['title'];
469 if (strncasecmp($subject,'RE:',3))
470 $subject = 'Re: '.$subject;
472 email_send($addr, $subject, $headers, $it);
476 case NETWORK_DIASPORA:
478 $loc = 'public batch '.$contact['batch'];
480 $loc = $contact['name'];
482 logger('delivery: diaspora batch deliver: '.$loc);
484 if (Config::get('system','dfrn_only') || !Config::get('system','diaspora_enabled'))
488 Diaspora::send_mail($item,$owner,$contact);
495 if (!$contact['pubkey'] && !$public_message)
498 if (($target_item['deleted']) && (($target_item['uri'] === $target_item['parent-uri']) || $followup)) {
499 // top-level retraction
500 logger('diaspora retract: '.$loc);
501 Diaspora::send_retraction($target_item,$owner,$contact,$public_message);
503 } elseif ($relocate) {
504 Diaspora::sendAccountMigration($owner, $contact, $uid);
506 } elseif ($followup) {
507 // send comments and likes to owner to relay
508 logger('diaspora followup: '.$loc);
509 Diaspora::send_followup($target_item,$owner,$contact,$public_message);
511 } elseif ($target_item['uri'] !== $target_item['parent-uri']) {
512 // we are the relay - send comments, likes and relayable_retractions to our conversants
513 logger('diaspora relay: '.$loc);
514 Diaspora::send_relay($target_item,$owner,$contact,$public_message);
516 } elseif ($top_level && !$walltowall) {
517 // currently no workable solution for sending walltowall
518 logger('diaspora status: '.$loc);
519 Diaspora::send_status($target_item,$owner,$contact,$public_message);
523 logger('delivery: diaspora unknown mode: '.$contact['name']);