2018-01-15 11:43:25 -05:00
|
|
|
<?php
|
|
|
|
/**
|
2021-03-29 02:40:20 -04:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 09:45:36 -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/>.
|
|
|
|
*
|
2018-01-15 11:43:25 -05:00
|
|
|
*/
|
2020-02-09 09:45:36 -05:00
|
|
|
|
2018-01-15 11:43:25 -05:00
|
|
|
namespace Friendica\Model;
|
|
|
|
|
2018-10-29 17:20:46 -04:00
|
|
|
use Friendica\Core\Logger;
|
2018-01-15 11:43:25 -05:00
|
|
|
use Friendica\Core\System;
|
|
|
|
use Friendica\Core\Worker;
|
2018-07-20 08:19:26 -04:00
|
|
|
use Friendica\Database\DBA;
|
2021-01-23 04:53:44 -05:00
|
|
|
use Friendica\DI;
|
2019-10-23 18:25:43 -04:00
|
|
|
use Friendica\Protocol\Activity;
|
2018-01-26 21:38:34 -05:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
2019-06-10 10:19:24 -04:00
|
|
|
use Friendica\Worker\Delivery;
|
2018-01-15 11:43:25 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class to handle private messages
|
|
|
|
*/
|
|
|
|
class Mail
|
|
|
|
{
|
2019-05-08 01:44:22 -04:00
|
|
|
/**
|
|
|
|
* Insert received private message
|
|
|
|
*
|
|
|
|
* @param array $msg
|
|
|
|
* @return int|boolean Message ID or false on error
|
|
|
|
*/
|
|
|
|
public static function insert($msg)
|
|
|
|
{
|
|
|
|
$user = User::getById($msg['uid']);
|
|
|
|
|
2019-05-09 16:52:52 -04:00
|
|
|
if (!isset($msg['reply'])) {
|
|
|
|
$msg['reply'] = DBA::exists('mail', ['parent-uri' => $msg['parent-uri']]);
|
|
|
|
}
|
|
|
|
|
2019-05-08 01:44:22 -04: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'])) {
|
|
|
|
$host = parse_url($msg['from-url'], PHP_URL_HOST);
|
|
|
|
$msg['guid'] = Item::guidFromUri($msg['uri'], $host);
|
|
|
|
}
|
|
|
|
|
2019-06-13 01:43:00 -04:00
|
|
|
$msg['created'] = (!empty($msg['created']) ? DateTimeFormat::utc($msg['created']) : DateTimeFormat::utcNow());
|
2019-06-12 23:22:15 -04:00
|
|
|
|
2019-05-08 01:44:22 -04:00
|
|
|
DBA::lock('mail');
|
|
|
|
|
|
|
|
if (DBA::exists('mail', ['uri' => $msg['uri'], 'uid' => $msg['uid']])) {
|
|
|
|
DBA::unlock();
|
|
|
|
Logger::info('duplicate message already delivered.');
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
DBA::insert('mail', $msg);
|
|
|
|
|
|
|
|
$msg['id'] = DBA::lastInsertId();
|
|
|
|
|
|
|
|
DBA::unlock();
|
|
|
|
|
|
|
|
if (!empty($msg['convid'])) {
|
|
|
|
DBA::update('conv', ['updated' => DateTimeFormat::utcNow()], ['id' => $msg['convid']]);
|
|
|
|
}
|
|
|
|
|
|
|
|
// send notifications.
|
|
|
|
$notif_params = [
|
2021-01-23 04:53:44 -05:00
|
|
|
'type' => Notification\Type::MAIL,
|
|
|
|
'otype' => Notification\ObjectType::MAIL,
|
2020-11-25 14:56:39 -05:00
|
|
|
'verb' => Activity::POST,
|
|
|
|
'uid' => $user['uid'],
|
|
|
|
'cid' => $msg['contact-id'],
|
|
|
|
'link' => DI::baseUrl() . '/message/' . $msg['id'],
|
2019-05-08 01:44:22 -04:00
|
|
|
];
|
|
|
|
|
|
|
|
notification($notif_params);
|
|
|
|
|
|
|
|
Logger::info('Mail is processed, notification was sent.', ['id' => $msg['id'], 'uri' => $msg['uri']]);
|
|
|
|
|
|
|
|
return $msg['id'];
|
|
|
|
}
|
|
|
|
|
2018-01-15 12:14:09 -05:00
|
|
|
/**
|
|
|
|
* Send private message
|
|
|
|
*
|
|
|
|
* @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 16:06:53 -05:00
|
|
|
* @return int
|
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2018-01-15 12:14:09 -05:00
|
|
|
*/
|
|
|
|
public static function send($recipient = 0, $body = '', $subject = '', $replyto = '')
|
2018-01-15 11:43:25 -05:00
|
|
|
{
|
2020-01-04 17:42:01 -05:00
|
|
|
$a = DI::app();
|
2018-01-15 11:43:25 -05:00
|
|
|
|
|
|
|
if (!$recipient) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!strlen($subject)) {
|
2020-01-18 14:52:34 -05:00
|
|
|
$subject = DI::l10n()->t('[no subject]');
|
2018-01-15 11:43:25 -05:00
|
|
|
}
|
|
|
|
|
2018-07-20 08:19:26 -04:00
|
|
|
$me = DBA::selectFirst('contact', [], ['uid' => local_user(), 'self' => true]);
|
2020-09-18 23:16:26 -04:00
|
|
|
if (!DBA::isResult($me)) {
|
|
|
|
return -2;
|
|
|
|
}
|
2018-01-15 11:43:25 -05:00
|
|
|
|
2020-09-18 23:16:26 -04:00
|
|
|
$contact = DBA::selectFirst('contact', [], ['id' => $recipient, 'uid' => local_user()]);
|
|
|
|
if (!DBA::isResult($contact)) {
|
2018-01-15 11:43:25 -05:00
|
|
|
return -2;
|
|
|
|
}
|
|
|
|
|
2019-09-11 00:08:41 -04:00
|
|
|
Photo::setPermissionFromBody($body, local_user(), $me['id'], '<' . $contact['id'] . '>', '', '', '');
|
|
|
|
|
2018-09-27 07:52:15 -04:00
|
|
|
$guid = System::createUUID();
|
2019-05-08 01:44:22 -04:00
|
|
|
$uri = Item::newURI(local_user(), $guid);
|
2018-01-15 11:43:25 -05:00
|
|
|
|
|
|
|
$convid = 0;
|
|
|
|
$reply = false;
|
|
|
|
|
|
|
|
// look for any existing conversation structure
|
|
|
|
|
|
|
|
if (strlen($replyto)) {
|
|
|
|
$reply = true;
|
2018-08-19 08:46:11 -04:00
|
|
|
$condition = ["`uid` = ? AND (`uri` = ? OR `parent-uri` = ?)",
|
|
|
|
local_user(), $replyto, $replyto];
|
|
|
|
$mail = DBA::selectFirst('mail', ['convid'], $condition);
|
|
|
|
if (DBA::isResult($mail)) {
|
|
|
|
$convid = $mail['convid'];
|
2018-01-15 11:43:25 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-14 00:05:00 -05:00
|
|
|
$convuri = '';
|
2018-01-15 11:43:25 -05:00
|
|
|
if (!$convid) {
|
|
|
|
// create a new conversation
|
2018-01-15 12:37:44 -05:00
|
|
|
$recip_host = substr($contact['url'], strpos($contact['url'], '://') + 3);
|
2018-01-15 11:43:25 -05:00
|
|
|
$recip_host = substr($recip_host, 0, strpos($recip_host, '/'));
|
|
|
|
|
2018-01-15 12:37:44 -05:00
|
|
|
$recip_handle = (($contact['addr']) ? $contact['addr'] : $contact['nick'] . '@' . $recip_host);
|
2019-12-30 17:00:08 -05:00
|
|
|
$sender_handle = $a->user['nickname'] . '@' . substr(DI::baseUrl(), strpos(DI::baseUrl(), '://') + 3);
|
2018-01-15 11:43:25 -05:00
|
|
|
|
2018-09-27 07:52:15 -04:00
|
|
|
$conv_guid = System::createUUID();
|
2018-01-15 11:43:25 -05:00
|
|
|
$convuri = $recip_handle . ':' . $conv_guid;
|
|
|
|
|
|
|
|
$handles = $recip_handle . ';' . $sender_handle;
|
|
|
|
|
2018-01-15 12:14:09 -05:00
|
|
|
$fields = ['uid' => local_user(), 'guid' => $conv_guid, 'creator' => $sender_handle,
|
2018-01-26 21:38:34 -05:00
|
|
|
'created' => DateTimeFormat::utcNow(), 'updated' => DateTimeFormat::utcNow(),
|
2018-01-15 12:14:09 -05:00
|
|
|
'subject' => $subject, 'recips' => $handles];
|
2018-07-20 08:19:26 -04:00
|
|
|
if (DBA::insert('conv', $fields)) {
|
|
|
|
$convid = DBA::lastInsertId();
|
2018-01-15 11:43:25 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$convid) {
|
2018-10-29 17:20:46 -04:00
|
|
|
Logger::log('send message: conversation not found.');
|
2018-01-15 11:43:25 -05:00
|
|
|
return -4;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!strlen($replyto)) {
|
|
|
|
$replyto = $convuri;
|
|
|
|
}
|
|
|
|
|
|
|
|
$post_id = null;
|
2018-07-20 08:19:26 -04:00
|
|
|
$success = DBA::insert(
|
2018-01-15 12:14:09 -05:00
|
|
|
'mail',
|
|
|
|
[
|
|
|
|
'uid' => local_user(),
|
|
|
|
'guid' => $guid,
|
|
|
|
'convid' => $convid,
|
2018-01-15 12:37:44 -05:00
|
|
|
'from-name' => $me['name'],
|
|
|
|
'from-photo' => $me['thumb'],
|
|
|
|
'from-url' => $me['url'],
|
2018-01-15 12:23:18 -05:00
|
|
|
'contact-id' => $recipient,
|
|
|
|
'title' => $subject,
|
|
|
|
'body' => $body,
|
2018-01-15 12:28:07 -05:00
|
|
|
'seen' => 1,
|
2018-01-15 12:23:18 -05:00
|
|
|
'reply' => $reply,
|
2018-01-15 12:28:07 -05:00
|
|
|
'replied' => 0,
|
2018-01-15 12:23:18 -05:00
|
|
|
'uri' => $uri,
|
|
|
|
'parent-uri' => $replyto,
|
2018-01-26 21:38:34 -05:00
|
|
|
'created' => DateTimeFormat::utcNow()
|
2018-01-15 12:14:09 -05:00
|
|
|
]
|
2018-01-15 11:43:25 -05:00
|
|
|
);
|
2018-01-15 12:14:09 -05:00
|
|
|
|
|
|
|
if ($success) {
|
2018-07-20 08:19:26 -04:00
|
|
|
$post_id = DBA::lastInsertId();
|
2018-01-15 11:43:25 -05: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 15:41:35 -05:00
|
|
|
$image_rid = Photo::ridFromURI($image);
|
2020-01-11 10:00:02 -05:00
|
|
|
if (!empty($image_rid)) {
|
2020-01-09 15:41:35 -05:00
|
|
|
Photo::update(['allow-cid' => '<' . $recipient . '>'], ['resource-id' => $image_rid, 'album' => 'Wall Photos', 'uid' => local_user()]);
|
2018-01-15 11:43:25 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($post_id) {
|
2019-06-10 10:19:24 -04:00
|
|
|
Worker::add(PRIORITY_HIGH, "Notifier", Delivery::MAIL, $post_id);
|
2018-01-15 11:43:25 -05:00
|
|
|
return intval($post_id);
|
|
|
|
} else {
|
|
|
|
return -3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-15 12:14:09 -05:00
|
|
|
/**
|
2019-01-21 16:51:59 -05:00
|
|
|
* @param array $recipient recipient, default empty
|
2018-01-15 12:14:09 -05:00
|
|
|
* @param string $body message body, default empty
|
|
|
|
* @param string $subject message subject, default empty
|
|
|
|
* @param string $replyto reply to, default empty
|
2019-01-06 16:06:53 -05:00
|
|
|
* @return int
|
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @throws \ImagickException
|
2018-01-15 12:14:09 -05:00
|
|
|
*/
|
2019-01-21 16:51:59 -05:00
|
|
|
public static function sendWall(array $recipient = [], $body = '', $subject = '', $replyto = '')
|
2018-01-15 11:43:25 -05:00
|
|
|
{
|
|
|
|
if (!$recipient) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!strlen($subject)) {
|
2020-01-18 14:52:34 -05:00
|
|
|
$subject = DI::l10n()->t('[no subject]');
|
2018-01-15 11:43:25 -05:00
|
|
|
}
|
|
|
|
|
2018-09-27 07:52:15 -04:00
|
|
|
$guid = System::createUUID();
|
2019-05-08 01:44:22 -04:00
|
|
|
$uri = Item::newURI(local_user(), $guid);
|
2018-01-15 11:43:25 -05:00
|
|
|
|
2020-07-16 06:22:14 -04:00
|
|
|
$me = Contact::getByURL($replyto);
|
2018-01-15 11:43:25 -05:00
|
|
|
if (!$me['name']) {
|
|
|
|
return -2;
|
|
|
|
}
|
|
|
|
|
2018-09-27 07:52:15 -04:00
|
|
|
$conv_guid = System::createUUID();
|
2018-01-15 11:43:25 -05:00
|
|
|
|
2019-12-30 17:00:08 -05:00
|
|
|
$recip_handle = $recipient['nickname'] . '@' . substr(DI::baseUrl(), strpos(DI::baseUrl(), '://') + 3);
|
2018-01-15 11:43:25 -05:00
|
|
|
|
2020-06-27 09:34:19 -04:00
|
|
|
$sender_handle = $me['addr'];
|
2018-01-15 11:43:25 -05:00
|
|
|
|
|
|
|
$handles = $recip_handle . ';' . $sender_handle;
|
|
|
|
|
|
|
|
$convid = null;
|
2018-01-15 12:14:09 -05:00
|
|
|
$fields = ['uid' => $recipient['uid'], 'guid' => $conv_guid, 'creator' => $sender_handle,
|
2018-01-26 21:38:34 -05:00
|
|
|
'created' => DateTimeFormat::utcNow(), 'updated' => DateTimeFormat::utcNow(),
|
2018-01-15 12:14:09 -05:00
|
|
|
'subject' => $subject, 'recips' => $handles];
|
2018-07-20 08:19:26 -04:00
|
|
|
if (DBA::insert('conv', $fields)) {
|
|
|
|
$convid = DBA::lastInsertId();
|
2018-01-15 11:43:25 -05:00
|
|
|
}
|
2018-01-24 21:08:45 -05:00
|
|
|
|
2018-01-15 11:43:25 -05:00
|
|
|
if (!$convid) {
|
2018-10-29 17:20:46 -04:00
|
|
|
Logger::log('send message: conversation not found.');
|
2018-01-15 11:43:25 -05:00
|
|
|
return -4;
|
|
|
|
}
|
|
|
|
|
2018-07-20 08:19:26 -04:00
|
|
|
DBA::insert(
|
2018-01-15 12:14:09 -05:00
|
|
|
'mail',
|
|
|
|
[
|
2018-01-15 12:23:18 -05:00
|
|
|
'uid' => $recipient['uid'],
|
|
|
|
'guid' => $guid,
|
|
|
|
'convid' => $convid,
|
|
|
|
'from-name' => $me['name'],
|
|
|
|
'from-photo' => $me['photo'],
|
|
|
|
'from-url' => $me['url'],
|
|
|
|
'contact-id' => 0,
|
|
|
|
'title' => $subject,
|
|
|
|
'body' => $body,
|
2018-01-15 12:28:07 -05:00
|
|
|
'seen' => 0,
|
|
|
|
'reply' => 0,
|
|
|
|
'replied' => 0,
|
2018-01-15 12:23:18 -05:00
|
|
|
'uri' => $uri,
|
2020-06-24 20:57:47 -04:00
|
|
|
'parent-uri' => $me['url'],
|
2018-01-26 21:38:34 -05:00
|
|
|
'created' => DateTimeFormat::utcNow(),
|
2018-01-15 12:28:07 -05:00
|
|
|
'unknown' => 1
|
2018-01-15 12:14:09 -05:00
|
|
|
]
|
2018-01-15 11:43:25 -05:00
|
|
|
);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|