]> git.mxchange.org Git - friendica.git/blobdiff - src/Model/Mail.php
Merge pull request #10969 from MrPetovan/task/remove-private-contacts
[friendica.git] / src / Model / Mail.php
index 292d797b85415018b63535a8826da8f6595683ce..7cd836610b6ce924650f90f868a902707dc2b63a 100644 (file)
@@ -1,19 +1,31 @@
 <?php
-
 /**
- * @file src/Model/Mail.php
+ * @copyright Copyright (C) 2010-2021, the Friendica project
+ *
+ * @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;
 
-use Friendica\Core\L10n;
 use Friendica\Core\Logger;
 use Friendica\Core\System;
 use Friendica\Core\Worker;
-use Friendica\DI;
-use Friendica\Model\Item;
-use Friendica\Model\Photo;
 use Friendica\Database\DBA;
-use Friendica\Network\Probe;
+use Friendica\DI;
 use Friendica\Protocol\Activity;
 use Friendica\Util\DateTimeFormat;
 use Friendica\Worker\Delivery;
@@ -24,15 +36,14 @@ use Friendica\Worker\Delivery;
 class Mail
 {
        /**
-        * Insert received private message
+        * Insert private message
         *
         * @param array $msg
+        * @param bool  $notifiction
         * @return int|boolean Message ID or false on error
         */
-       public static function insert($msg)
+       public static function insert($msg, $notifiction = true)
        {
-               $user = User::getById($msg['uid']);
-
                if (!isset($msg['reply'])) {
                        $msg['reply'] = DBA::exists('mail', ['parent-uri' => $msg['parent-uri']]);
                }
@@ -51,6 +62,10 @@ class Mail
 
                $msg['created'] = (!empty($msg['created']) ? DateTimeFormat::utc($msg['created']) : DateTimeFormat::utcNow());
 
+               $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']);
+
                DBA::lock('mail');
 
                if (DBA::exists('mail', ['uri' => $msg['uri'], 'uid' => $msg['uid']])) {
@@ -59,6 +74,14 @@ class Mail
                        return false;
                }
 
+               if ($msg['reply'] && DBA::isResult($reply = DBA::selectFirst('mail', ['uri', 'uri-id'], ['parent-uri' => $msg['parent-uri'], 'reply' => false]))) {
+                       $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'];
+               }
+
                DBA::insert('mail', $msg);
 
                $msg['id'] = DBA::lastInsertId();
@@ -69,26 +92,22 @@ class Mail
                        DBA::update('conv', ['updated' => DateTimeFormat::utcNow()], ['id' => $msg['convid']]);
                }
 
-               // send notifications.
-               $notif_params = [
-                       'type' => NOTIFY_MAIL,
-                       'notify_flags' => $user['notify-flags'],
-                       'language' => $user['language'],
-                       'to_name' => $user['username'],
-                       'to_email' => $user['email'],
-                       'uid' => $user['uid'],
-                       'item' => $msg,
-                       'parent' => 0,
-                       'source_name' => $msg['from-name'],
-                       'source_link' => $msg['from-url'],
-                       'source_photo' => $msg['from-photo'],
-                       'verb' => Activity::POST,
-                       'otype' => 'mail'
-               ];
-
-               notification($notif_params);
-
-               Logger::info('Mail is processed, notification was sent.', ['id' => $msg['id'], 'uri' => $msg['uri']]);
+               if ($notifiction) {
+                       $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'],
+                       ];
+
+                       DI::notify()->createFromArray($notif_params);
+
+                       Logger::info('Mail is processed, notification was sent.', ['id' => $msg['id'], 'uri' => $msg['uri']]);
+               }
 
                return $msg['id'];
        }
@@ -112,13 +131,16 @@ class Mail
                }
 
                if (!strlen($subject)) {
-                       $subject = L10n::t('[no subject]');
+                       $subject = DI::l10n()->t('[no subject]');
                }
 
                $me = DBA::selectFirst('contact', [], ['uid' => local_user(), 'self' => true]);
-               $contact = DBA::selectFirst('contact', [], ['id' => $recipient, 'uid' => local_user()]);
+               if (!DBA::isResult($me)) {
+                       return -2;
+               }
 
-               if (!(count($me) && (count($contact)))) {
+               $contact = DBA::selectFirst('contact', [], ['id' => $recipient, 'uid' => local_user()]);
+               if (!DBA::isResult($contact)) {
                        return -2;
                }
 
@@ -149,7 +171,7 @@ class Mail
                        $recip_host = substr($recip_host, 0, strpos($recip_host, '/'));
 
                        $recip_handle = (($contact['addr']) ? $contact['addr'] : $contact['nick'] . '@' . $recip_host);
-                       $sender_handle = $a->user['nickname'] . '@' . substr(DI::baseUrl(), strpos(DI::baseUrl(), '://') + 3);
+                       $sender_handle = $a->getLoggedInUserNickname() . '@' . substr(DI::baseUrl(), strpos(DI::baseUrl(), '://') + 3);
 
                        $conv_guid = System::createUUID();
                        $convuri = $recip_handle . ':' . $conv_guid;
@@ -165,7 +187,7 @@ class Mail
                }
 
                if (!$convid) {
-                       Logger::log('send message: conversation not found.');
+                       Logger::notice('send message: conversation not found.');
                        return -4;
                }
 
@@ -173,9 +195,7 @@ class Mail
                        $replyto = $convuri;
                }
 
-               $post_id = null;
-               $success = DBA::insert(
-                       'mail',
+               $post_id = self::insert(
                        [
                                'uid' => local_user(),
                                'guid' => $guid,
@@ -192,13 +212,9 @@ class Mail
                                'uri' => $uri,
                                'parent-uri' => $replyto,
                                'created' => DateTimeFormat::utcNow()
-                       ]
+                       ], false
                );
 
-               if ($success) {
-                       $post_id = DBA::lastInsertId();
-               }
-
                /**
                 *
                 * When a photo was uploaded into the message using the (profile wall) ajax
@@ -247,14 +263,13 @@ class Mail
                }
 
                if (!strlen($subject)) {
-                       $subject = L10n::t('[no subject]');
+                       $subject = DI::l10n()->t('[no subject]');
                }
 
                $guid = System::createUUID();
                $uri = Item::newURI(local_user(), $guid);
 
-               $me = Probe::uri($replyto);
-
+               $me = Contact::getByURL($replyto);
                if (!$me['name']) {
                        return -2;
                }
@@ -263,10 +278,7 @@ class Mail
 
                $recip_handle = $recipient['nickname'] . '@' . substr(DI::baseUrl(), strpos(DI::baseUrl(), '://') + 3);
 
-               $sender_nick = basename($replyto);
-               $sender_host = substr($replyto, strpos($replyto, '://') + 3);
-               $sender_host = substr($sender_host, 0, strpos($sender_host, '/'));
-               $sender_handle = $sender_nick . '@' . $sender_host;
+               $sender_handle = $me['addr'];
 
                $handles = $recip_handle . ';' . $sender_handle;
 
@@ -279,12 +291,11 @@ class Mail
                }
 
                if (!$convid) {
-                       Logger::log('send message: conversation not found.');
+                       Logger::notice('send message: conversation not found.');
                        return -4;
                }
 
-               DBA::insert(
-                       'mail',
+               self::insert(
                        [
                                'uid' => $recipient['uid'],
                                'guid' => $guid,
@@ -299,10 +310,10 @@ class Mail
                                'reply' => 0,
                                'replied' => 0,
                                'uri' => $uri,
-                               'parent-uri' => $replyto,
+                               'parent-uri' => $me['url'],
                                'created' => DateTimeFormat::utcNow(),
                                'unknown' => 1
-                       ]
+                       ], false
                );
 
                return 0;