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 namespace Friendica\Model;
24 use Friendica\Core\Logger;
25 use Friendica\Core\Hook;
26 use Friendica\Database\DBA;
28 use Friendica\Util\Strings;
29 use Friendica\Model\Tag;
30 use Friendica\Protocol\Activity;
36 const NOTIF_EXPLICIT_TAGGED = 1;
37 const NOTIF_IMPLICIT_TAGGED = 2;
38 const NOTIF_THREAD_COMMENT = 4;
39 const NOTIF_DIRECT_COMMENT = 8;
40 const NOTIF_COMMENT_PARTICIPATION = 16;
41 const NOTIF_ACTIVITY_PARTICIPATION = 32;
42 const NOTIF_DIRECT_THREAD_COMMENT = 64;
43 const NOTIF_SHARED = 128;
46 * Checks an item for notifications and sets the "notification-type" field
48 * - Check for mentions in posts with "uid=0" where the user hadn't interacted before
50 * @param int $iid Item ID
52 public static function setNotification(int $iid)
54 $fields = ['id', 'uri-id', 'uid', 'body', 'parent', 'gravity', 'tag',
55 'contact-id', 'thr-parent', 'parent-uri', 'author-id', 'verb'];
56 $item = Item::selectFirst($fields, ['id' => $iid, 'origin' => false]);
57 if (!DBA::isResult($item)) {
61 // fetch all users in the thread
62 $users = DBA::p("SELECT DISTINCT(`contact`.`uid`) FROM `item`
63 INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id` AND `contact`.`uid` != 0
64 WHERE `parent` IN (SELECT `parent` FROM `item` WHERE `id`=?)", $iid);
65 while ($user = DBA::fetch($users)) {
66 self::setNotificationForUser($item, $user['uid']);
72 * Checks an item for notifications for the given user and sets the "notification-type" field
74 * @param array $item Item array
75 * @param int $uid User ID
77 private static function setNotificationForUser(array $item, int $uid)
79 $thread = Item::selectFirstThreadForUser($uid, ['ignored'], ['iid' => $item['parent'], 'deleted' => false]);
80 if (!empty($thread['ignored'])) {
84 $notification_type = self::NOTIF_NONE;
86 if (self::checkShared($item, $uid)) {
87 $notification_type = $notification_type | self::NOTIF_SHARED;
90 $profiles = self::getProfileForUser($uid);
92 // Fetch all contacts for the given profiles
94 $ret = DBA::select('contact', ['id'], ['uid' => 0, 'nurl' => $profiles]);
95 while ($contact = DBA::fetch($ret)) {
96 $contacts[] = $contact['id'];
100 // Don't create notifications for user's posts
101 if (in_array($item['author-id'], $contacts)) {
105 if (self::checkImplicitMention($item, $profiles)) {
106 $notification_type = $notification_type | self::NOTIF_IMPLICIT_TAGGED;
109 if (self::checkExplicitMention($item, $profiles)) {
110 $notification_type = $notification_type | self::NOTIF_EXPLICIT_TAGGED;
113 if (self::checkCommentedThread($item, $contacts)) {
114 $notification_type = $notification_type | self::NOTIF_THREAD_COMMENT;
117 if (self::checkDirectComment($item, $contacts)) {
118 $notification_type = $notification_type | self::NOTIF_DIRECT_COMMENT;
121 if (self::checkDirectCommentedThread($item, $contacts)) {
122 $notification_type = $notification_type | self::NOTIF_DIRECT_THREAD_COMMENT;
125 if (self::checkCommentedParticipation($item, $contacts)) {
126 $notification_type = $notification_type | self::NOTIF_COMMENT_PARTICIPATION;
129 if (self::checkActivityParticipation($item, $contacts)) {
130 $notification_type = $notification_type | self::NOTIF_ACTIVITY_PARTICIPATION;
133 if (empty($notification_type)) {
137 Logger::info('Set notification', ['iid' => $item['id'], 'uid' => $uid, 'notification-type' => $notification_type]);
139 DBA::update('user-item', ['notification-type' => $notification_type], ['iid' => $item['id'], 'uid' => $uid], true);
143 * Fetch all profiles (contact URL) of a given user
144 * @param int $uid User ID
146 * @return array Profile links
148 private static function getProfileForUser(int $uid)
150 $notification_data = ['uid' => $uid, 'profiles' => []];
151 Hook::callAll('check_item_notification', $notification_data);
153 $profiles = $notification_data['profiles'];
155 $user = DBA::selectFirst('user', ['nickname'], ['uid' => $uid]);
156 if (!DBA::isResult($user)) {
160 $owner = DBA::selectFirst('contact', ['url', 'alias'], ['self' => true, 'uid' => $uid]);
161 if (!DBA::isResult($owner)) {
165 // This is our regular URL format
166 $profiles[] = $owner['url'];
169 $profiles[] = $owner['alias'];
171 // Notifications from Diaspora are often with an URL in the Diaspora format
172 $profiles[] = DI::baseUrl() . '/u/' . $user['nickname'];
174 // Validate and add profile links
175 foreach ($profiles AS $key => $profile) {
176 // Check for invalid profile urls (without scheme, host or path) and remove them
177 if (empty(parse_url($profile, PHP_URL_SCHEME)) || empty(parse_url($profile, PHP_URL_HOST)) || empty(parse_url($profile, PHP_URL_PATH))) {
178 unset($profiles[$key]);
182 // Add the normalized form
183 $profile = Strings::normaliseLink($profile);
184 $profiles[] = $profile;
187 $profile = str_replace('http://', 'https://', $profile);
188 $profiles[] = $profile;
191 return array_unique($profiles);
195 * Check for a "shared" notification for every new post of contacts from the given user
197 * @param int $uid User ID
198 * @return bool A contact had shared something
200 private static function checkShared(array $item, int $uid)
202 if (($item['gravity'] != GRAVITY_PARENT) && ($item['verb'] != Activity::ANNOUNCE)) {
206 // Either the contact had posted something directly
207 if (DBA::exists('contact', ['id' => $item['contact-id'], 'notify_new_posts' => true])) {
211 if ($item['gravity'] != GRAVITY_PARENT) {
215 // Or the contact is a mentioned forum
216 $tags = DBA::select('tag-view', ['url'], ['uri-id' => $item['uri-id'], 'type' => [Tag::MENTION, Tag::EXCLUSIVE_MENTION]]);
217 while ($tag = DBA::fetch($tags)) {
218 $condition = ['nurl' => Strings::normaliseLink($tag['url']), 'uid' => $uid, 'notify_new_posts' => true, 'contact-type' => Contact::TYPE_COMMUNITY];
219 if (DBA::exists('contact', $condition)) {
229 * Check for an implicit mention (only tag, no body) of the given user
231 * @param array $profiles Profile links
232 * @return bool The user is mentioned
234 private static function checkImplicitMention(array $item, array $profiles)
236 $mentions = Tag::getByURIId($item['uri-id'], [Tag::IMPLICIT_MENTION]);
237 foreach ($mentions as $mention) {
238 foreach ($profiles as $profile) {
239 if (Strings::compareLink($profile, $mention['url'])) {
249 * Check for an explicit mention (tag and body) of the given user
251 * @param array $profiles Profile links
252 * @return bool The user is mentioned
254 private static function checkExplicitMention(array $item, array $profiles)
256 $mentions = Tag::getByURIId($item['uri-id'], [Tag::MENTION, Tag::EXCLUSIVE_MENTION]);
257 foreach ($mentions as $mention) {
258 foreach ($profiles as $profile) {
259 if (Strings::compareLink($profile, $mention['url'])) {
269 * Check if the given user had created this thread
271 * @param array $contacts Array of contact IDs
272 * @return bool The user had created this thread
274 private static function checkCommentedThread(array $item, array $contacts)
276 $condition = ['parent' => $item['parent'], 'author-id' => $contacts, 'deleted' => false, 'gravity' => GRAVITY_PARENT];
277 return Item::exists($condition);
281 * Check for a direct comment to a post of the given user
283 * @param array $contacts Array of contact IDs
284 * @return bool The item is a direct comment to a user comment
286 private static function checkDirectComment(array $item, array $contacts)
288 $condition = ['uri' => $item['thr-parent'], 'uid' => $item['uid'], 'author-id' => $contacts, 'deleted' => false, 'gravity' => GRAVITY_COMMENT];
289 return Item::exists($condition);
293 * Check for a direct comment to the starting post of the given user
295 * @param array $contacts Array of contact IDs
296 * @return bool The user had created this thread
298 private static function checkDirectCommentedThread(array $item, array $contacts)
300 $condition = ['uri' => $item['thr-parent'], 'uid' => $item['uid'], 'author-id' => $contacts, 'deleted' => false, 'gravity' => GRAVITY_PARENT];
301 return Item::exists($condition);
305 * Check if the user had commented in this thread
307 * @param array $contacts Array of contact IDs
308 * @return bool The user had commented in the thread
310 private static function checkCommentedParticipation(array $item, array $contacts)
312 $condition = ['parent' => $item['parent'], 'author-id' => $contacts, 'deleted' => false, 'gravity' => GRAVITY_COMMENT];
313 return Item::exists($condition);
317 * Check if the user had interacted in this thread (Like, Dislike, ...)
319 * @param array $contacts Array of contact IDs
320 * @return bool The user had interacted in the thread
322 private static function checkActivityParticipation(array $item, array $contacts)
324 $condition = ['parent' => $item['parent'], 'author-id' => $contacts, 'deleted' => false, 'gravity' => GRAVITY_ACTIVITY];
325 return Item::exists($condition);