2020-01-04 12:21:42 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2020-02-09 14:45:36 +00:00
|
|
|
* @copyright Copyright (C) 2020, Friendica
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
2020-01-04 12:21:42 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Friendica\Model;
|
|
|
|
|
2020-01-05 01:23:40 +00:00
|
|
|
use Friendica\Core\Logger;
|
2020-01-04 21:45:20 +00:00
|
|
|
use Friendica\Core\Hook;
|
2020-01-04 12:21:42 +00:00
|
|
|
use Friendica\Database\DBA;
|
2020-01-04 21:45:20 +00:00
|
|
|
use Friendica\DI;
|
|
|
|
use Friendica\Util\Strings;
|
2020-04-26 16:15:39 +00:00
|
|
|
use Friendica\Model\Tag;
|
2020-08-12 04:35:24 +00:00
|
|
|
use Friendica\Protocol\Activity;
|
2020-01-04 12:21:42 +00:00
|
|
|
|
|
|
|
class UserItem
|
|
|
|
{
|
2020-01-05 09:08:40 +00:00
|
|
|
// Notification types
|
2020-01-05 00:54:18 +00:00
|
|
|
const NOTIF_NONE = 0;
|
|
|
|
const NOTIF_EXPLICIT_TAGGED = 1;
|
|
|
|
const NOTIF_IMPLICIT_TAGGED = 2;
|
|
|
|
const NOTIF_THREAD_COMMENT = 4;
|
|
|
|
const NOTIF_DIRECT_COMMENT = 8;
|
|
|
|
const NOTIF_COMMENT_PARTICIPATION = 16;
|
|
|
|
const NOTIF_ACTIVITY_PARTICIPATION = 32;
|
2020-01-09 17:53:17 +00:00
|
|
|
const NOTIF_DIRECT_THREAD_COMMENT = 64;
|
2020-01-05 00:54:18 +00:00
|
|
|
const NOTIF_SHARED = 128;
|
|
|
|
|
2020-01-04 12:21:42 +00:00
|
|
|
/**
|
|
|
|
* Checks an item for notifications and sets the "notification-type" field
|
2020-01-05 13:37:24 +00:00
|
|
|
* @ToDo:
|
|
|
|
* - Check for mentions in posts with "uid=0" where the user hadn't interacted before
|
2020-01-04 12:21:42 +00:00
|
|
|
*
|
2020-01-05 02:18:11 +00:00
|
|
|
* @param int $iid Item ID
|
2020-01-04 12:21:42 +00:00
|
|
|
*/
|
2020-01-05 02:18:11 +00:00
|
|
|
public static function setNotification(int $iid)
|
2020-01-04 12:21:42 +00:00
|
|
|
{
|
2020-08-12 04:35:24 +00:00
|
|
|
$fields = ['id', 'uri-id', 'uid', 'body', 'parent', 'gravity', 'tag',
|
|
|
|
'contact-id', 'thr-parent', 'parent-uri', 'author-id', 'verb'];
|
2020-01-05 02:18:11 +00:00
|
|
|
$item = Item::selectFirst($fields, ['id' => $iid, 'origin' => false]);
|
|
|
|
if (!DBA::isResult($item)) {
|
|
|
|
return;
|
|
|
|
}
|
2020-01-05 01:23:40 +00:00
|
|
|
|
2020-01-05 09:08:40 +00:00
|
|
|
// fetch all users in the thread
|
|
|
|
$users = DBA::p("SELECT DISTINCT(`contact`.`uid`) FROM `item`
|
|
|
|
INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id` AND `contact`.`uid` != 0
|
|
|
|
WHERE `parent` IN (SELECT `parent` FROM `item` WHERE `id`=?)", $iid);
|
|
|
|
while ($user = DBA::fetch($users)) {
|
|
|
|
self::setNotificationForUser($item, $user['uid']);
|
2020-01-05 00:54:18 +00:00
|
|
|
}
|
2020-01-05 09:08:40 +00:00
|
|
|
DBA::close($users);
|
2020-01-05 02:18:11 +00:00
|
|
|
}
|
2020-01-05 00:54:18 +00:00
|
|
|
|
2020-01-05 09:08:40 +00:00
|
|
|
/**
|
|
|
|
* Checks an item for notifications for the given user and sets the "notification-type" field
|
|
|
|
*
|
|
|
|
* @param array $item Item array
|
|
|
|
* @param int $uid User ID
|
|
|
|
*/
|
2020-01-05 02:18:11 +00:00
|
|
|
private static function setNotificationForUser(array $item, int $uid)
|
|
|
|
{
|
2020-01-05 09:48:31 +00:00
|
|
|
$thread = Item::selectFirstThreadForUser($uid, ['ignored'], ['iid' => $item['parent'], 'deleted' => false]);
|
2020-07-09 19:05:11 +00:00
|
|
|
if (!empty($thread['ignored'])) {
|
2020-01-05 00:54:18 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$notification_type = self::NOTIF_NONE;
|
|
|
|
|
2020-01-04 21:45:20 +00:00
|
|
|
if (self::checkShared($item, $uid)) {
|
2020-01-05 00:54:18 +00:00
|
|
|
$notification_type = $notification_type | self::NOTIF_SHARED;
|
2020-01-04 21:45:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$profiles = self::getProfileForUser($uid);
|
|
|
|
|
2020-01-05 02:18:11 +00:00
|
|
|
// Fetch all contacts for the given profiles
|
2020-01-05 00:54:18 +00:00
|
|
|
$contacts = [];
|
|
|
|
$ret = DBA::select('contact', ['id'], ['uid' => 0, 'nurl' => $profiles]);
|
|
|
|
while ($contact = DBA::fetch($ret)) {
|
|
|
|
$contacts[] = $contact['id'];
|
|
|
|
}
|
|
|
|
DBA::close($ret);
|
|
|
|
|
2020-01-05 09:48:31 +00:00
|
|
|
// Don't create notifications for user's posts
|
|
|
|
if (in_array($item['author-id'], $contacts)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-01-05 10:16:01 +00:00
|
|
|
if (self::checkImplicitMention($item, $profiles)) {
|
2020-01-05 09:48:31 +00:00
|
|
|
$notification_type = $notification_type | self::NOTIF_IMPLICIT_TAGGED;
|
|
|
|
}
|
|
|
|
|
2020-01-05 10:16:01 +00:00
|
|
|
if (self::checkExplicitMention($item, $profiles)) {
|
2020-01-05 09:48:31 +00:00
|
|
|
$notification_type = $notification_type | self::NOTIF_EXPLICIT_TAGGED;
|
|
|
|
}
|
|
|
|
|
2020-01-05 10:16:01 +00:00
|
|
|
if (self::checkCommentedThread($item, $contacts)) {
|
2020-01-05 00:54:18 +00:00
|
|
|
$notification_type = $notification_type | self::NOTIF_THREAD_COMMENT;
|
2020-01-04 21:45:20 +00:00
|
|
|
}
|
|
|
|
|
2020-01-05 20:42:32 +00:00
|
|
|
if (self::checkDirectComment($item, $contacts)) {
|
2020-01-05 00:54:18 +00:00
|
|
|
$notification_type = $notification_type | self::NOTIF_DIRECT_COMMENT;
|
2020-01-04 21:45:20 +00:00
|
|
|
}
|
2020-01-05 00:54:18 +00:00
|
|
|
|
2020-01-09 17:53:17 +00:00
|
|
|
if (self::checkDirectCommentedThread($item, $contacts)) {
|
|
|
|
$notification_type = $notification_type | self::NOTIF_DIRECT_THREAD_COMMENT;
|
|
|
|
}
|
|
|
|
|
2020-01-05 02:18:11 +00:00
|
|
|
if (self::checkCommentedParticipation($item, $contacts)) {
|
2020-01-05 00:54:18 +00:00
|
|
|
$notification_type = $notification_type | self::NOTIF_COMMENT_PARTICIPATION;
|
|
|
|
}
|
|
|
|
|
2020-01-05 02:18:11 +00:00
|
|
|
if (self::checkActivityParticipation($item, $contacts)) {
|
2020-01-05 00:54:18 +00:00
|
|
|
$notification_type = $notification_type | self::NOTIF_ACTIVITY_PARTICIPATION;
|
|
|
|
}
|
|
|
|
|
2020-01-05 01:23:40 +00:00
|
|
|
if (empty($notification_type)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Logger::info('Set notification', ['iid' => $item['id'], 'uid' => $uid, 'notification-type' => $notification_type]);
|
|
|
|
|
2020-01-05 00:54:18 +00:00
|
|
|
DBA::update('user-item', ['notification-type' => $notification_type], ['iid' => $item['id'], 'uid' => $uid], true);
|
2020-01-04 21:45:20 +00:00
|
|
|
}
|
|
|
|
|
2020-01-05 02:18:11 +00:00
|
|
|
/**
|
2020-01-05 09:08:40 +00:00
|
|
|
* Fetch all profiles (contact URL) of a given user
|
2020-01-05 02:18:11 +00:00
|
|
|
* @param int $uid User ID
|
|
|
|
*
|
2020-01-05 12:07:02 +00:00
|
|
|
* @return array Profile links
|
2020-01-05 02:18:11 +00:00
|
|
|
*/
|
2020-01-05 11:00:57 +00:00
|
|
|
private static function getProfileForUser(int $uid)
|
2020-01-04 21:45:20 +00:00
|
|
|
{
|
2020-01-05 00:54:18 +00:00
|
|
|
$notification_data = ['uid' => $uid, 'profiles' => []];
|
2020-01-04 21:45:20 +00:00
|
|
|
Hook::callAll('check_item_notification', $notification_data);
|
|
|
|
|
2020-01-05 13:13:36 +00:00
|
|
|
$profiles = $notification_data['profiles'];
|
2020-01-04 21:45:20 +00:00
|
|
|
|
2020-01-05 09:08:40 +00:00
|
|
|
$user = DBA::selectFirst('user', ['nickname'], ['uid' => $uid]);
|
2020-01-04 21:45:20 +00:00
|
|
|
if (!DBA::isResult($user)) {
|
2020-01-05 02:18:11 +00:00
|
|
|
return [];
|
2020-01-04 21:45:20 +00:00
|
|
|
}
|
|
|
|
|
2020-01-05 13:13:36 +00:00
|
|
|
$owner = DBA::selectFirst('contact', ['url', 'alias'], ['self' => true, 'uid' => $uid]);
|
2020-01-04 21:45:20 +00:00
|
|
|
if (!DBA::isResult($owner)) {
|
2020-01-05 02:18:11 +00:00
|
|
|
return [];
|
2020-01-04 21:45:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// This is our regular URL format
|
2020-01-05 13:13:36 +00:00
|
|
|
$profiles[] = $owner['url'];
|
2020-01-04 21:45:20 +00:00
|
|
|
|
2020-01-05 13:13:36 +00:00
|
|
|
// Now the alias
|
|
|
|
$profiles[] = $owner['alias'];
|
2020-01-04 21:45:20 +00:00
|
|
|
|
2020-01-05 13:13:36 +00:00
|
|
|
// Notifications from Diaspora are often with an URL in the Diaspora format
|
|
|
|
$profiles[] = DI::baseUrl() . '/u/' . $user['nickname'];
|
2020-01-04 21:45:20 +00:00
|
|
|
|
2020-01-05 12:49:57 +00:00
|
|
|
// Validate and add profile links
|
2020-01-05 13:13:36 +00:00
|
|
|
foreach ($profiles AS $key => $profile) {
|
2020-01-05 13:19:11 +00:00
|
|
|
// Check for invalid profile urls (without scheme, host or path) and remove them
|
|
|
|
if (empty(parse_url($profile, PHP_URL_SCHEME)) || empty(parse_url($profile, PHP_URL_HOST)) || empty(parse_url($profile, PHP_URL_PATH))) {
|
2020-01-05 13:13:36 +00:00
|
|
|
unset($profiles[$key]);
|
2020-01-05 12:49:57 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add the normalized form
|
|
|
|
$profile = Strings::normaliseLink($profile);
|
2020-01-05 13:05:00 +00:00
|
|
|
$profiles[] = $profile;
|
2020-01-04 21:45:20 +00:00
|
|
|
|
2020-01-05 12:49:57 +00:00
|
|
|
// Add the SSL form
|
|
|
|
$profile = str_replace('http://', 'https://', $profile);
|
2020-01-05 13:05:00 +00:00
|
|
|
$profiles[] = $profile;
|
2020-01-04 21:45:20 +00:00
|
|
|
}
|
|
|
|
|
2020-01-05 13:05:00 +00:00
|
|
|
return array_unique($profiles);
|
2020-01-04 12:21:42 +00:00
|
|
|
}
|
|
|
|
|
2020-01-05 02:18:11 +00:00
|
|
|
/**
|
2020-01-05 09:08:40 +00:00
|
|
|
* Check for a "shared" notification for every new post of contacts from the given user
|
2020-01-05 02:18:11 +00:00
|
|
|
* @param array $item
|
|
|
|
* @param int $uid User ID
|
2020-01-05 09:08:40 +00:00
|
|
|
* @return bool A contact had shared something
|
2020-01-05 02:18:11 +00:00
|
|
|
*/
|
2020-01-05 11:00:57 +00:00
|
|
|
private static function checkShared(array $item, int $uid)
|
2020-01-04 12:21:42 +00:00
|
|
|
{
|
2020-08-12 04:35:24 +00:00
|
|
|
if (($item['gravity'] != GRAVITY_PARENT) && ($item['verb'] != Activity::ANNOUNCE)) {
|
2020-01-04 12:21:42 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Either the contact had posted something directly
|
|
|
|
if (DBA::exists('contact', ['id' => $item['contact-id'], 'notify_new_posts' => true])) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-08-12 04:35:24 +00:00
|
|
|
if ($item['gravity'] != GRAVITY_PARENT) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-01-04 12:21:42 +00:00
|
|
|
// Or the contact is a mentioned forum
|
2020-05-01 12:41:17 +00:00
|
|
|
$tags = DBA::select('tag-view', ['url'], ['uri-id' => $item['uri-id'], 'type' => [Tag::MENTION, Tag::EXCLUSIVE_MENTION]]);
|
2020-01-04 12:21:42 +00:00
|
|
|
while ($tag = DBA::fetch($tags)) {
|
2020-01-05 00:54:18 +00:00
|
|
|
$condition = ['nurl' => Strings::normaliseLink($tag['url']), 'uid' => $uid, 'notify_new_posts' => true, 'contact-type' => Contact::TYPE_COMMUNITY];
|
2020-01-04 12:21:42 +00:00
|
|
|
if (DBA::exists('contact', $condition)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2020-04-28 13:33:03 +00:00
|
|
|
DBA::close($tags);
|
2020-01-04 12:21:42 +00:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-01-05 02:18:11 +00:00
|
|
|
/**
|
2020-01-05 09:08:40 +00:00
|
|
|
* Check for an implicit mention (only tag, no body) of the given user
|
2020-01-05 02:18:11 +00:00
|
|
|
* @param array $item
|
2020-01-05 12:07:02 +00:00
|
|
|
* @param array $profiles Profile links
|
2020-01-05 09:08:40 +00:00
|
|
|
* @return bool The user is mentioned
|
2020-01-05 02:18:11 +00:00
|
|
|
*/
|
2020-01-05 11:00:57 +00:00
|
|
|
private static function checkImplicitMention(array $item, array $profiles)
|
2020-01-04 12:21:42 +00:00
|
|
|
{
|
2020-05-02 05:08:05 +00:00
|
|
|
$mentions = Tag::getByURIId($item['uri-id'], [Tag::IMPLICIT_MENTION]);
|
|
|
|
foreach ($mentions as $mention) {
|
|
|
|
foreach ($profiles as $profile) {
|
|
|
|
if (Strings::compareLink($profile, $mention['url'])) {
|
2020-01-05 02:18:11 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2020-01-04 12:21:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-01-05 02:18:11 +00:00
|
|
|
/**
|
2020-01-05 09:08:40 +00:00
|
|
|
* Check for an explicit mention (tag and body) of the given user
|
2020-01-05 02:18:11 +00:00
|
|
|
* @param array $item
|
2020-01-05 12:07:02 +00:00
|
|
|
* @param array $profiles Profile links
|
2020-01-05 09:08:40 +00:00
|
|
|
* @return bool The user is mentioned
|
2020-01-05 02:18:11 +00:00
|
|
|
*/
|
2020-01-05 11:00:57 +00:00
|
|
|
private static function checkExplicitMention(array $item, array $profiles)
|
2020-01-04 12:21:42 +00:00
|
|
|
{
|
2020-05-02 05:08:05 +00:00
|
|
|
$mentions = Tag::getByURIId($item['uri-id'], [Tag::MENTION, Tag::EXCLUSIVE_MENTION]);
|
|
|
|
foreach ($mentions as $mention) {
|
|
|
|
foreach ($profiles as $profile) {
|
|
|
|
if (Strings::compareLink($profile, $mention['url'])) {
|
2020-01-05 02:18:11 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2020-01-04 12:21:42 +00:00
|
|
|
}
|
|
|
|
|
2020-01-05 00:54:18 +00:00
|
|
|
return false;
|
|
|
|
}
|
2020-01-04 21:45:20 +00:00
|
|
|
|
2020-01-05 02:18:11 +00:00
|
|
|
/**
|
2020-01-05 09:08:40 +00:00
|
|
|
* Check if the given user had created this thread
|
2020-01-05 02:18:11 +00:00
|
|
|
* @param array $item
|
2020-01-05 11:00:57 +00:00
|
|
|
* @param array $contacts Array of contact IDs
|
2020-01-05 09:08:40 +00:00
|
|
|
* @return bool The user had created this thread
|
2020-01-05 02:18:11 +00:00
|
|
|
*/
|
2020-01-05 11:00:57 +00:00
|
|
|
private static function checkCommentedThread(array $item, array $contacts)
|
2020-01-05 00:54:18 +00:00
|
|
|
{
|
|
|
|
$condition = ['parent' => $item['parent'], 'author-id' => $contacts, 'deleted' => false, 'gravity' => GRAVITY_PARENT];
|
|
|
|
return Item::exists($condition);
|
|
|
|
}
|
2020-01-04 12:21:42 +00:00
|
|
|
|
2020-01-05 02:18:11 +00:00
|
|
|
/**
|
|
|
|
* Check for a direct comment to a post of the given user
|
|
|
|
* @param array $item
|
2020-01-05 11:00:57 +00:00
|
|
|
* @param array $contacts Array of contact IDs
|
2020-01-05 09:08:40 +00:00
|
|
|
* @return bool The item is a direct comment to a user comment
|
2020-01-05 02:18:11 +00:00
|
|
|
*/
|
2020-01-05 20:42:32 +00:00
|
|
|
private static function checkDirectComment(array $item, array $contacts)
|
2020-01-05 00:54:18 +00:00
|
|
|
{
|
2020-01-05 20:42:32 +00:00
|
|
|
$condition = ['uri' => $item['thr-parent'], 'uid' => $item['uid'], 'author-id' => $contacts, 'deleted' => false, 'gravity' => GRAVITY_COMMENT];
|
2020-01-05 00:54:18 +00:00
|
|
|
return Item::exists($condition);
|
|
|
|
}
|
2020-01-04 12:21:42 +00:00
|
|
|
|
2020-01-09 17:53:17 +00:00
|
|
|
/**
|
|
|
|
* Check for a direct comment to the starting post of the given user
|
|
|
|
* @param array $item
|
|
|
|
* @param array $contacts Array of contact IDs
|
|
|
|
* @return bool The user had created this thread
|
|
|
|
*/
|
|
|
|
private static function checkDirectCommentedThread(array $item, array $contacts)
|
|
|
|
{
|
|
|
|
$condition = ['uri' => $item['thr-parent'], 'uid' => $item['uid'], 'author-id' => $contacts, 'deleted' => false, 'gravity' => GRAVITY_PARENT];
|
|
|
|
return Item::exists($condition);
|
|
|
|
}
|
|
|
|
|
2020-01-05 02:18:11 +00:00
|
|
|
/**
|
|
|
|
* Check if the user had commented in this thread
|
|
|
|
* @param array $item
|
2020-01-05 11:00:57 +00:00
|
|
|
* @param array $contacts Array of contact IDs
|
2020-01-05 09:08:40 +00:00
|
|
|
* @return bool The user had commented in the thread
|
2020-01-05 02:18:11 +00:00
|
|
|
*/
|
2020-01-05 11:00:57 +00:00
|
|
|
private static function checkCommentedParticipation(array $item, array $contacts)
|
2020-01-05 00:54:18 +00:00
|
|
|
{
|
|
|
|
$condition = ['parent' => $item['parent'], 'author-id' => $contacts, 'deleted' => false, 'gravity' => GRAVITY_COMMENT];
|
|
|
|
return Item::exists($condition);
|
|
|
|
}
|
|
|
|
|
2020-01-05 02:18:11 +00:00
|
|
|
/**
|
|
|
|
* Check if the user had interacted in this thread (Like, Dislike, ...)
|
|
|
|
* @param array $item
|
2020-01-05 11:00:57 +00:00
|
|
|
* @param array $contacts Array of contact IDs
|
2020-01-05 09:08:40 +00:00
|
|
|
* @return bool The user had interacted in the thread
|
2020-01-05 02:18:11 +00:00
|
|
|
*/
|
2020-01-05 11:00:57 +00:00
|
|
|
private static function checkActivityParticipation(array $item, array $contacts)
|
2020-01-05 00:54:18 +00:00
|
|
|
{
|
|
|
|
$condition = ['parent' => $item['parent'], 'author-id' => $contacts, 'deleted' => false, 'gravity' => GRAVITY_ACTIVITY];
|
|
|
|
return Item::exists($condition);
|
2020-01-04 12:21:42 +00:00
|
|
|
}
|
|
|
|
}
|