]> git.mxchange.org Git - friendica.git/blob - src/Model/Mail.php
Renamed variable, no need for "orig_" prefix
[friendica.git] / src / Model / Mail.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2022, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Model;
23
24 use Friendica\Core\ACL;
25 use Friendica\Core\Logger;
26 use Friendica\Core\System;
27 use Friendica\Core\Worker;
28 use Friendica\Database\DBA;
29 use Friendica\DI;
30 use Friendica\Protocol\Activity;
31 use Friendica\Util\DateTimeFormat;
32 use Friendica\Worker\Delivery;
33
34 /**
35  * Class to handle private messages
36  */
37 class Mail
38 {
39         /**
40          * Insert private message
41          *
42          * @param array $msg
43          * @param bool  $notification
44          * @return int|boolean Message ID or false on error
45          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
46          * @throws \ImagickException
47          */
48         public static function insert($msg, $notification = true)
49         {
50                 if (!isset($msg['reply'])) {
51                         $msg['reply'] = DBA::exists('mail', ['parent-uri' => $msg['parent-uri']]);
52                 }
53
54                 if (empty($msg['convid'])) {
55                         $mail = DBA::selectFirst('mail', ['convid'], ["`convid` != 0 AND `parent-uri` = ?", $msg['parent-uri']]);
56                         if (DBA::isResult($mail)) {
57                                 $msg['convid'] = $mail['convid'];
58                         }
59                 }
60
61                 if (empty($msg['guid'])) {
62                         $host = parse_url($msg['from-url'], PHP_URL_HOST);
63                         $msg['guid'] = Item::guidFromUri($msg['uri'], $host);
64                 }
65
66                 $msg['created'] = (!empty($msg['created']) ? DateTimeFormat::utc($msg['created']) : DateTimeFormat::utcNow());
67
68                 $msg['author-id']     = Contact::getIdForURL($msg['from-url'], 0, false);
69                 $msg['uri-id']        = ItemURI::insert(['uri' => $msg['uri'], 'guid' => $msg['guid']]);
70                 $msg['parent-uri-id'] = ItemURI::getIdByURI($msg['parent-uri']);
71
72                 DBA::lock('mail');
73
74                 if (DBA::exists('mail', ['uri' => $msg['uri'], 'uid' => $msg['uid']])) {
75                         DBA::unlock();
76                         Logger::info('duplicate message already delivered.');
77                         return false;
78                 }
79
80                 if ($msg['reply'] && DBA::isResult($reply = DBA::selectFirst('mail', ['uri', 'uri-id'], ['parent-uri' => $msg['parent-uri'], 'reply' => false]))) {
81                         $msg['thr-parent']    = $reply['uri'];
82                         $msg['thr-parent-id'] = $reply['uri-id'];
83                 } else {
84                         $msg['thr-parent']    = $msg['uri'];
85                         $msg['thr-parent-id'] = $msg['uri-id'];
86                 }
87
88                 DBA::insert('mail', $msg);
89
90                 $msg['id'] = DBA::lastInsertId();
91
92                 DBA::unlock();
93
94                 if (!empty($msg['convid'])) {
95                         DBA::update('conv', ['updated' => DateTimeFormat::utcNow()], ['id' => $msg['convid']]);
96                 }
97
98                 if ($notification) {
99                         $user = User::getById($msg['uid']);
100                         // send notifications.
101                         $notif_params = [
102                                 'type'  => Notification\Type::MAIL,
103                                 'otype' => Notification\ObjectType::MAIL,
104                                 'verb'  => Activity::POST,
105                                 'uid'   => $user['uid'],
106                                 'cid'   => $msg['contact-id'],
107                                 'link'  => DI::baseUrl() . '/message/' . $msg['id'],
108                         ];
109
110                         DI::notify()->createFromArray($notif_params);
111
112                         Logger::info('Mail is processed, notification was sent.', ['id' => $msg['id'], 'uri' => $msg['uri']]);
113                 }
114
115                 return $msg['id'];
116         }
117
118         /**
119          * Send private message
120          *
121          * @param integer $recipient recipient id, default 0
122          * @param string  $body      message body, default empty
123          * @param string  $subject   message subject, default empty
124          * @param string  $replyto   reply to
125          * @return int
126          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
127          */
128         public static function send($recipient = 0, $body = '', $subject = '', $replyto = '')
129         {
130                 $a = DI::app();
131
132                 if (!$recipient) {
133                         return -1;
134                 }
135
136                 if (!strlen($subject)) {
137                         $subject = DI::l10n()->t('[no subject]');
138                 }
139
140                 $me = DBA::selectFirst('contact', [], ['uid' => local_user(), 'self' => true]);
141                 if (!DBA::isResult($me)) {
142                         return -2;
143                 }
144
145                 $contacts = ACL::getValidMessageRecipientsForUser(local_user());
146
147                 $contactIndex = array_search($recipient, array_column($contacts, 'id'));
148                 if ($contactIndex === false) {
149                         return -2;
150                 }
151
152                 $contact = $contacts[$contactIndex];
153
154                 Photo::setPermissionFromBody($body, local_user(), $me['id'],  '<' . $contact['id'] . '>', '', '', '');
155
156                 $guid = System::createUUID();
157                 $uri = Item::newURI(local_user(), $guid);
158
159                 $convid = 0;
160                 $reply = false;
161
162                 // look for any existing conversation structure
163
164                 if (strlen($replyto)) {
165                         $reply = true;
166                         $condition = ["`uid` = ? AND (`uri` = ? OR `parent-uri` = ?)",
167                                 local_user(), $replyto, $replyto];
168                         $mail = DBA::selectFirst('mail', ['convid'], $condition);
169                         if (DBA::isResult($mail)) {
170                                 $convid = $mail['convid'];
171                         }
172                 }
173
174                 $convuri = '';
175                 if (!$convid) {
176                         // create a new conversation
177                         $conv_guid = System::createUUID();
178                         $convuri = $contact['addr'] . ':' . $conv_guid;
179
180                         $fields = ['uid' => local_user(), 'guid' => $conv_guid, 'creator' => $me['addr'],
181                                 'created' => DateTimeFormat::utcNow(), 'updated' => DateTimeFormat::utcNow(),
182                                 'subject' => $subject, 'recips' => $contact['addr'] . ';' . $me['addr']];
183                         if (DBA::insert('conv', $fields)) {
184                                 $convid = DBA::lastInsertId();
185                         }
186                 }
187
188                 if (!$convid) {
189                         Logger::notice('send message: conversation not found.');
190                         return -4;
191                 }
192
193                 if (!strlen($replyto)) {
194                         $replyto = $convuri;
195                 }
196
197                 $post_id = self::insert(
198                         [
199                                 'uid' => local_user(),
200                                 'guid' => $guid,
201                                 'convid' => $convid,
202                                 'from-name' => $me['name'],
203                                 'from-photo' => $me['thumb'],
204                                 'from-url' => $me['url'],
205                                 'contact-id' => $recipient,
206                                 'title' => $subject,
207                                 'body' => $body,
208                                 'seen' => 1,
209                                 'reply' => $reply,
210                                 'replied' => 0,
211                                 'uri' => $uri,
212                                 'parent-uri' => $replyto,
213                                 'created' => DateTimeFormat::utcNow()
214                         ], false
215                 );
216
217                 /**
218                  *
219                  * When a photo was uploaded into the message using the (profile wall) ajax
220                  * uploader, The permissions are initially set to disallow anybody but the
221                  * owner from seeing it. This is because the permissions may not yet have been
222                  * set for the post. If it's private, the photo permissions should be set
223                  * appropriately. But we didn't know the final permissions on the post until
224                  * now. So now we'll look for links of uploaded messages that are in the
225                  * post and set them to the same permissions as the post itself.
226                  *
227                  */
228                 $match = null;
229                 if (preg_match_all("/\[img\](.*?)\[\/img\]/", $body, $match)) {
230                         $images = $match[1];
231                         if (count($images)) {
232                                 foreach ($images as $image) {
233                                         $image_rid = Photo::ridFromURI($image);
234                                         if (!empty($image_rid)) {
235                                                 Photo::update(['allow-cid' => '<' . $recipient . '>'], ['resource-id' => $image_rid, 'album' => 'Wall Photos', 'uid' => local_user()]);
236                                         }
237                                 }
238                         }
239                 }
240
241                 if ($post_id) {
242                         Worker::add(PRIORITY_HIGH, "Notifier", Delivery::MAIL, $post_id);
243                         return intval($post_id);
244                 } else {
245                         return -3;
246                 }
247         }
248
249         /**
250          * @param array  $recipient recipient, default empty
251          * @param string $body      message body, default empty
252          * @param string $subject   message subject, default empty
253          * @param string $replyto   reply to, default empty
254          * @return int
255          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
256          * @throws \ImagickException
257          */
258         public static function sendWall(array $recipient = [], $body = '', $subject = '', $replyto = '')
259         {
260                 if (!$recipient) {
261                         return -1;
262                 }
263
264                 if (!strlen($subject)) {
265                         $subject = DI::l10n()->t('[no subject]');
266                 }
267
268                 $guid = System::createUUID();
269                 $uri = Item::newURI(local_user(), $guid);
270
271                 $me = Contact::getByURL($replyto);
272                 if (!$me['name']) {
273                         return -2;
274                 }
275
276                 $conv_guid = System::createUUID();
277
278                 $recip_handle = $recipient['nickname'] . '@' . substr(DI::baseUrl(), strpos(DI::baseUrl(), '://') + 3);
279
280                 $sender_handle = $me['addr'];
281
282                 $handles = $recip_handle . ';' . $sender_handle;
283
284                 $convid = null;
285                 $fields = ['uid' => $recipient['uid'], 'guid' => $conv_guid, 'creator' => $sender_handle,
286                         'created' => DateTimeFormat::utcNow(), 'updated' => DateTimeFormat::utcNow(),
287                         'subject' => $subject, 'recips' => $handles];
288                 if (DBA::insert('conv', $fields)) {
289                         $convid = DBA::lastInsertId();
290                 }
291
292                 if (!$convid) {
293                         Logger::notice('send message: conversation not found.');
294                         return -4;
295                 }
296
297                 self::insert(
298                         [
299                                 'uid' => $recipient['uid'],
300                                 'guid' => $guid,
301                                 'convid' => $convid,
302                                 'from-name' => $me['name'],
303                                 'from-photo' => $me['photo'],
304                                 'from-url' => $me['url'],
305                                 'contact-id' => 0,
306                                 'title' => $subject,
307                                 'body' => $body,
308                                 'seen' => 0,
309                                 'reply' => 0,
310                                 'replied' => 0,
311                                 'uri' => $uri,
312                                 'parent-uri' => $me['url'],
313                                 'created' => DateTimeFormat::utcNow(),
314                                 'unknown' => 1
315                         ], false
316                 );
317
318                 return 0;
319         }
320 }