]> git.mxchange.org Git - friendica.git/blob - src/Model/Notification.php
Fetch the user's post if present
[friendica.git] / src / Model / Notification.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2021, 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\BaseModel;
25 use Friendica\Content\Text\BBCode;
26 use Friendica\Content\Text\Plaintext;
27 use Friendica\Core\Logger;
28 use Friendica\Database\Database;
29 use Friendica\DI;
30 use Friendica\Network\HTTPException\InternalServerErrorException;
31 use Friendica\Protocol\Activity;
32 use Psr\Log\LoggerInterface;
33
34 /**
35  * Model for an entry in the notify table
36  *
37  * @property string  hash
38  * @property integer type
39  * @property string  name   Full name of the contact subject
40  * @property string  url    Profile page URL of the contact subject
41  * @property string  photo  Profile photo URL of the contact subject
42  * @property string  date   YYYY-MM-DD hh:mm:ss local server time
43  * @property string  msg
44  * @property integer uid        Owner User Id
45  * @property string  link   Notification URL
46  * @property integer iid        Item Id
47  * @property integer parent Parent Item Id
48  * @property boolean seen   Whether the notification was read or not.
49  * @property string  verb   Verb URL (@see http://activitystrea.ms)
50  * @property string  otype  Subject type ('item', 'intro' or 'mail')
51  *
52  * @property-read string name_cache Full name of the contact subject
53  * @property-read string msg_cache  Plaintext version of the notification text with a placeholder (`{0}`) for the subject contact's name.
54  */
55 class Notification extends BaseModel
56 {
57         /** @var \Friendica\Repository\Notification */
58         private $repo;
59
60         public function __construct(Database $dba, LoggerInterface $logger, \Friendica\Repository\Notification $repo, array $data = [])
61         {
62                 parent::__construct($dba, $logger, $data);
63
64                 $this->repo = $repo;
65
66                 $this->setNameCache();
67                 $this->setMsgCache();
68         }
69
70         /**
71          * Sets the pre-formatted name (caching)
72          */
73         private function setNameCache()
74         {
75                 try {
76                         $this->name_cache = strip_tags(BBCode::convert($this->source_name));
77                 } catch (InternalServerErrorException $e) {
78                 }
79         }
80
81         /**
82          * Sets the pre-formatted msg (caching)
83          */
84         private function setMsgCache()
85         {
86                 try {
87                         $this->msg_cache = self::formatMessage($this->name_cache, strip_tags(BBCode::convert($this->msg)));
88                 } catch (InternalServerErrorException $e) {
89                 }
90         }
91
92         public function __set($name, $value)
93         {
94                 parent::__set($name, $value);
95
96                 if ($name == 'msg') {
97                         $this->setMsgCache();
98                 }
99
100                 if ($name == 'source_name') {
101                         $this->setNameCache();
102                 }
103         }
104
105         /**
106          * Formats a notification message with the notification author
107          *
108          * Replace the name with {0} but ensure to make that only once. The {0} is used
109          * later and prints the name in bold.
110          *
111          * @param string $name
112          * @param string $message
113          *
114          * @return string Formatted message
115          */
116         public static function formatMessage($name, $message)
117         {
118                 if ($name != '') {
119                         $pos = strpos($message, $name);
120                 } else {
121                         $pos = false;
122                 }
123
124                 if ($pos !== false) {
125                         $message = substr_replace($message, '{0}', $pos, strlen($name));
126                 }
127
128                 return $message;
129         }
130
131         /**
132          * Fetch the notification type for the given notification
133          *
134          * @param array $notification
135          * @return string
136          */
137         public static function getType(array $notification): string
138         {
139                 if (($notification['vid'] == Verb::getID(Activity::FOLLOW)) && ($notification['type'] == Post\UserNotification::NOTIF_NONE)) {
140                         $contact = Contact::getById($notification['actor-id'], ['pending']);
141                         $type = $contact['pending'] ? 'follow_request' : 'follow';
142                 } elseif (($notification['vid'] == Verb::getID(Activity::ANNOUNCE)) &&
143                         in_array($notification['type'], [Post\UserNotification::NOTIF_DIRECT_COMMENT, Post\UserNotification::NOTIF_DIRECT_THREAD_COMMENT])) {
144                         $type = 'reblog';
145                 } elseif (in_array($notification['vid'], [Verb::getID(Activity::LIKE), Verb::getID(Activity::DISLIKE)]) &&
146                         in_array($notification['type'], [Post\UserNotification::NOTIF_DIRECT_COMMENT, Post\UserNotification::NOTIF_DIRECT_THREAD_COMMENT])) {
147                         $type = 'favourite';
148                 } elseif ($notification['type'] == Post\UserNotification::NOTIF_SHARED) {
149                         $type = 'status';
150                 } elseif (in_array($notification['type'], [Post\UserNotification::NOTIF_EXPLICIT_TAGGED,
151                         Post\UserNotification::NOTIF_IMPLICIT_TAGGED, Post\UserNotification::NOTIF_DIRECT_COMMENT,
152                         Post\UserNotification::NOTIF_DIRECT_THREAD_COMMENT, Post\UserNotification::NOTIF_THREAD_COMMENT])) {
153                         $type = 'mention';
154                 } else {
155                         return '';
156                 }
157
158                 return $type;
159         }
160
161         /**
162          * Create a notification message for the given notification
163          *
164          * @param array $notification
165          * @return array with the elements "causer", "notification", "plain" and "rich"
166          */
167         public static function getMessage(array $notification)
168         {
169                 $message = [];
170
171                 if ($notification['type'] == Post\UserNotification::NOTIF_NONE) {
172                         return $message;
173                 }
174
175                 if (empty($notification['target-uri-id'])) {
176                         return $message;
177                 }
178
179                 $user = User::getById($notification['uid']);
180                 if (empty($user)) {
181                         Logger::info('User not found', ['application' => $notification['uid']]);
182                         return $message;
183                 }
184
185                 $causer = $contact = Contact::getById($notification['actor-id'], ['id', 'name', 'url']);
186                 if (empty($contact)) {
187                         Logger::info('Contact not found', ['contact' => $notification['actor-id']]);
188                         return $message;
189                 }
190
191                 $like     = Verb::getID(Activity::LIKE);
192                 $dislike  = Verb::getID(Activity::DISLIKE);
193                 $announce = Verb::getID(Activity::ANNOUNCE);
194                 $post     = Verb::getID(Activity::POST);
195
196                 if (in_array($notification['type'], [Post\UserNotification::NOTIF_THREAD_COMMENT, Post\UserNotification::NOTIF_COMMENT_PARTICIPATION, Post\UserNotification::NOTIF_EXPLICIT_TAGGED])) {
197                         $item = Post::selectFirst([], ['uri-id' => $notification['parent-uri-id'], 'uid' => [0, $notification['uid']]], ['order' => ['uid' => true]]);
198                         if (empty($item)) {
199                                 Logger::info('Parent post not found', ['uri-id' => $notification['parent-uri-id']]);
200                                 return $message;
201                         }
202                 } else {
203                         $item = Post::selectFirst([], ['uri-id' => $notification['target-uri-id'], 'uid' => [0, $notification['uid']]], ['order' => ['uid' => true]]);
204                         if (empty($item)) {
205                                 Logger::info('Post not found', ['uri-id' => $notification['target-uri-id']]);
206                                 return $message;
207                         }
208
209                         if ($notification['vid'] == $post) {
210                                 $item = Post::selectFirst([], ['uri-id' => $item['thr-parent-id'], 'uid' => [0, $notification['uid']]], ['order' => ['uid' => true]]);
211                                 if (empty($item)) {
212                                         Logger::info('Thread parent post not found', ['uri-id' => $item['thr-parent-id']]);
213                                         return $message;
214                                 }
215                         }
216                 }
217
218                 if (($notification['type'] == Post\UserNotification::NOTIF_SHARED) && !empty($item['causer-id'])) {
219                         $causer = Contact::getById($item['causer-id'], ['id', 'name', 'url']);
220                         if (empty($contact)) {
221                                 Logger::info('Causer not found', ['causer' => $item['causer-id']]);
222                                 return $message;
223                         }
224                 }
225
226                 $link = DI::baseUrl() . '/display/' . urlencode($item['guid']);
227
228                 $content = Plaintext::getPost($item, 70);
229                 if (!empty($content['text'])) {
230                         $title = '"' . trim(str_replace("\n", " ", $content['text'])) . '"';
231                 } else {
232                         $title = '';
233                 }
234
235                 $l10n = DI::l10n()->withLang($user['language']);
236
237                 switch ($notification['vid']) {
238                         case $like:
239                                 switch ($notification['type']) {
240                                         case Post\UserNotification::NOTIF_DIRECT_COMMENT:
241                                                 $msg = $l10n->t('%1$s liked your comment %2$s');
242                                                 break;
243                                         case Post\UserNotification::NOTIF_DIRECT_THREAD_COMMENT:
244                                                 $msg = $l10n->t('%1$s liked your post %2$s');
245                                                 break;
246                                         }
247                                 break;
248                         case $dislike:
249                                 switch ($notification['type']) {
250                                         case Post\UserNotification::NOTIF_DIRECT_COMMENT:
251                                                 $msg = $l10n->t('%1$s disliked your comment %2$s');
252                                                 break;
253                                         case Post\UserNotification::NOTIF_DIRECT_THREAD_COMMENT:
254                                                 $msg = $l10n->t('%1$s disliked your post %2$s');
255                                                 break;
256                                 }
257                                 break;
258                         case $announce:
259                                 switch ($notification['type']) {
260                                         case Post\UserNotification::NOTIF_DIRECT_COMMENT:
261                                                 $msg = $l10n->t('%1$s shared your comment %2$s');
262                                                 break;
263                                         case Post\UserNotification::NOTIF_DIRECT_THREAD_COMMENT:
264                                                 $msg = $l10n->t('%1$s shared your post %2$s');
265                                                 break;
266                                         }
267                                 break;
268                         case $post:
269                                 switch ($notification['type']) {
270                                         case Post\UserNotification::NOTIF_EXPLICIT_TAGGED:
271                                                 $msg = $l10n->t('%1$s tagged you on %2$s');
272                                                 break;
273
274                                         case Post\UserNotification::NOTIF_IMPLICIT_TAGGED:
275                                                 $msg = $l10n->t('%1$s replied to you on %2$s');
276                                                 break;
277
278                                         case Post\UserNotification::NOTIF_THREAD_COMMENT:
279                                                 $msg = $l10n->t('%1$s commented in your thread %2$s');
280                                                 break;
281
282                                         case Post\UserNotification::NOTIF_DIRECT_COMMENT:
283                                                 $msg = $l10n->t('%1$s commented on your comment %2$s');
284                                                 break;
285
286                                         case Post\UserNotification::NOTIF_COMMENT_PARTICIPATION:
287                                                 $msg = $l10n->t('%1$s commented in the thread %2$s');
288                                                 break;
289
290                                         case Post\UserNotification::NOTIF_ACTIVITY_PARTICIPATION:
291                                                 // Unhandled
292                                                 break;
293
294                                         case Post\UserNotification::NOTIF_DIRECT_THREAD_COMMENT:
295                                                 $msg = $l10n->t('%1$s commented on your thread %2$s');
296                                                 break;
297
298                                         case Post\UserNotification::NOTIF_SHARED:
299                                                 if (($causer['id'] != $contact['id']) && ($title != '')) {
300                                                         $msg = $l10n->t('%1$s shared the post %2$s from %3$s');
301                                                 } elseif ($causer['id'] != $contact['id']) {
302                                                         $msg = $l10n->t('%1$s shared a post from %3$s');
303                                                 } elseif ($title != '') {
304                                                         $msg = $l10n->t('%1$s shared the post %2$s');
305                                                 } else {
306                                                         $msg = $l10n->t('%1$s shared a post');
307                                                 }
308                                                 break;
309                                 }
310                                 break;
311                 }
312
313                 if (!empty($msg)) {
314                         // Name of the notification's causer
315                         $message['causer'] = $causer['name'];
316                         // Format for the "ping" mechanism
317                         $message['notification'] = sprintf($msg, '{0}', $title, $contact['name']);
318                         // Plain text for the web push api
319                         $message['plain']        = sprintf($msg, $causer['name'], $title, $contact['name']);
320                         // Rich text for other purposes 
321                         $message['rich']         = sprintf($msg,
322                                 '[url=' . $causer['url'] . ']' . $causer['name'] . '[/url]',
323                                 '[url=' . $link . ']' . $title . '[/url]',
324                                 '[url=' . $contact['url'] . ']' . $contact['name'] . '[/url]');
325                 }
326
327                 return $message;
328         }
329 }