2018-01-15 17:43:25 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2024-01-02 21:57:26 +01:00
|
|
|
* @copyright Copyright (C) 2010-2024, the Friendica project
|
2020-02-09 15:45:36 +01: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/>.
|
|
|
|
*
|
2018-01-15 17:43:25 +01:00
|
|
|
*/
|
2020-02-09 15:45:36 +01:00
|
|
|
|
2018-01-15 17:43:25 +01:00
|
|
|
namespace Friendica\Model;
|
|
|
|
|
2022-02-22 16:44:30 +01:00
|
|
|
use Friendica\Core\ACL;
|
2018-10-29 22:20:46 +01:00
|
|
|
use Friendica\Core\Logger;
|
2018-01-15 17:43:25 +01:00
|
|
|
use Friendica\Core\System;
|
|
|
|
use Friendica\Core\Worker;
|
2018-07-20 14:19:26 +02:00
|
|
|
use Friendica\Database\DBA;
|
2021-01-23 10:53:44 +01:00
|
|
|
use Friendica\DI;
|
2019-10-24 00:25:43 +02:00
|
|
|
use Friendica\Protocol\Activity;
|
2022-12-30 22:20:28 +01:00
|
|
|
use Friendica\Protocol\Delivery;
|
2018-01-27 03:38:34 +01:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
2018-01-15 17:43:25 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class to handle private messages
|
|
|
|
*/
|
|
|
|
class Mail
|
|
|
|
{
|
2019-05-08 07:44:22 +02:00
|
|
|
/**
|
2021-05-22 20:20:11 +02:00
|
|
|
* Insert private message
|
2019-05-08 07:44:22 +02:00
|
|
|
*
|
|
|
|
* @param array $msg
|
2022-02-22 16:44:30 +01:00
|
|
|
* @param bool $notification
|
2019-05-08 07:44:22 +02:00
|
|
|
* @return int|boolean Message ID or false on error
|
2022-02-22 16:44:30 +01:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @throws \ImagickException
|
2019-05-08 07:44:22 +02:00
|
|
|
*/
|
2022-06-18 17:52:34 +02:00
|
|
|
public static function insert(array $msg, bool $notification = true)
|
2019-05-08 07:44:22 +02:00
|
|
|
{
|
2019-05-09 22:52:52 +02:00
|
|
|
if (!isset($msg['reply'])) {
|
|
|
|
$msg['reply'] = DBA::exists('mail', ['parent-uri' => $msg['parent-uri']]);
|
|
|
|
}
|
|
|
|
|
2019-05-08 07:44:22 +02:00
|
|
|
if (empty($msg['convid'])) {
|
|
|
|
$mail = DBA::selectFirst('mail', ['convid'], ["`convid` != 0 AND `parent-uri` = ?", $msg['parent-uri']]);
|
|
|
|
if (DBA::isResult($mail)) {
|
|
|
|
$msg['convid'] = $mail['convid'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (empty($msg['guid'])) {
|
2022-12-08 04:21:23 +01:00
|
|
|
$msg['guid'] = Item::guidFromUri($msg['uri'], parse_url($msg['from-url'], PHP_URL_HOST));
|
2019-05-08 07:44:22 +02:00
|
|
|
}
|
|
|
|
|
2019-06-13 07:43:00 +02:00
|
|
|
$msg['created'] = (!empty($msg['created']) ? DateTimeFormat::utc($msg['created']) : DateTimeFormat::utcNow());
|
2019-06-13 05:22:15 +02:00
|
|
|
|
2021-05-22 20:20:11 +02:00
|
|
|
$msg['author-id'] = Contact::getIdForURL($msg['from-url'], 0, false);
|
|
|
|
$msg['uri-id'] = ItemURI::insert(['uri' => $msg['uri'], 'guid' => $msg['guid']]);
|
|
|
|
$msg['parent-uri-id'] = ItemURI::getIdByURI($msg['parent-uri']);
|
|
|
|
|
2019-05-08 07:44:22 +02:00
|
|
|
DBA::lock('mail');
|
|
|
|
|
|
|
|
if (DBA::exists('mail', ['uri' => $msg['uri'], 'uid' => $msg['uid']])) {
|
|
|
|
DBA::unlock();
|
|
|
|
Logger::info('duplicate message already delivered.');
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-09-26 02:45:53 +02:00
|
|
|
if ($msg['reply'] && DBA::isResult($reply = DBA::selectFirst('mail', ['uri', 'uri-id'], ['parent-uri' => $msg['parent-uri'], 'reply' => false]))) {
|
2021-05-22 15:37:04 +02:00
|
|
|
$msg['thr-parent'] = $reply['uri'];
|
|
|
|
$msg['thr-parent-id'] = $reply['uri-id'];
|
|
|
|
} else {
|
|
|
|
$msg['thr-parent'] = $msg['uri'];
|
|
|
|
$msg['thr-parent-id'] = $msg['uri-id'];
|
|
|
|
}
|
|
|
|
|
2019-05-08 07:44:22 +02:00
|
|
|
DBA::insert('mail', $msg);
|
|
|
|
|
|
|
|
$msg['id'] = DBA::lastInsertId();
|
|
|
|
|
|
|
|
DBA::unlock();
|
|
|
|
|
|
|
|
if (!empty($msg['convid'])) {
|
|
|
|
DBA::update('conv', ['updated' => DateTimeFormat::utcNow()], ['id' => $msg['convid']]);
|
|
|
|
}
|
|
|
|
|
2022-02-22 16:44:30 +01:00
|
|
|
if ($notification) {
|
2021-05-22 20:20:11 +02:00
|
|
|
$user = User::getById($msg['uid']);
|
|
|
|
// send notifications.
|
|
|
|
$notif_params = [
|
|
|
|
'type' => Notification\Type::MAIL,
|
|
|
|
'otype' => Notification\ObjectType::MAIL,
|
|
|
|
'verb' => Activity::POST,
|
|
|
|
'uid' => $user['uid'],
|
|
|
|
'cid' => $msg['contact-id'],
|
|
|
|
'link' => DI::baseUrl() . '/message/' . $msg['id'],
|
|
|
|
];
|
|
|
|
|
2021-10-19 21:45:36 +02:00
|
|
|
DI::notify()->createFromArray($notif_params);
|
2021-05-22 20:20:11 +02:00
|
|
|
|
|
|
|
Logger::info('Mail is processed, notification was sent.', ['id' => $msg['id'], 'uri' => $msg['uri']]);
|
|
|
|
}
|
2019-05-08 07:44:22 +02:00
|
|
|
|
|
|
|
return $msg['id'];
|
|
|
|
}
|
|
|
|
|
2018-01-15 18:14:09 +01:00
|
|
|
/**
|
|
|
|
* Send private message
|
|
|
|
*
|
2023-03-23 02:35:44 +01:00
|
|
|
* @param integer $sender_uid the user id of the sender
|
2018-01-15 18:14:09 +01:00
|
|
|
* @param integer $recipient recipient id, default 0
|
|
|
|
* @param string $body message body, default empty
|
|
|
|
* @param string $subject message subject, default empty
|
|
|
|
* @param string $replyto reply to
|
2019-01-06 22:06:53 +01:00
|
|
|
* @return int
|
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2018-01-15 18:14:09 +01:00
|
|
|
*/
|
2023-03-23 02:35:44 +01:00
|
|
|
public static function send(int $sender_uid, int $recipient = 0, string $body = '', string $subject = '', string $replyto = ''): int
|
2018-01-15 17:43:25 +01:00
|
|
|
{
|
|
|
|
if (!$recipient) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!strlen($subject)) {
|
2020-01-18 20:52:34 +01:00
|
|
|
$subject = DI::l10n()->t('[no subject]');
|
2018-01-15 17:43:25 +01:00
|
|
|
}
|
|
|
|
|
2023-03-22 23:25:13 +01:00
|
|
|
$me = DBA::selectFirst('contact', [], ['uid' => $sender_uid, 'self' => true]);
|
2020-09-19 05:16:26 +02:00
|
|
|
if (!DBA::isResult($me)) {
|
|
|
|
return -2;
|
|
|
|
}
|
2018-01-15 17:43:25 +01:00
|
|
|
|
2023-03-22 23:25:13 +01:00
|
|
|
$contacts = ACL::getValidMessageRecipientsForUser($sender_uid);
|
2022-02-22 16:44:30 +01:00
|
|
|
|
|
|
|
$contactIndex = array_search($recipient, array_column($contacts, 'id'));
|
|
|
|
if ($contactIndex === false) {
|
2018-01-15 17:43:25 +01:00
|
|
|
return -2;
|
|
|
|
}
|
|
|
|
|
2022-02-22 16:44:30 +01:00
|
|
|
$contact = $contacts[$contactIndex];
|
|
|
|
|
2023-03-22 23:25:13 +01:00
|
|
|
Photo::setPermissionFromBody($body, $sender_uid, $me['id'], '<' . $contact['id'] . '>', '', '', '');
|
2019-09-11 06:08:41 +02:00
|
|
|
|
2018-09-27 13:52:15 +02:00
|
|
|
$guid = System::createUUID();
|
2022-07-09 13:32:32 +02:00
|
|
|
$uri = Item::newURI($guid);
|
2018-01-15 17:43:25 +01:00
|
|
|
|
|
|
|
$convid = 0;
|
|
|
|
$reply = false;
|
|
|
|
|
|
|
|
// look for any existing conversation structure
|
|
|
|
|
|
|
|
if (strlen($replyto)) {
|
|
|
|
$reply = true;
|
2018-08-19 14:46:11 +02:00
|
|
|
$condition = ["`uid` = ? AND (`uri` = ? OR `parent-uri` = ?)",
|
2023-03-22 23:25:13 +01:00
|
|
|
$sender_uid, $replyto, $replyto];
|
2018-08-19 14:46:11 +02:00
|
|
|
$mail = DBA::selectFirst('mail', ['convid'], $condition);
|
|
|
|
if (DBA::isResult($mail)) {
|
|
|
|
$convid = $mail['convid'];
|
2018-01-15 17:43:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-14 06:05:00 +01:00
|
|
|
$convuri = '';
|
2018-01-15 17:43:25 +01:00
|
|
|
if (!$convid) {
|
|
|
|
// create a new conversation
|
2018-09-27 13:52:15 +02:00
|
|
|
$conv_guid = System::createUUID();
|
2022-02-22 16:44:30 +01:00
|
|
|
$convuri = $contact['addr'] . ':' . $conv_guid;
|
2018-01-15 17:43:25 +01:00
|
|
|
|
2023-03-22 23:25:13 +01:00
|
|
|
$fields = ['uid' => $sender_uid, 'guid' => $conv_guid, 'creator' => $me['addr'],
|
2018-01-27 03:38:34 +01:00
|
|
|
'created' => DateTimeFormat::utcNow(), 'updated' => DateTimeFormat::utcNow(),
|
2022-02-22 16:44:30 +01:00
|
|
|
'subject' => $subject, 'recips' => $contact['addr'] . ';' . $me['addr']];
|
2018-07-20 14:19:26 +02:00
|
|
|
if (DBA::insert('conv', $fields)) {
|
|
|
|
$convid = DBA::lastInsertId();
|
2018-01-15 17:43:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$convid) {
|
2022-08-30 21:45:30 +02:00
|
|
|
Logger::warning('conversation not found.');
|
2018-01-15 17:43:25 +01:00
|
|
|
return -4;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!strlen($replyto)) {
|
|
|
|
$replyto = $convuri;
|
|
|
|
}
|
|
|
|
|
2021-05-23 07:37:17 +02:00
|
|
|
$post_id = self::insert(
|
2018-01-15 18:14:09 +01:00
|
|
|
[
|
2023-03-22 23:25:13 +01:00
|
|
|
'uid' => $sender_uid,
|
2018-01-15 18:14:09 +01:00
|
|
|
'guid' => $guid,
|
|
|
|
'convid' => $convid,
|
2018-01-15 18:37:44 +01:00
|
|
|
'from-name' => $me['name'],
|
|
|
|
'from-photo' => $me['thumb'],
|
|
|
|
'from-url' => $me['url'],
|
2018-01-15 18:23:18 +01:00
|
|
|
'contact-id' => $recipient,
|
|
|
|
'title' => $subject,
|
|
|
|
'body' => $body,
|
2018-01-15 18:28:07 +01:00
|
|
|
'seen' => 1,
|
2018-01-15 18:23:18 +01:00
|
|
|
'reply' => $reply,
|
2018-01-15 18:28:07 +01:00
|
|
|
'replied' => 0,
|
2018-01-15 18:23:18 +01:00
|
|
|
'uri' => $uri,
|
|
|
|
'parent-uri' => $replyto,
|
2018-01-27 03:38:34 +01:00
|
|
|
'created' => DateTimeFormat::utcNow()
|
2023-03-22 23:18:49 +01:00
|
|
|
],
|
|
|
|
false
|
2018-01-15 17:43:25 +01:00
|
|
|
);
|
2018-01-15 18:14:09 +01:00
|
|
|
|
2018-01-15 17:43:25 +01:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* When a photo was uploaded into the message using the (profile wall) ajax
|
|
|
|
* uploader, The permissions are initially set to disallow anybody but the
|
|
|
|
* owner from seeing it. This is because the permissions may not yet have been
|
|
|
|
* set for the post. If it's private, the photo permissions should be set
|
|
|
|
* appropriately. But we didn't know the final permissions on the post until
|
|
|
|
* now. So now we'll look for links of uploaded messages that are in the
|
|
|
|
* post and set them to the same permissions as the post itself.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
$match = null;
|
|
|
|
if (preg_match_all("/\[img\](.*?)\[\/img\]/", $body, $match)) {
|
|
|
|
$images = $match[1];
|
|
|
|
if (count($images)) {
|
|
|
|
foreach ($images as $image) {
|
2020-01-09 21:41:35 +01:00
|
|
|
$image_rid = Photo::ridFromURI($image);
|
2020-01-11 16:00:02 +01:00
|
|
|
if (!empty($image_rid)) {
|
2023-07-25 22:44:03 +02:00
|
|
|
Photo::update(['allow_cid' => '<' . $recipient . '>'], ['resource-id' => $image_rid, 'album' => 'Wall Photos', 'uid' => $sender_uid]);
|
2018-01-15 17:43:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($post_id) {
|
2022-10-17 07:49:55 +02:00
|
|
|
Worker::add(Worker::PRIORITY_HIGH, "Notifier", Delivery::MAIL, $post_id);
|
2018-01-15 17:43:25 +01:00
|
|
|
return intval($post_id);
|
|
|
|
} else {
|
|
|
|
return -3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|