2021-02-01 05:31:38 -05:00
|
|
|
<?php
|
|
|
|
/**
|
2022-01-02 02:27:47 -05:00
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
2021-02-01 05:31:38 -05:00
|
|
|
*
|
|
|
|
* @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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Friendica\Model\Post;
|
|
|
|
|
2021-09-17 23:25:17 -04:00
|
|
|
use BadMethodCallException;
|
|
|
|
use Exception;
|
2021-02-02 00:45:57 -05:00
|
|
|
use Friendica\Core\Hook;
|
2021-09-17 23:25:17 -04:00
|
|
|
use Friendica\Core\Logger;
|
2021-02-01 05:31:38 -05:00
|
|
|
use Friendica\Database\Database;
|
|
|
|
use Friendica\Database\DBA;
|
|
|
|
use Friendica\Database\DBStructure;
|
2021-02-02 00:45:57 -05:00
|
|
|
use Friendica\DI;
|
|
|
|
use Friendica\Model\Contact;
|
2022-09-12 17:12:11 -04:00
|
|
|
use Friendica\Model\Item;
|
2021-02-02 00:45:57 -05:00
|
|
|
use Friendica\Model\Post;
|
2021-08-15 12:18:25 -04:00
|
|
|
use Friendica\Model\Subscription;
|
2021-02-02 00:45:57 -05:00
|
|
|
use Friendica\Model\Tag;
|
2022-02-13 00:45:06 -05:00
|
|
|
use Friendica\Model\User;
|
2021-09-17 23:25:17 -04:00
|
|
|
use Friendica\Network\HTTPException;
|
2021-02-02 00:45:57 -05:00
|
|
|
use Friendica\Protocol\Activity;
|
2021-09-17 23:25:17 -04:00
|
|
|
use Friendica\Util\Strings;
|
2021-02-01 05:31:38 -05:00
|
|
|
|
|
|
|
class UserNotification
|
|
|
|
{
|
2021-02-02 00:45:57 -05:00
|
|
|
// Notification types
|
2021-09-17 22:14:32 -04:00
|
|
|
const TYPE_NONE = 0;
|
|
|
|
const TYPE_EXPLICIT_TAGGED = 1;
|
|
|
|
const TYPE_IMPLICIT_TAGGED = 2;
|
|
|
|
const TYPE_THREAD_COMMENT = 4;
|
|
|
|
const TYPE_DIRECT_COMMENT = 8;
|
|
|
|
const TYPE_COMMENT_PARTICIPATION = 16;
|
|
|
|
const TYPE_ACTIVITY_PARTICIPATION = 32;
|
|
|
|
const TYPE_DIRECT_THREAD_COMMENT = 64;
|
|
|
|
const TYPE_SHARED = 128;
|
2022-06-05 07:41:08 -04:00
|
|
|
const TYPE_FOLLOW = 256;
|
2021-02-02 00:45:57 -05:00
|
|
|
|
2021-02-01 05:31:38 -05:00
|
|
|
/**
|
|
|
|
* Insert a new user notification entry
|
|
|
|
*
|
|
|
|
* @param integer $uri_id
|
|
|
|
* @param integer $uid
|
2021-09-17 23:25:17 -04:00
|
|
|
* @param array $data
|
2021-02-01 05:31:38 -05:00
|
|
|
* @return bool success
|
2021-09-17 23:25:17 -04:00
|
|
|
* @throws Exception
|
2021-02-01 05:31:38 -05:00
|
|
|
*/
|
2021-09-17 23:25:17 -04:00
|
|
|
public static function insert(int $uri_id, int $uid, array $data = []): bool
|
2021-02-01 05:31:38 -05:00
|
|
|
{
|
|
|
|
if (empty($uri_id)) {
|
|
|
|
throw new BadMethodCallException('Empty URI_id');
|
|
|
|
}
|
|
|
|
|
2022-07-12 18:23:12 -04:00
|
|
|
$fields = DI::dbaDefinition()->truncateFieldsForTable('post-user-notification', $data);
|
2021-02-01 05:31:38 -05:00
|
|
|
|
|
|
|
$fields['uri-id'] = $uri_id;
|
2021-09-17 23:25:17 -04:00
|
|
|
$fields['uid'] = $uid;
|
2021-02-01 05:31:38 -05:00
|
|
|
|
|
|
|
return DBA::insert('post-user-notification', $fields, Database::INSERT_IGNORE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update a user notification entry
|
|
|
|
*
|
|
|
|
* @param integer $uri_id
|
|
|
|
* @param integer $uid
|
|
|
|
* @param array $data
|
|
|
|
* @param bool $insert_if_missing
|
|
|
|
* @return bool
|
2021-09-17 23:25:17 -04:00
|
|
|
* @throws Exception
|
2021-02-01 05:31:38 -05:00
|
|
|
*/
|
2021-09-17 23:25:17 -04:00
|
|
|
public static function update(int $uri_id, int $uid, array $data = [], bool $insert_if_missing = false): bool
|
2021-02-01 05:31:38 -05:00
|
|
|
{
|
|
|
|
if (empty($uri_id)) {
|
|
|
|
throw new BadMethodCallException('Empty URI_id');
|
|
|
|
}
|
|
|
|
|
2022-07-12 18:23:12 -04:00
|
|
|
$fields = DI::dbaDefinition()->truncateFieldsForTable('post-user-notification', $data);
|
2021-02-01 05:31:38 -05:00
|
|
|
|
|
|
|
// Remove the key fields
|
|
|
|
unset($fields['uri-id']);
|
|
|
|
unset($fields['uid']);
|
|
|
|
|
|
|
|
if (empty($fields)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return DBA::update('post-user-notification', $fields, ['uri-id' => $uri_id, 'uid' => $uid], $insert_if_missing ? true : []);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Delete a row from the post-user-notification table
|
|
|
|
*
|
2021-09-17 23:25:17 -04:00
|
|
|
* @param array $conditions Field condition(s)
|
|
|
|
* @param array $options - cascade: If true we delete records in other tables that depend on the one we're deleting through
|
2021-02-01 05:31:38 -05:00
|
|
|
* relations (default: true)
|
|
|
|
*
|
2021-09-17 23:25:17 -04:00
|
|
|
* @return boolean was the deletion successful?
|
|
|
|
* @throws Exception
|
2021-02-01 05:31:38 -05:00
|
|
|
*/
|
2021-09-17 23:25:17 -04:00
|
|
|
public static function delete(array $conditions, array $options = []): bool
|
2021-02-01 05:31:38 -05:00
|
|
|
{
|
|
|
|
return DBA::delete('post-user-notification', $conditions, $options);
|
|
|
|
}
|
2021-02-02 00:45:57 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks an item for notifications and sets the "notification-type" field
|
2021-09-17 23:25:17 -04:00
|
|
|
*
|
2021-02-02 00:45:57 -05:00
|
|
|
* @ToDo:
|
|
|
|
* - Check for mentions in posts with "uid=0" where the user hadn't interacted before
|
|
|
|
*
|
|
|
|
* @param int $uri_id URI ID
|
|
|
|
* @param int $uid user ID
|
2021-09-17 23:25:17 -04:00
|
|
|
* @throws Exception
|
2021-02-02 00:45:57 -05:00
|
|
|
*/
|
|
|
|
public static function setNotification(int $uri_id, int $uid)
|
|
|
|
{
|
2021-06-01 01:51:03 -04:00
|
|
|
$fields = ['id', 'uri-id', 'parent-uri-id', 'uid', 'body', 'parent', 'gravity', 'vid', 'gravity',
|
2021-09-17 23:25:17 -04:00
|
|
|
'private', 'contact-id', 'thr-parent', 'thr-parent-id', 'parent-uri-id', 'parent-uri', 'author-id', 'verb'];
|
|
|
|
$item = Post::selectFirst($fields, ['uri-id' => $uri_id, 'uid' => $uid, 'origin' => false]);
|
2021-02-02 00:45:57 -05:00
|
|
|
if (!DBA::isResult($item)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// "Activity::FOLLOW" is an automated activity, so we ignore it here
|
|
|
|
if ($item['verb'] == Activity::FOLLOW) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($item['uid'] == 0) {
|
|
|
|
$uids = [];
|
|
|
|
} else {
|
|
|
|
// Always include the item user
|
|
|
|
$uids = [$item['uid']];
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add every user who participated so far in this thread
|
2021-06-01 01:51:03 -04:00
|
|
|
// This can only happen with participations on global items. (means: uid = 0)
|
2021-02-22 14:47:08 -05:00
|
|
|
$users = DBA::p("SELECT DISTINCT(`contact-uid`) AS `uid` FROM `post-user-view`
|
2021-02-02 00:45:57 -05:00
|
|
|
WHERE `contact-uid` != 0 AND `parent-uri-id` = ? AND `uid` = ?", $item['parent-uri-id'], $uid);
|
|
|
|
while ($user = DBA::fetch($users)) {
|
|
|
|
$uids[] = $user['uid'];
|
|
|
|
}
|
|
|
|
DBA::close($users);
|
|
|
|
|
|
|
|
foreach (array_unique($uids) as $uid) {
|
|
|
|
self::setNotificationForUser($item, $uid);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
2021-09-17 23:25:17 -04:00
|
|
|
* @throws HTTPException\InternalServerErrorException
|
2021-02-02 00:45:57 -05:00
|
|
|
*/
|
|
|
|
private static function setNotificationForUser(array $item, int $uid)
|
|
|
|
{
|
|
|
|
if (Post\ThreadUser::getIgnored($item['parent-uri-id'], $uid)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-02-13 00:45:06 -05:00
|
|
|
$user = User::getById($uid, ['account-type']);
|
|
|
|
if (in_array($user['account-type'], [User::ACCOUNT_TYPE_COMMUNITY, User::ACCOUNT_TYPE_RELAY])) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-02-17 16:44:59 -05:00
|
|
|
$author = Contact::getById($item['author-id'], ['contact-type']);
|
|
|
|
if (empty($author)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-09-17 22:14:32 -04:00
|
|
|
$notification_type = self::TYPE_NONE;
|
2021-02-02 00:45:57 -05:00
|
|
|
|
|
|
|
if (self::checkShared($item, $uid)) {
|
2021-09-17 22:14:32 -04:00
|
|
|
$notification_type = $notification_type | self::TYPE_SHARED;
|
2021-09-17 23:25:17 -04:00
|
|
|
self::insertNotificationByItem(self::TYPE_SHARED, $uid, $item);
|
2021-06-01 01:51:03 -04:00
|
|
|
$notified = true;
|
2022-03-13 00:44:29 -05:00
|
|
|
} elseif ($author['contact-type'] == Contact::TYPE_COMMUNITY) {
|
|
|
|
return;
|
2021-06-01 01:51:03 -04:00
|
|
|
} else {
|
|
|
|
$notified = false;
|
2021-02-02 00:45:57 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
$profiles = self::getProfileForUser($uid);
|
|
|
|
|
|
|
|
// Fetch all contacts for the given profiles
|
2022-02-20 00:14:36 -05:00
|
|
|
$contacts = [];
|
|
|
|
$iscommunity = false;
|
2021-09-17 23:25:17 -04:00
|
|
|
|
2022-02-20 00:14:36 -05:00
|
|
|
$ret = DBA::select('contact', ['id', 'contact-type'], ['uid' => 0, 'nurl' => $profiles]);
|
2021-02-02 00:45:57 -05:00
|
|
|
while ($contact = DBA::fetch($ret)) {
|
|
|
|
$contacts[] = $contact['id'];
|
2022-02-20 00:14:36 -05:00
|
|
|
|
|
|
|
if ($contact['contact-type'] == Contact::TYPE_COMMUNITY) {
|
|
|
|
$iscommunity = true;
|
|
|
|
}
|
2021-02-02 00:45:57 -05:00
|
|
|
}
|
|
|
|
DBA::close($ret);
|
|
|
|
|
|
|
|
// Don't create notifications for user's posts
|
|
|
|
if (in_array($item['author-id'], $contacts)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-03-19 13:53:41 -04:00
|
|
|
if (($item['verb'] != Activity::ANNOUNCE) && self::checkExplicitMention($item, $profiles)) {
|
2021-09-17 22:14:32 -04:00
|
|
|
$notification_type = $notification_type | self::TYPE_EXPLICIT_TAGGED;
|
2021-06-01 01:51:03 -04:00
|
|
|
if (!$notified) {
|
2021-09-17 23:25:17 -04:00
|
|
|
self::insertNotificationByItem(self::TYPE_EXPLICIT_TAGGED, $uid, $item);
|
2021-06-01 01:51:03 -04:00
|
|
|
$notified = true;
|
2021-02-02 00:45:57 -05:00
|
|
|
}
|
2021-06-01 01:51:03 -04:00
|
|
|
}
|
2021-02-02 00:45:57 -05:00
|
|
|
|
2022-03-19 13:53:41 -04:00
|
|
|
if (($item['verb'] != Activity::ANNOUNCE) && self::checkImplicitMention($item, $profiles)) {
|
2021-09-17 22:14:32 -04:00
|
|
|
$notification_type = $notification_type | self::TYPE_IMPLICIT_TAGGED;
|
2021-06-01 01:51:03 -04:00
|
|
|
if (!$notified) {
|
2021-09-17 23:25:17 -04:00
|
|
|
self::insertNotificationByItem(self::TYPE_IMPLICIT_TAGGED, $uid, $item);
|
2021-06-01 01:51:03 -04:00
|
|
|
$notified = true;
|
2021-02-02 00:45:57 -05:00
|
|
|
}
|
2021-06-01 01:51:03 -04:00
|
|
|
}
|
2021-02-02 00:45:57 -05:00
|
|
|
|
2021-06-01 01:51:03 -04:00
|
|
|
if (self::checkDirectComment($item, $contacts)) {
|
2021-09-17 22:14:32 -04:00
|
|
|
$notification_type = $notification_type | self::TYPE_DIRECT_COMMENT;
|
2021-06-01 01:51:03 -04:00
|
|
|
if (!$notified) {
|
2021-09-17 23:25:17 -04:00
|
|
|
self::insertNotificationByItem(self::TYPE_DIRECT_COMMENT, $uid, $item);
|
2021-06-01 01:51:03 -04:00
|
|
|
$notified = true;
|
2021-02-02 00:45:57 -05:00
|
|
|
}
|
2021-06-01 01:51:03 -04:00
|
|
|
}
|
2021-02-02 00:45:57 -05:00
|
|
|
|
2022-02-20 00:14:36 -05:00
|
|
|
if (!$iscommunity && self::checkDirectCommentedThread($item, $contacts)) {
|
2021-09-17 22:14:32 -04:00
|
|
|
$notification_type = $notification_type | self::TYPE_DIRECT_THREAD_COMMENT;
|
2021-06-01 01:51:03 -04:00
|
|
|
if (!$notified) {
|
2021-09-17 23:25:17 -04:00
|
|
|
self::insertNotificationByItem(self::TYPE_DIRECT_THREAD_COMMENT, $uid, $item);
|
2021-06-01 01:51:03 -04:00
|
|
|
$notified = true;
|
2021-02-02 00:45:57 -05:00
|
|
|
}
|
2021-06-01 01:51:03 -04:00
|
|
|
}
|
2021-02-02 00:45:57 -05:00
|
|
|
|
2022-03-19 13:53:41 -04:00
|
|
|
if (($item['verb'] != Activity::ANNOUNCE) && self::checkCommentedThread($item, $contacts)) {
|
2021-09-17 22:14:32 -04:00
|
|
|
$notification_type = $notification_type | self::TYPE_THREAD_COMMENT;
|
2021-06-01 01:51:03 -04:00
|
|
|
if (!$notified) {
|
2021-09-17 23:25:17 -04:00
|
|
|
self::insertNotificationByItem(self::TYPE_THREAD_COMMENT, $uid, $item);
|
2021-06-01 01:51:03 -04:00
|
|
|
$notified = true;
|
2021-02-02 00:45:57 -05:00
|
|
|
}
|
2021-06-01 01:51:03 -04:00
|
|
|
}
|
2021-02-02 00:45:57 -05:00
|
|
|
|
2022-03-19 13:53:41 -04:00
|
|
|
if (($item['verb'] != Activity::ANNOUNCE) && self::checkCommentedParticipation($item, $contacts)) {
|
2021-09-17 22:14:32 -04:00
|
|
|
$notification_type = $notification_type | self::TYPE_COMMENT_PARTICIPATION;
|
2021-06-01 01:51:03 -04:00
|
|
|
if (!$notified) {
|
2021-09-17 23:25:17 -04:00
|
|
|
self::insertNotificationByItem(self::TYPE_COMMENT_PARTICIPATION, $uid, $item);
|
2021-06-01 01:51:03 -04:00
|
|
|
$notified = true;
|
2021-02-02 00:45:57 -05:00
|
|
|
}
|
2021-06-01 01:51:03 -04:00
|
|
|
}
|
2021-02-02 00:45:57 -05:00
|
|
|
|
2022-06-05 07:41:08 -04:00
|
|
|
if (($item['verb'] != Activity::ANNOUNCE) && self::checkFollowParticipation($item, $contacts)) {
|
|
|
|
$notification_type = $notification_type | self::TYPE_FOLLOW;
|
|
|
|
if (!$notified) {
|
|
|
|
self::insertNotificationByItem(self::TYPE_FOLLOW, $uid, $item);
|
|
|
|
$notified = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-19 13:53:41 -04:00
|
|
|
if (($item['verb'] != Activity::ANNOUNCE) && self::checkActivityParticipation($item, $contacts)) {
|
2021-09-17 22:14:32 -04:00
|
|
|
$notification_type = $notification_type | self::TYPE_ACTIVITY_PARTICIPATION;
|
2021-06-01 01:51:03 -04:00
|
|
|
if (!$notified) {
|
2021-09-17 23:25:17 -04:00
|
|
|
self::insertNotificationByItem(self::TYPE_ACTIVITY_PARTICIPATION, $uid, $item);
|
2021-02-02 00:45:57 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-23 14:37:52 -05:00
|
|
|
if (empty($notification_type)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-06-01 01:51:03 -04:00
|
|
|
// Only create notifications for posts and comments, not for activities
|
2022-09-12 17:12:11 -04:00
|
|
|
if (($item['gravity'] == Item::GRAVITY_ACTIVITY) && ($item['verb'] != Activity::ANNOUNCE)) {
|
2021-02-02 00:45:57 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-02-19 01:30:38 -05:00
|
|
|
Logger::info('Set notification', ['uri-id' => $item['uri-id'], 'uid' => $uid, 'notification-type' => $notification_type]);
|
2021-02-02 00:45:57 -05:00
|
|
|
|
|
|
|
$fields = ['notification-type' => $notification_type];
|
|
|
|
Post\User::update($item['uri-id'], $uid, $fields);
|
|
|
|
self::update($item['uri-id'], $uid, $fields, true);
|
|
|
|
}
|
|
|
|
|
2021-06-01 17:13:16 -04:00
|
|
|
/**
|
|
|
|
* Add a notification entry for a given item array
|
|
|
|
*
|
2021-09-17 23:25:17 -04:00
|
|
|
* @param int $type User notification type
|
|
|
|
* @param int $uid User ID
|
2021-06-01 17:13:16 -04:00
|
|
|
* @param array $item Item array
|
2021-09-17 23:25:17 -04:00
|
|
|
* @return void
|
|
|
|
* @throws Exception
|
2021-06-01 17:13:16 -04:00
|
|
|
*/
|
2021-09-17 23:25:17 -04:00
|
|
|
private static function insertNotificationByItem(int $type, int $uid, array $item): void
|
2021-06-01 01:51:03 -04:00
|
|
|
{
|
2022-09-12 17:12:11 -04:00
|
|
|
if (($item['verb'] != Activity::ANNOUNCE) && ($item['gravity'] == Item::GRAVITY_ACTIVITY) &&
|
2021-09-17 22:14:32 -04:00
|
|
|
!in_array($type, [self::TYPE_DIRECT_COMMENT, self::TYPE_DIRECT_THREAD_COMMENT])) {
|
2021-06-01 01:51:03 -04:00
|
|
|
// Activities are only stored when performed on the user's post or comment
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-05-19 05:08:04 -04:00
|
|
|
$notification = DI::notificationFactory()->createForUser(
|
2021-09-18 00:03:32 -04:00
|
|
|
$uid,
|
|
|
|
$item['vid'],
|
|
|
|
$type,
|
|
|
|
$item['author-id'],
|
2022-09-12 17:12:11 -04:00
|
|
|
$item['gravity'] == Item::GRAVITY_ACTIVITY ? $item['thr-parent-id'] : $item['uri-id'],
|
2021-09-18 00:03:32 -04:00
|
|
|
$item['parent-uri-id']
|
|
|
|
);
|
|
|
|
|
|
|
|
try {
|
|
|
|
$notification = DI::notification()->save($notification);
|
|
|
|
Subscription::pushByNotification($notification);
|
|
|
|
} catch (Exception $e) {
|
2021-06-01 01:51:03 -04:00
|
|
|
|
2021-08-15 12:18:25 -04:00
|
|
|
}
|
2021-06-01 17:13:16 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a notification entry
|
|
|
|
*
|
2022-03-03 08:49:07 -05:00
|
|
|
* @param int $actor Public contact ID of the actor
|
2021-09-18 00:03:32 -04:00
|
|
|
* @param string $verb One of the Activity verb constant values
|
|
|
|
* @param int $uid User ID
|
2021-06-01 17:13:16 -04:00
|
|
|
* @return boolean
|
2021-09-17 23:25:17 -04:00
|
|
|
* @throws Exception
|
2021-06-01 17:13:16 -04:00
|
|
|
*/
|
2021-09-18 00:03:32 -04:00
|
|
|
public static function insertNotification(int $actor, string $verb, int $uid): bool
|
2021-06-01 17:13:16 -04:00
|
|
|
{
|
2022-05-19 05:08:04 -04:00
|
|
|
$notification = DI::notificationFactory()->createForRelationship(
|
2021-09-18 00:03:32 -04:00
|
|
|
$uid,
|
|
|
|
$actor,
|
|
|
|
$verb
|
|
|
|
);
|
|
|
|
try {
|
|
|
|
$notification = DI::notification()->save($notification);
|
|
|
|
Subscription::pushByNotification($notification);
|
|
|
|
return true;
|
|
|
|
} catch (Exception $e) {
|
|
|
|
return false;
|
2021-08-15 12:18:25 -04:00
|
|
|
}
|
2021-06-01 01:51:03 -04:00
|
|
|
}
|
|
|
|
|
2021-02-02 00:45:57 -05:00
|
|
|
/**
|
|
|
|
* Fetch all profiles (contact URL) of a given user
|
2021-09-17 23:25:17 -04:00
|
|
|
*
|
2021-02-02 00:45:57 -05:00
|
|
|
* @param int $uid User ID
|
|
|
|
*
|
|
|
|
* @return array Profile links
|
2021-09-17 23:25:17 -04:00
|
|
|
* @throws HTTPException\InternalServerErrorException
|
2021-02-02 00:45:57 -05:00
|
|
|
*/
|
2021-09-17 23:25:17 -04:00
|
|
|
private static function getProfileForUser(int $uid): array
|
2021-02-02 00:45:57 -05:00
|
|
|
{
|
|
|
|
$notification_data = ['uid' => $uid, 'profiles' => []];
|
|
|
|
Hook::callAll('check_item_notification', $notification_data);
|
|
|
|
|
|
|
|
$profiles = $notification_data['profiles'];
|
|
|
|
|
|
|
|
$user = DBA::selectFirst('user', ['nickname'], ['uid' => $uid]);
|
|
|
|
if (!DBA::isResult($user)) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
|
|
|
$owner = DBA::selectFirst('contact', ['url', 'alias'], ['self' => true, 'uid' => $uid]);
|
|
|
|
if (!DBA::isResult($owner)) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
|
|
|
// This is our regular URL format
|
|
|
|
$profiles[] = $owner['url'];
|
|
|
|
|
|
|
|
// Now the alias
|
|
|
|
$profiles[] = $owner['alias'];
|
|
|
|
|
2021-09-17 23:25:17 -04:00
|
|
|
// Notifications from Diaspora often have a URL in the Diaspora format
|
2021-02-02 00:45:57 -05:00
|
|
|
$profiles[] = DI::baseUrl() . '/u/' . $user['nickname'];
|
|
|
|
|
|
|
|
// Validate and add profile links
|
2021-09-17 23:25:17 -04:00
|
|
|
foreach ($profiles as $key => $profile) {
|
2021-02-02 00:45:57 -05: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))) {
|
|
|
|
unset($profiles[$key]);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add the normalized form
|
2021-09-17 23:25:17 -04:00
|
|
|
$profile = Strings::normaliseLink($profile);
|
2021-02-02 00:45:57 -05:00
|
|
|
$profiles[] = $profile;
|
|
|
|
|
|
|
|
// Add the SSL form
|
2021-09-17 23:25:17 -04:00
|
|
|
$profile = str_replace('http://', 'https://', $profile);
|
2021-02-02 00:45:57 -05:00
|
|
|
$profiles[] = $profile;
|
|
|
|
}
|
|
|
|
|
|
|
|
return array_unique($profiles);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check for a "shared" notification for every new post of contacts from the given user
|
2021-09-17 23:25:17 -04:00
|
|
|
*
|
2021-02-02 00:45:57 -05:00
|
|
|
* @param array $item
|
2021-09-17 23:25:17 -04:00
|
|
|
* @param int $uid User ID
|
2021-02-02 00:45:57 -05:00
|
|
|
* @return bool A contact had shared something
|
2021-09-17 23:25:17 -04:00
|
|
|
* @throws Exception
|
2021-02-02 00:45:57 -05:00
|
|
|
*/
|
2021-09-17 23:25:17 -04:00
|
|
|
private static function checkShared(array $item, int $uid): bool
|
2021-02-02 00:45:57 -05:00
|
|
|
{
|
|
|
|
// Only check on original posts and reshare ("announce") activities, otherwise return
|
2022-09-12 17:12:11 -04:00
|
|
|
if (($item['gravity'] != Item::GRAVITY_PARENT) && ($item['verb'] != Activity::ANNOUNCE)) {
|
2021-02-02 00:45:57 -05:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-03-11 23:20:19 -05:00
|
|
|
// Don't notify about reshares by communities of our own posts or each time someone comments
|
|
|
|
if (($item['verb'] == Activity::ANNOUNCE) && DBA::exists('contact', ['id' => $item['contact-id'], 'contact-type' => Contact::TYPE_COMMUNITY])) {
|
|
|
|
$post = Post::selectFirst(['origin', 'gravity'], ['uri-id' => $item['thr-parent-id'], 'uid' => $uid]);
|
2022-09-12 17:12:11 -04:00
|
|
|
if ($post['origin'] || ($post['gravity'] != Item::GRAVITY_PARENT)) {
|
2022-03-11 23:20:19 -05:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-02 00:45:57 -05:00
|
|
|
// Check if the contact posted or shared something directly
|
|
|
|
if (DBA::exists('contact', ['id' => $item['contact-id'], 'notify_new_posts' => true])) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-09-17 23:25:17 -04:00
|
|
|
* Check for an implicit mention (only in tags, not in body) of the given user
|
|
|
|
*
|
2021-02-02 00:45:57 -05:00
|
|
|
* @param array $item
|
|
|
|
* @param array $profiles Profile links
|
|
|
|
* @return bool The user is mentioned
|
2021-09-17 23:25:17 -04:00
|
|
|
* @throws Exception
|
2021-02-02 00:45:57 -05:00
|
|
|
*/
|
2021-09-17 23:25:17 -04:00
|
|
|
private static function checkImplicitMention(array $item, array $profiles): bool
|
2021-02-02 00:45:57 -05:00
|
|
|
{
|
|
|
|
$mentions = Tag::getByURIId($item['uri-id'], [Tag::IMPLICIT_MENTION]);
|
|
|
|
foreach ($mentions as $mention) {
|
|
|
|
foreach ($profiles as $profile) {
|
|
|
|
if (Strings::compareLink($profile, $mention['url'])) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check for an explicit mention (tag and body) of the given user
|
2021-09-17 23:25:17 -04:00
|
|
|
*
|
2021-02-02 00:45:57 -05:00
|
|
|
* @param array $item
|
|
|
|
* @param array $profiles Profile links
|
|
|
|
* @return bool The user is mentioned
|
2021-09-17 23:25:17 -04:00
|
|
|
* @throws Exception
|
2021-02-02 00:45:57 -05:00
|
|
|
*/
|
2021-09-17 23:25:17 -04:00
|
|
|
private static function checkExplicitMention(array $item, array $profiles): bool
|
2021-02-02 00:45:57 -05: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'])) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if the given user had created this thread
|
2021-09-17 23:25:17 -04:00
|
|
|
*
|
2021-02-02 00:45:57 -05:00
|
|
|
* @param array $item
|
|
|
|
* @param array $contacts Array of contact IDs
|
|
|
|
* @return bool The user had created this thread
|
2021-09-17 23:25:17 -04:00
|
|
|
* @throws Exception
|
2021-02-02 00:45:57 -05:00
|
|
|
*/
|
2021-09-17 23:25:17 -04:00
|
|
|
private static function checkCommentedThread(array $item, array $contacts): bool
|
2021-02-02 00:45:57 -05:00
|
|
|
{
|
2022-09-12 17:12:11 -04:00
|
|
|
$condition = ['parent' => $item['parent'], 'author-id' => $contacts, 'deleted' => false, 'gravity' => Item::GRAVITY_PARENT];
|
2021-02-02 00:45:57 -05:00
|
|
|
return Post::exists($condition);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check for a direct comment to a post of the given user
|
2021-09-17 23:25:17 -04:00
|
|
|
*
|
2021-02-02 00:45:57 -05:00
|
|
|
* @param array $item
|
|
|
|
* @param array $contacts Array of contact IDs
|
|
|
|
* @return bool The item is a direct comment to a user comment
|
2021-09-17 23:25:17 -04:00
|
|
|
* @throws Exception
|
2021-02-02 00:45:57 -05:00
|
|
|
*/
|
2021-09-17 23:25:17 -04:00
|
|
|
private static function checkDirectComment(array $item, array $contacts): bool
|
2021-02-02 00:45:57 -05:00
|
|
|
{
|
2022-09-12 17:12:11 -04:00
|
|
|
$condition = ['uri' => $item['thr-parent'], 'uid' => $item['uid'], 'author-id' => $contacts, 'deleted' => false, 'gravity' => Item::GRAVITY_COMMENT];
|
2021-02-02 00:45:57 -05:00
|
|
|
return Post::exists($condition);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check for a direct comment to the starting post of the given user
|
2021-09-17 23:25:17 -04:00
|
|
|
*
|
2021-02-02 00:45:57 -05:00
|
|
|
* @param array $item
|
|
|
|
* @param array $contacts Array of contact IDs
|
|
|
|
* @return bool The user had created this thread
|
2021-09-17 23:25:17 -04:00
|
|
|
* @throws Exception
|
2021-02-02 00:45:57 -05:00
|
|
|
*/
|
2021-09-17 23:25:17 -04:00
|
|
|
private static function checkDirectCommentedThread(array $item, array $contacts): bool
|
2021-02-02 00:45:57 -05:00
|
|
|
{
|
2022-09-12 17:12:11 -04:00
|
|
|
$condition = ['uri' => $item['thr-parent'], 'uid' => $item['uid'], 'author-id' => $contacts, 'deleted' => false, 'gravity' => Item::GRAVITY_PARENT];
|
2021-02-02 00:45:57 -05:00
|
|
|
return Post::exists($condition);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if the user had commented in this thread
|
2021-09-17 23:25:17 -04:00
|
|
|
*
|
2021-02-02 00:45:57 -05:00
|
|
|
* @param array $item
|
|
|
|
* @param array $contacts Array of contact IDs
|
|
|
|
* @return bool The user had commented in the thread
|
2021-09-17 23:25:17 -04:00
|
|
|
* @throws Exception
|
2021-02-02 00:45:57 -05:00
|
|
|
*/
|
2021-09-17 23:25:17 -04:00
|
|
|
private static function checkCommentedParticipation(array $item, array $contacts): bool
|
2021-02-02 00:45:57 -05:00
|
|
|
{
|
2022-09-12 17:12:11 -04:00
|
|
|
$condition = ['parent' => $item['parent'], 'author-id' => $contacts, 'deleted' => false, 'gravity' => Item::GRAVITY_COMMENT];
|
2021-02-02 00:45:57 -05:00
|
|
|
return Post::exists($condition);
|
|
|
|
}
|
|
|
|
|
2022-06-05 07:41:08 -04:00
|
|
|
/**
|
|
|
|
* Check if the user follows this thread
|
|
|
|
*
|
|
|
|
* @param array $item
|
|
|
|
* @param array $contacts Array of contact IDs
|
|
|
|
* @return bool The user follows the thread
|
|
|
|
* @throws Exception
|
|
|
|
*/
|
|
|
|
private static function checkFollowParticipation(array $item, array $contacts): bool
|
|
|
|
{
|
2022-09-12 17:12:11 -04:00
|
|
|
$condition = ['parent' => $item['parent'], 'author-id' => $contacts, 'deleted' => false, 'gravity' => Item::GRAVITY_ACTIVITY, 'verb' => Activity::FOLLOW];
|
2022-06-05 07:41:08 -04:00
|
|
|
return Post::exists($condition);
|
|
|
|
}
|
|
|
|
|
2021-02-02 00:45:57 -05:00
|
|
|
/**
|
|
|
|
* Check if the user had interacted in this thread (Like, Dislike, ...)
|
2021-09-17 23:25:17 -04:00
|
|
|
*
|
2021-02-02 00:45:57 -05:00
|
|
|
* @param array $item
|
|
|
|
* @param array $contacts Array of contact IDs
|
|
|
|
* @return bool The user had interacted in the thread
|
2021-09-17 23:25:17 -04:00
|
|
|
* @throws Exception
|
2021-02-02 00:45:57 -05:00
|
|
|
*/
|
2021-09-17 23:25:17 -04:00
|
|
|
private static function checkActivityParticipation(array $item, array $contacts): bool
|
2021-02-02 00:45:57 -05:00
|
|
|
{
|
2022-09-12 17:12:11 -04:00
|
|
|
$condition = ['parent' => $item['parent'], 'author-id' => $contacts, 'deleted' => false, 'gravity' => Item::GRAVITY_ACTIVITY];
|
2021-02-02 00:45:57 -05:00
|
|
|
return Post::exists($condition);
|
|
|
|
}
|
2021-02-01 05:31:38 -05:00
|
|
|
}
|