3 * @copyright Copyright (C) 2020, Friendica
5 * @license GNU AGPL version 3 or any later version
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as
9 * published by the Free Software Foundation, either version 3 of the
10 * License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
22 use Friendica\Content\Text\BBCode;
23 use Friendica\Core\Hook;
24 use Friendica\Core\Logger;
25 use Friendica\Core\Renderer;
26 use Friendica\Core\System;
27 use Friendica\Database\DBA;
29 use Friendica\Model\Item;
30 use Friendica\Model\ItemContent;
31 use Friendica\Model\Notify;
32 use Friendica\Model\User;
33 use Friendica\Model\UserItem;
34 use Friendica\Protocol\Activity;
37 * Creates a notification entry and possibly sends a mail
39 * @param array $params Array with the elements:
40 * uid, item, parent, type, otype, verb, event,
41 * link, subject, body, to_name, to_email, source_name,
42 * source_link, activity, preamble, notify_flags,
43 * language, show_in_notification_page
45 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
47 function notification($params)
49 /** @var string the common prefix of a notification subject */
50 $subjectPrefix = DI::l10n()->t('[Friendica:Notify]');
52 // Temporary logging for finding the origin
53 if (!isset($params['uid'])) {
54 Logger::notice('Missing parameters "uid".', ['params' => $params, 'callstack' => System::callstack()]);
57 // Ensure that the important fields are set at any time
58 $fields = ['notify-flags', 'language', 'username', 'email'];
59 $user = DBA::selectFirst('user', $fields, ['uid' => $params['uid']]);
61 if (!DBA::isResult($user)) {
62 Logger::error('Unknown user', ['uid' => $params['uid']]);
66 $params['notify_flags'] = ($params['notify_flags'] ?? '') ?: $user['notify-flags'];
67 $params['language'] = ($params['language'] ?? '') ?: $user['language'];
68 $params['to_name'] = ($params['to_name'] ?? '') ?: $user['username'];
69 $params['to_email'] = ($params['to_email'] ?? '') ?: $user['email'];
71 // from here on everything is in the recipients language
72 $l10n = DI::l10n()->withLang($params['language']);
74 $siteurl = DI::baseUrl()->get(true);
75 $sitename = DI::config()->get('config', 'sitename');
77 $hostname = DI::baseUrl()->getHostname();
78 if (strpos($hostname, ':')) {
79 $hostname = substr($hostname, 0, strpos($hostname, ':'));
82 $user = User::getById($params['uid'], ['nickname', 'page-flags']);
84 // There is no need to create notifications for forum accounts
85 if (!DBA::isResult($user) || in_array($user["page-flags"], [User::PAGE_FLAGS_COMMUNITY, User::PAGE_FLAGS_PRVGROUP])) {
88 $nickname = $user["nickname"];
90 // with $params['show_in_notification_page'] == false, the notification isn't inserted into
91 // the database, and an email is sent if applicable.
92 // default, if not specified: true
93 $show_in_notification_page = isset($params['show_in_notification_page']) ? $params['show_in_notification_page'] : true;
95 $additional_mail_header = "X-Friendica-Account: <".$nickname."@".$hostname.">\n";
97 if (array_key_exists('item', $params)) {
98 $title = $params['item']['title'];
99 $body = $params['item']['body'];
104 if (isset($params['item']['id'])) {
105 $item_id = $params['item']['id'];
110 if (isset($params['item']['uri-id'])) {
111 $uri_id = $params['item']['uri-id'];
116 if (isset($params['parent'])) {
117 $parent_id = $params['parent'];
122 if (isset($params['item']['parent-uri-id'])) {
123 $parent_uri_id = $params['item']['parent-uri-id'];
136 if ($params['type'] == Notify\Type::MAIL) {
137 $itemlink = $siteurl.'/message/'.$params['item']['id'];
138 $params["link"] = $itemlink;
140 $subject = $l10n->t('%s New mail received at %s', $subjectPrefix, $sitename);
142 $preamble = $l10n->t('%1$s sent you a new private message at %2$s.', $params['source_name'], $sitename);
143 $epreamble = $l10n->t('%1$s sent you %2$s.', '[url='.$params['source_link'].']'.$params['source_name'].'[/url]', '[url=' . $itemlink . ']' . $l10n->t('a private message').'[/url]');
145 $sitelink = $l10n->t('Please visit %s to view and/or reply to your private messages.');
146 $tsitelink = sprintf($sitelink, $siteurl.'/message/'.$params['item']['id']);
147 $hsitelink = sprintf($sitelink, '<a href="'.$siteurl.'/message/'.$params['item']['id'].'">'.$sitename.'</a>');
150 if ($params['type'] == Notify\Type::COMMENT || $params['type'] == Notify\Type::TAG_SELF) {
151 $thread = Item::selectFirstThreadForUser($params['uid'], ['ignored'], ['iid' => $parent_id, 'deleted' => false]);
152 if (DBA::isResult($thread) && $thread['ignored']) {
153 Logger::log('Thread ' . $parent_id . ' will be ignored', Logger::DEBUG);
157 // Check to see if there was already a tag notify or comment notify for this post.
158 // If so don't create a second notification
159 /// @todo In the future we should store the notification with the highest "value" and replace notifications
160 $condition = ['type' => [Notify\Type::TAG_SELF, Notify\Type::COMMENT, Notify\Type::SHARE],
161 'link' => $params['link'], 'uid' => $params['uid']];
162 if (DBA::exists('notify', $condition)) {
166 // if it's a post figure out who's post it is.
168 if ($params['otype'] === Notify\ObjectType::ITEM && $parent_id) {
169 $item = Item::selectFirstForUser($params['uid'], Item::ITEM_FIELDLIST, ['id' => $parent_id, 'deleted' => false]);
176 $item_post_type = Item::postType($item);
178 $content = ItemContent::getPlaintextPost($item, 70);
179 if (!empty($content['text'])) {
180 $title = '"' . trim(str_replace("\n", " ", $content['text'])) . '"';
185 // First go for the general message
187 // "George Bull's post"
188 if ($params['activity']['origin_comment']) {
189 $message = $l10n->t('%1$s replied to you on %2$s\'s %3$s %4$s');
190 } elseif ($params['activity']['explicit_tagged']) {
191 $message = $l10n->t('%1$s tagged you on %2$s\'s %3$s %4$s');
193 $message = $l10n->t('%1$s commented on %2$s\'s %3$s %4$s');
196 $dest_str = sprintf($message, $params['source_name'], $item['author-name'], $item_post_type, $title);
198 // Then look for the special cases
201 if ($params['activity']['origin_thread']) {
202 if ($params['activity']['origin_comment']) {
203 $message = $l10n->t('%1$s replied to you on your %2$s %3$s');
204 } elseif ($params['activity']['explicit_tagged']) {
205 $message = $l10n->t('%1$s tagged you on your %2$s %3$s');
207 $message = $l10n->t('%1$s commented on your %2$s %3$s');
210 $dest_str = sprintf($message, $params['source_name'], $item_post_type, $title);
212 } elseif ($item['author-link'] == $params['source_link']) {
213 if ($params['activity']['origin_comment']) {
214 $message = $l10n->t('%1$s replied to you on their %2$s %3$s');
215 } elseif ($params['activity']['explicit_tagged']) {
216 $message = $l10n->t('%1$s tagged you on their %2$s %3$s');
218 $message = $l10n->t('%1$s commented on their %2$s %3$s');
221 $dest_str = sprintf($message, $params['source_name'], $item_post_type, $title);
224 // Some mail software relies on subject field for threading.
225 // So, we cannot have different subjects for notifications of the same thread.
226 // Before this we have the name of the replier on the subject rendering
227 // different subjects for messages on the same thread.
228 if ($params['activity']['explicit_tagged']) {
229 $subject = $l10n->t('%s %s tagged you', $subjectPrefix, $params['source_name']);
231 $preamble = $l10n->t('%1$s tagged you at %2$s', $params['source_name'], $sitename);
233 $subject = $l10n->t('%1$s Comment to conversation #%2$d by %3$s', $subjectPrefix, $parent_id, $params['source_name']);
235 $preamble = $l10n->t('%s commented on an item/conversation you have been following.', $params['source_name']);
238 $epreamble = $dest_str;
240 $sitelink = $l10n->t('Please visit %s to view and/or reply to the conversation.');
241 $tsitelink = sprintf($sitelink, $siteurl);
242 $hsitelink = sprintf($sitelink, '<a href="' . $siteurl . '">' . $sitename . '</a>');
243 $itemlink = $params['link'];
246 if ($params['type'] == Notify\Type::WALL) {
247 $subject = $l10n->t('%s %s posted to your profile wall', $subjectPrefix, $params['source_name']);
249 $preamble = $l10n->t('%1$s posted to your profile wall at %2$s', $params['source_name'], $sitename);
250 $epreamble = $l10n->t('%1$s posted to [url=%2$s]your wall[/url]',
251 '[url='.$params['source_link'].']'.$params['source_name'].'[/url]',
255 $sitelink = $l10n->t('Please visit %s to view and/or reply to the conversation.');
256 $tsitelink = sprintf($sitelink, $siteurl);
257 $hsitelink = sprintf($sitelink, '<a href="'.$siteurl.'">'.$sitename.'</a>');
258 $itemlink = $params['link'];
261 if ($params['type'] == Notify\Type::SHARE) {
262 $subject = $l10n->t('%s %s shared a new post', $subjectPrefix, $params['source_name']);
264 $preamble = $l10n->t('%1$s shared a new post at %2$s', $params['source_name'], $sitename);
265 $epreamble = $l10n->t('%1$s [url=%2$s]shared a post[/url].',
266 '[url='.$params['source_link'].']'.$params['source_name'].'[/url]',
270 $sitelink = $l10n->t('Please visit %s to view and/or reply to the conversation.');
271 $tsitelink = sprintf($sitelink, $siteurl);
272 $hsitelink = sprintf($sitelink, '<a href="'.$siteurl.'">'.$sitename.'</a>');
273 $itemlink = $params['link'];
276 if ($params['type'] == Notify\Type::POKE) {
277 $subject = $l10n->t('%1$s %2$s poked you', $subjectPrefix, $params['source_name']);
279 $preamble = $l10n->t('%1$s poked you at %2$s', $params['source_name'], $sitename);
280 $epreamble = $l10n->t('%1$s [url=%2$s]poked you[/url].',
281 '[url='.$params['source_link'].']'.$params['source_name'].'[/url]',
285 $subject = str_replace('poked', $l10n->t($params['activity']), $subject);
286 $preamble = str_replace('poked', $l10n->t($params['activity']), $preamble);
287 $epreamble = str_replace('poked', $l10n->t($params['activity']), $epreamble);
289 $sitelink = $l10n->t('Please visit %s to view and/or reply to the conversation.');
290 $tsitelink = sprintf($sitelink, $siteurl);
291 $hsitelink = sprintf($sitelink, '<a href="'.$siteurl.'">'.$sitename.'</a>');
292 $itemlink = $params['link'];
295 if ($params['type'] == Notify\Type::TAG_SHARE) {
296 $itemlink = $params['link'];
297 $subject = $l10n->t('%s %s tagged your post', $subjectPrefix, $params['source_name']);
299 $preamble = $l10n->t('%1$s tagged your post at %2$s', $params['source_name'], $sitename);
300 $epreamble = $l10n->t('%1$s tagged [url=%2$s]your post[/url]',
301 '[url='.$params['source_link'].']'.$params['source_name'].'[/url]',
305 $sitelink = $l10n->t('Please visit %s to view and/or reply to the conversation.');
306 $tsitelink = sprintf($sitelink, $siteurl);
307 $hsitelink = sprintf($sitelink, '<a href="'.$siteurl.'">'.$sitename.'</a>');
310 if ($params['type'] == Notify\Type::INTRO) {
311 $itemlink = $params['link'];
312 $subject = $l10n->t('%s Introduction received', $subjectPrefix);
314 $preamble = $l10n->t('You\'ve received an introduction from \'%1$s\' at %2$s', $params['source_name'], $sitename);
315 $epreamble = $l10n->t('You\'ve received [url=%1$s]an introduction[/url] from %2$s.',
317 '[url='.$params['source_link'].']'.$params['source_name'].'[/url]'
320 $body = $l10n->t('You may visit their profile at %s', $params['source_link']);
322 $sitelink = $l10n->t('Please visit %s to approve or reject the introduction.');
323 $tsitelink = sprintf($sitelink, $siteurl);
324 $hsitelink = sprintf($sitelink, '<a href="'.$siteurl.'">'.$sitename.'</a>');
326 switch ($params['verb']) {
327 case Activity::FRIEND:
328 // someone started to share with user (mostly OStatus)
329 $subject = $l10n->t('%s A new person is sharing with you', $subjectPrefix);
331 $preamble = $l10n->t('%1$s is sharing with you at %2$s', $params['source_name'], $sitename);
332 $epreamble = $l10n->t('%1$s is sharing with you at %2$s',
333 '[url='.$params['source_link'].']'.$params['source_name'].'[/url]',
337 case Activity::FOLLOW:
338 // someone started to follow the user (mostly OStatus)
339 $subject = $l10n->t('%s You have a new follower', $subjectPrefix);
341 $preamble = $l10n->t('You have a new follower at %2$s : %1$s', $params['source_name'], $sitename);
342 $epreamble = $l10n->t('You have a new follower at %2$s : %1$s',
343 '[url='.$params['source_link'].']'.$params['source_name'].'[/url]',
348 // ACTIVITY_REQ_FRIEND is default activity for notifications
353 if ($params['type'] == Notify\Type::SUGGEST) {
354 $itemlink = $params['link'];
355 $subject = $l10n->t('%s Friend suggestion received', $subjectPrefix);
357 $preamble = $l10n->t('You\'ve received a friend suggestion from \'%1$s\' at %2$s', $params['source_name'], $sitename);
358 $epreamble = $l10n->t('You\'ve received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s.',
360 '[url='.$params['item']['url'].']'.$params['item']['name'].'[/url]',
361 '[url='.$params['source_link'].']'.$params['source_name'].'[/url]'
364 $body = $l10n->t('Name:').' '.$params['item']['name']."\n";
365 $body .= $l10n->t('Photo:').' '.$params['item']['photo']."\n";
366 $body .= $l10n->t('You may visit their profile at %s', $params['item']['url']);
368 $sitelink = $l10n->t('Please visit %s to approve or reject the suggestion.');
369 $tsitelink = sprintf($sitelink, $siteurl);
370 $hsitelink = sprintf($sitelink, '<a href="'.$siteurl.'">'.$sitename.'</a>');
373 if ($params['type'] == Notify\Type::CONFIRM) {
374 if ($params['verb'] == Activity::FRIEND) { // mutual connection
375 $itemlink = $params['link'];
376 $subject = $l10n->t('%s Connection accepted', $subjectPrefix);
378 $preamble = $l10n->t('\'%1$s\' has accepted your connection request at %2$s', $params['source_name'], $sitename);
379 $epreamble = $l10n->t('%2$s has accepted your [url=%1$s]connection request[/url].',
381 '[url='.$params['source_link'].']'.$params['source_name'].'[/url]'
384 $body = $l10n->t('You are now mutual friends and may exchange status updates, photos, and email without restriction.');
386 $sitelink = $l10n->t('Please visit %s if you wish to make any changes to this relationship.');
387 $tsitelink = sprintf($sitelink, $siteurl);
388 $hsitelink = sprintf($sitelink, '<a href="'.$siteurl.'">'.$sitename.'</a>');
389 } else { // ACTIVITY_FOLLOW
390 $itemlink = $params['link'];
391 $subject = $l10n->t('%s Connection accepted', $subjectPrefix);
393 $preamble = $l10n->t('\'%1$s\' has accepted your connection request at %2$s', $params['source_name'], $sitename);
394 $epreamble = $l10n->t('%2$s has accepted your [url=%1$s]connection request[/url].',
396 '[url='.$params['source_link'].']'.$params['source_name'].'[/url]'
399 $body = $l10n->t('\'%1$s\' has chosen to accept you a fan, which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically.', $params['source_name']);
401 $body .= $l10n->t('\'%1$s\' may choose to extend this into a two-way or more permissive relationship in the future.', $params['source_name']);
403 $sitelink = $l10n->t('Please visit %s if you wish to make any changes to this relationship.');
404 $tsitelink = sprintf($sitelink, $siteurl);
405 $hsitelink = sprintf($sitelink, '<a href="'.$siteurl.'">'.$sitename.'</a>');
409 if ($params['type'] == Notify\Type::SYSTEM) {
410 switch($params['event']) {
411 case "SYSTEM_REGISTER_REQUEST":
412 $itemlink = $params['link'];
413 $subject = $l10n->t('[Friendica System Notify]') . ' ' . $l10n->t('registration request');
415 $preamble = $l10n->t('You\'ve received a registration request from \'%1$s\' at %2$s', $params['source_name'], $sitename);
416 $epreamble = $l10n->t('You\'ve received a [url=%1$s]registration request[/url] from %2$s.',
418 '[url='.$params['source_link'].']'.$params['source_name'].'[/url]'
421 $body = $l10n->t("Full Name: %s\nSite Location: %s\nLogin Name: %s (%s)",
422 $params['source_name'],
423 $siteurl, $params['source_mail'],
424 $params['source_nick']
427 $sitelink = $l10n->t('Please visit %s to approve or reject the request.');
428 $tsitelink = sprintf($sitelink, $params['link']);
429 $hsitelink = sprintf($sitelink, '<a href="'.$params['link'].'">'.$sitename.'</a><br><br>');
431 case "SYSTEM_DB_UPDATE_FAIL":
436 $subject .= " (".$nickname."@".$hostname.")";
440 'subject' => $subject,
441 'preamble' => $preamble,
442 'epreamble' => $epreamble,
444 'sitelink' => $sitelink,
445 'tsitelink' => $tsitelink,
446 'hsitelink' => $hsitelink,
447 'itemlink' => $itemlink
450 Hook::callAll('enotify', $h);
452 $subject = $h['subject'];
454 $preamble = $h['preamble'];
455 $epreamble = $h['epreamble'];
459 $tsitelink = $h['tsitelink'];
460 $hsitelink = $h['hsitelink'];
461 $itemlink = $h['itemlink'];
465 if ($show_in_notification_page) {
466 $notification = DI::notify()->insert([
467 'name' => $params['source_name'] ?? '',
468 'name_cache' => substr(strip_tags(BBCode::convert($params['source_name'])), 0, 255),
469 'url' => $params['source_link'] ?? '',
470 'photo' => $params['source_photo'] ?? '',
471 'link' => $itemlink ?? '',
472 'uid' => $params['uid'] ?? 0,
475 'parent' => $parent_id,
476 'parent-uri-id' => $parent_uri_id,
477 'type' => $params['type'] ?? '',
478 'verb' => $params['verb'] ?? '',
479 'otype' => $params['otype'] ?? '',
482 // Notification insertion can be intercepted by an addon registering the 'enotify_store' hook
483 if (!$notification) {
487 $notification->msg = Renderer::replaceMacros($epreamble, ['$itemlink' => $notification->link]);
489 DI::notify()->update($notification);
491 $itemlink = DI::baseUrl() . '/notification/' . $notification->id;
492 $notify_id = $notification->id;
495 // send email notification if notification preferences permit
496 if ((intval($params['notify_flags']) & intval($params['type']))
497 || $params['type'] == Notify\Type::SYSTEM) {
499 Logger::log('sending notification email');
501 if (isset($params['parent']) && (intval($params['parent']) != 0)) {
502 $id_for_parent = $params['parent'] . "@" . $hostname;
504 // Is this the first email notification for this parent item and user?
505 if (!DBA::exists('notify-threads', ['master-parent-item' => $params['parent'], 'receiver-uid' => $params['uid']])) {
506 Logger::log("notify_id:" . intval($notify_id) . ", parent: " . intval($params['parent']) . "uid: " . intval($params['uid']), Logger::DEBUG);
508 $fields = ['notify-id' => $notify_id, 'master-parent-item' => $params['parent'],
509 'master-parent-uri-id' => $parent_uri_id,
510 'receiver-uid' => $params['uid'], 'parent-item' => 0];
511 DBA::insert('notify-threads', $fields);
513 $additional_mail_header .= "Message-ID: <${id_for_parent}>\n";
514 $log_msg = "include/enotify: No previous notification found for this parent:\n" .
515 " parent: ${params['parent']}\n" . " uid : ${params['uid']}\n";
516 Logger::log($log_msg, Logger::DEBUG);
518 // If not, just "follow" the thread.
519 $additional_mail_header .= "References: <${id_for_parent}>\nIn-Reply-To: <${id_for_parent}>\n";
520 Logger::log("There's already a notification for this parent.", Logger::DEBUG);
525 'preamble' => $preamble,
526 'type' => $params['type'],
527 'parent' => $parent_id,
528 'source_name' => $params['source_name'] ?? null,
529 'source_link' => $params['source_link'] ?? null,
530 'source_photo' => $params['source_photo'] ?? null,
531 'uid' => $params['uid'],
532 'hsitelink' => $hsitelink,
533 'tsitelink' => $tsitelink,
534 'itemlink' => $itemlink,
537 'subject' => $subject,
538 'headers' => $additional_mail_header,
541 Hook::callAll('enotify_mail', $datarray);
543 $builder = DI::emailer()
545 ->addHeaders($datarray['headers'])
546 ->withRecipient($params['to_email'])
548 'uid' => $datarray['uid'],
549 'language' => $params['language'],
551 ->withNotification($datarray['subject'], $datarray['preamble'], $datarray['title'], $datarray['body'])
552 ->withSiteLink($datarray['tsitelink'], $datarray['hsitelink'])
553 ->withItemLink($datarray['itemlink']);
555 // If a photo is present, add it to the email
556 if (!empty($datarray['source_photo'])) {
558 $datarray['source_photo'],
559 $datarray['source_link'] ?? $sitelink,
560 $datarray['source_name'] ?? $sitename);
563 $email = $builder->build();
565 // use the Emailer class to send the message
566 return DI::emailer()->send($email);
573 * Checks for users who should be notified
575 * @param int $itemid ID of the item for which the check should be done
576 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
578 function check_user_notification($itemid) {
579 // fetch all users with notifications
580 $useritems = DBA::select('user-item', ['uid', 'notification-type'], ['iid' => $itemid]);
581 while ($useritem = DBA::fetch($useritems)) {
582 check_item_notification($itemid, $useritem['uid'], $useritem['notification-type']);
584 DBA::close($useritems);
588 * Checks for item related notifications and sends them
590 * @param int $itemid ID of the item for which the check should be done
591 * @param int $uid User ID
592 * @param int $notification_type Notification bits
594 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
596 function check_item_notification($itemid, $uid, $notification_type) {
597 $fields = ['id', 'uri-id', 'mention', 'parent', 'parent-uri-id', 'title', 'body',
598 'author-link', 'author-name', 'author-avatar', 'author-id',
599 'guid', 'parent-uri', 'uri', 'contact-id', 'network'];
600 $condition = ['id' => $itemid, 'gravity' => [GRAVITY_PARENT, GRAVITY_COMMENT], 'deleted' => false];
601 $item = Item::selectFirstForUser($uid, $fields, $condition);
602 if (!DBA::isResult($item)) {
606 // Generate the notification array
608 $params['uid'] = $uid;
609 $params['item'] = $item;
610 $params['parent'] = $item['parent'];
611 $params['link'] = DI::baseUrl() . '/display/' . urlencode($item['guid']);
612 $params['otype'] = 'item';
613 $params['source_name'] = $item['author-name'];
614 $params['source_link'] = $item['author-link'];
615 $params['source_photo'] = $item['author-avatar'];
617 // Set the activity flags
618 $params['activity']['explicit_tagged'] = ($notification_type & UserItem::NOTIF_EXPLICIT_TAGGED);
619 $params['activity']['implicit_tagged'] = ($notification_type & UserItem::NOTIF_IMPLICIT_TAGGED);
620 $params['activity']['origin_comment'] = ($notification_type & UserItem::NOTIF_DIRECT_COMMENT);
621 $params['activity']['origin_thread'] = ($notification_type & UserItem::NOTIF_THREAD_COMMENT);
622 $params['activity']['thread_comment'] = ($notification_type & UserItem::NOTIF_COMMENT_PARTICIPATION);
623 $params['activity']['thread_activity'] = ($notification_type & UserItem::NOTIF_ACTIVITY_PARTICIPATION);
625 // Tagging a user in a direct post (first comment level) means a direct comment
626 if ($params['activity']['explicit_tagged'] && ($notification_type & UserItem::NOTIF_DIRECT_THREAD_COMMENT)) {
627 $params['activity']['origin_comment'] = true;
630 if ($notification_type & UserItem::NOTIF_SHARED) {
631 $params['type'] = Notify\Type::SHARE;
632 $params['verb'] = Activity::POST;
633 } elseif ($notification_type & UserItem::NOTIF_EXPLICIT_TAGGED) {
634 $params['type'] = Notify\Type::TAG_SELF;
635 $params['verb'] = Activity::TAG;
636 } elseif ($notification_type & UserItem::NOTIF_IMPLICIT_TAGGED) {
637 $params['type'] = Notify\Type::COMMENT;
638 $params['verb'] = Activity::POST;
639 } elseif ($notification_type & UserItem::NOTIF_THREAD_COMMENT) {
640 $params['type'] = Notify\Type::COMMENT;
641 $params['verb'] = Activity::POST;
642 } elseif ($notification_type & UserItem::NOTIF_DIRECT_COMMENT) {
643 $params['type'] = Notify\Type::COMMENT;
644 $params['verb'] = Activity::POST;
645 } elseif ($notification_type & UserItem::NOTIF_COMMENT_PARTICIPATION) {
646 $params['type'] = Notify\Type::COMMENT;
647 $params['verb'] = Activity::POST;
648 } elseif ($notification_type & UserItem::NOTIF_ACTIVITY_PARTICIPATION) {
649 $params['type'] = Notify\Type::COMMENT;
650 $params['verb'] = Activity::POST;
655 notification($params);