3 * @copyright Copyright (C) 2010-2022, the Friendica project
5 * @license GNU AGPL version 3 or any later version
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.
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.
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/>.
22 namespace Friendica\Navigation\Notifications\Factory;
24 use Friendica\App\BaseURL;
25 use Friendica\BaseFactory;
26 use Friendica\Capabilities\ICanCreateFromTableRow;
27 use Friendica\Contact\LocalRelationship\Repository\LocalRelationship;
28 use Friendica\Content\Text\Plaintext;
29 use Friendica\Core\L10n;
30 use Friendica\Model\Contact;
31 use Friendica\Model\Post;
32 use Friendica\Model\Verb;
33 use Friendica\Navigation\Notifications\Entity;
34 use Friendica\Network\HTTPException;
35 use Friendica\Protocol\Activity;
36 use Psr\Log\LoggerInterface;
38 class Notification extends BaseFactory implements ICanCreateFromTableRow
44 /** @var LocalRelationship */
45 private $localRelationshipRepo;
47 public function __construct(\Friendica\App\BaseURL $baseUrl, \Friendica\Core\L10n $l10n, \Friendica\Contact\LocalRelationship\Repository\LocalRelationship $localRelationshipRepo, LoggerInterface $logger)
49 parent::__construct($logger);
51 $this->baseUrl = $baseUrl;
53 $this->localRelationshipRepo = $localRelationshipRepo;
56 public function createFromTableRow(array $row): Entity\Notification
58 return new Entity\Notification(
60 Verb::getByID($row['vid']),
63 $row['target-uri-id'],
64 $row['parent-uri-id'],
65 new \DateTime($row['created'], new \DateTimeZone('UTC')),
72 public function createForUser(int $uid, int $vid, int $type, int $actorId, int $targetUriId, int $parentUriId): Entity\Notification
74 return new Entity\Notification(
86 * @param int $contactId Public contact id
88 * @return Entity\Notification
90 public function createForRelationship(int $uid, int $contactId, string $verb): Entity\Notification
92 return new Entity\Notification(
95 Post\UserNotification::TYPE_NONE,
101 * @param Entity\Notification $Notification
103 * @throws HTTPException\InternalServerErrorException
104 * @throws HTTPException\NotFoundException
106 public function getMessageFromNotification(Entity\Notification $Notification): array
110 $causer = $author = Contact::getById($Notification->actorId, ['id', 'name', 'url', 'contact-type', 'pending']);
111 if (empty($causer)) {
112 $this->logger->info('Causer not found', ['contact' => $Notification->actorId]);
116 if ($Notification->type === Post\UserNotification::TYPE_NONE) {
117 $localRelationship = $this->localRelationshipRepo->getForUserContact($Notification->uid, $Notification->actorId);
118 if ($localRelationship->pending) {
119 $msg = $this->l10n->t('%1$s wants to follow you');
121 $msg = $this->l10n->t('%1$s has started following you');
124 $title = $causer['name'];
125 $link = $this->baseUrl . '/contact/' . $causer['id'];
127 if (!$Notification->targetUriId) {
131 if (Post\ThreadUser::getIgnored($Notification->parentUriId, $Notification->uid)) {
132 $this->logger->info('Thread is ignored', ['parent-uri-id' => $Notification->parentUriId, 'type' => $Notification->type]);
136 if (in_array($Notification->type, [Post\UserNotification::TYPE_THREAD_COMMENT, Post\UserNotification::TYPE_COMMENT_PARTICIPATION, Post\UserNotification::TYPE_ACTIVITY_PARTICIPATION, Post\UserNotification::TYPE_EXPLICIT_TAGGED])) {
137 $item = Post::selectFirst([], ['uri-id' => $Notification->parentUriId, 'uid' => [0, $Notification->uid]], ['order' => ['uid' => true]]);
139 $this->logger->info('Parent post not found', ['uri-id' => $Notification->parentUriId]);
142 $link_item = Post::selectFirstPost(['guid'], ['uri-id' => $Notification->targetUriId]);
144 $item = Post::selectFirst([], ['uri-id' => $Notification->targetUriId, 'uid' => [0, $Notification->uid]], ['order' => ['uid' => true]]);
146 $this->logger->info('Post not found', ['uri-id' => $Notification->targetUriId]);
150 if (($Notification->verb == Activity::POST) || ($Notification->type === Post\UserNotification::TYPE_SHARED)) {
151 $item = Post::selectFirst([], ['uri-id' => $item['thr-parent-id'], 'uid' => [0, $Notification->uid]], ['order' => ['uid' => true]]);
153 $this->logger->info('Thread parent post not found', ['uri-id' => $item['thr-parent-id']]);
160 if (in_array($Notification->type, [Post\UserNotification::TYPE_COMMENT_PARTICIPATION, Post\UserNotification::TYPE_ACTIVITY_PARTICIPATION, Post\UserNotification::TYPE_SHARED])) {
161 $author = Contact::getById($item['author-id'], ['id', 'name', 'url', 'contact-type']);
162 if (empty($author)) {
163 $this->logger->info('Author not found', ['author' => $item['author-id']]);
168 $link = $this->baseUrl . '/display/' . urlencode($link_item['guid']);
170 $content = Plaintext::getPost($item, 70);
171 if (!empty($content['text'])) {
172 $title = '"' . trim(str_replace("\n", " ", $content['text'])) . '"';
177 $this->logger->debug('Got verb and type', ['verb' => $Notification->verb, 'type' => $Notification->type, 'causer' => $causer['id'], 'author' => $author['id'], 'item' => $item['id'], 'uid' => $Notification->uid]);
179 switch ($Notification->verb) {
181 switch ($Notification->type) {
182 case Post\UserNotification::TYPE_DIRECT_COMMENT:
183 $msg = $this->l10n->t('%1$s liked your comment on %2$s');
185 case Post\UserNotification::TYPE_DIRECT_THREAD_COMMENT:
186 $msg = $this->l10n->t('%1$s liked your post %2$s');
190 case Activity::DISLIKE:
191 switch ($Notification->type) {
192 case Post\UserNotification::TYPE_DIRECT_COMMENT:
193 $msg = $this->l10n->t('%1$s disliked your comment on %2$s');
195 case Post\UserNotification::TYPE_DIRECT_THREAD_COMMENT:
196 $msg = $this->l10n->t('%1$s disliked your post %2$s');
200 case Activity::ANNOUNCE:
201 switch ($Notification->type) {
202 case Post\UserNotification::TYPE_DIRECT_COMMENT:
203 $msg = $this->l10n->t('%1$s shared your comment %2$s');
205 case Post\UserNotification::TYPE_DIRECT_THREAD_COMMENT:
206 $msg = $this->l10n->t('%1$s shared your post %2$s');
208 case Post\UserNotification::TYPE_SHARED:
209 if (($causer['id'] != $author['id']) && ($title != '')) {
210 $msg = $this->l10n->t('%1$s shared the post %2$s from %3$s');
211 } elseif ($causer['id'] != $author['id']) {
212 $msg = $this->l10n->t('%1$s shared a post from %3$s');
213 } elseif ($title != '') {
214 $msg = $this->l10n->t('%1$s shared the post %2$s');
216 $msg = $this->l10n->t('%1$s shared a post');
221 case Activity::ATTEND:
222 switch ($Notification->type) {
223 case Post\UserNotification::TYPE_DIRECT_THREAD_COMMENT:
224 $msg = $this->l10n->t('%1$s wants to attend your event %2$s');
228 case Activity::ATTENDNO:
229 switch ($Notification->type) {
230 case Post\UserNotification::TYPE_DIRECT_THREAD_COMMENT:
231 $msg = $this->l10n->t('%1$s does not want to attend your event %2$s');
235 case Activity::ATTENDMAYBE:
236 switch ($Notification->type) {
237 case Post\UserNotification::TYPE_DIRECT_THREAD_COMMENT:
238 $msg = $this->l10n->t('%1$s maybe wants to attend your event %2$s');
243 switch ($Notification->type) {
244 case Post\UserNotification::TYPE_EXPLICIT_TAGGED:
245 $msg = $this->l10n->t('%1$s tagged you on %2$s');
248 case Post\UserNotification::TYPE_IMPLICIT_TAGGED:
249 $msg = $this->l10n->t('%1$s replied to you on %2$s');
252 case Post\UserNotification::TYPE_THREAD_COMMENT:
253 $msg = $this->l10n->t('%1$s commented in your thread %2$s');
256 case Post\UserNotification::TYPE_DIRECT_COMMENT:
257 $msg = $this->l10n->t('%1$s commented on your comment %2$s');
260 case Post\UserNotification::TYPE_COMMENT_PARTICIPATION:
261 case Post\UserNotification::TYPE_ACTIVITY_PARTICIPATION:
262 if (($causer['id'] == $author['id']) && ($title != '')) {
263 $msg = $this->l10n->t('%1$s commented in their thread %2$s');
264 } elseif ($causer['id'] == $author['id']) {
265 $msg = $this->l10n->t('%1$s commented in their thread');
266 } elseif ($title != '') {
267 $msg = $this->l10n->t('%1$s commented in the thread %2$s from %3$s');
269 $msg = $this->l10n->t('%1$s commented in the thread from %3$s');
273 case Post\UserNotification::TYPE_DIRECT_THREAD_COMMENT:
274 $msg = $this->l10n->t('%1$s commented on your thread %2$s');
277 case Post\UserNotification::TYPE_SHARED:
278 if (($causer['id'] != $author['id']) && ($title != '')) {
279 $msg = $this->l10n->t('%1$s shared the post %2$s from %3$s');
280 } elseif ($causer['id'] != $author['id']) {
281 $msg = $this->l10n->t('%1$s shared a post from %3$s');
282 } elseif ($title != '') {
283 $msg = $this->l10n->t('%1$s shared the post %2$s');
285 $msg = $this->l10n->t('%1$s shared a post');
294 // Name of the notification's causer
295 $message['causer'] = $causer['name'];
296 // Format for the "ping" mechanism
297 $message['notification'] = sprintf($msg, '{0}', $title, $author['name']);
298 // Plain text for the web push api
299 $message['plain'] = sprintf($msg, $causer['name'], $title, $author['name']);
300 // Rich text for other purposes
301 $message['rich'] = sprintf($msg,
302 '[url=' . $causer['url'] . ']' . $causer['name'] . '[/url]',
303 '[url=' . $link . ']' . $title . '[/url]',
304 '[url=' . $author['url'] . ']' . $author['name'] . '[/url]');
305 $message['link'] = $link;
307 $this->logger->debug('Unhandled notification', ['notification' => $Notification]);