]> git.mxchange.org Git - friendica.git/blob - notifications.php
ff954d4189250cba0cf88ccf33f01ade71ed9f35
[friendica.git] / notifications.php
1 <?php
2 /**
3  * @file mod/notifications.php
4  * @brief The notifications module
5  */
6
7 use Friendica\App;
8 use Friendica\Content\ContactSelector;
9 use Friendica\Content\Nav;
10 use Friendica\Content\Pager;
11 use Friendica\Core\L10n;
12 use Friendica\Core\NotificationsManager;
13 use Friendica\Core\Protocol;
14 use Friendica\Core\Renderer;
15 use Friendica\Core\System;
16 use Friendica\Database\DBA;
17 use Friendica\Module\Login;
18
19 function notifications_post(App $a)
20 {
21         if (!local_user()) {
22                 $a->internalRedirect();
23         }
24
25         $request_id = (($a->argc > 1) ? $a->argv[1] : 0);
26
27         if ($request_id === 'all') {
28                 return;
29         }
30
31         if ($request_id) {
32                 $intro = DBA::selectFirst('intro', ['id', 'contact-id', 'fid'], ['id' => $request_id, 'uid' => local_user()]);
33
34                 if (DBA::isResult($intro)) {
35                         $intro_id = $intro['id'];
36                         $contact_id = $intro['contact-id'];
37                 } else {
38                         notice(L10n::t('Invalid request identifier.') . EOL);
39                         return;
40                 }
41
42                 // If it is a friend suggestion, the contact is not a new friend but an existing friend
43                 // that should not be deleted.
44
45                 $fid = $intro['fid'];
46
47                 if ($_POST['submit'] == L10n::t('Discard')) {
48                         DBA::delete('intro', ['id' => $intro_id]);
49
50                         if (!$fid) {
51                                 // The check for blocked and pending is in case the friendship was already approved
52                                 // and we just want to get rid of the now pointless notification
53                                 $condition = ['id' => $contact_id, 'uid' => local_user(),
54                                         'self' => false, 'blocked' => true, 'pending' => true];
55                                 DBA::delete('contact', $condition);
56                         }
57                         $a->internalRedirect('notifications/intros');
58                 }
59
60                 if ($_POST['submit'] == L10n::t('Ignore')) {
61                         DBA::update('intro', ['ignore' => true], ['id' => $intro_id]);
62                         $a->internalRedirect('notifications/intros');
63                 }
64         }
65 }
66
67 function notifications_content(App $a)
68 {
69         if (!local_user()) {
70                 notice(L10n::t('Permission denied.') . EOL);
71                 return Login::form();
72         }
73
74         $page = defaults($_REQUEST, 'page', 1);
75         $show = defaults($_REQUEST, 'show', 0);
76
77         Nav::setSelected('notifications');
78
79         $json = (($a->argc > 1 && $a->argv[$a->argc - 1] === 'json') ? true : false);
80
81         $nm = new NotificationsManager();
82
83         $o = '';
84         // Get the nav tabs for the notification pages
85         $tabs = $nm->getTabs();
86         $notif_content = [];
87         $notif_nocontent = '';
88
89         // Notification results per page
90         $perpage = 20;
91         $startrec = ($page * $perpage) - $perpage;
92
93         $notif_header = L10n::t('Notifications');
94
95         $all = false;
96
97         // Get introductions
98         if ((($a->argc > 1) && ($a->argv[1] == 'intros')) || (($a->argc == 1))) {
99                 Nav::setSelected('introductions');
100
101                 $all = (($a->argc > 2) && ($a->argv[2] == 'all'));
102
103                 $notifs = $nm->introNotifs($all, $startrec, $perpage);
104
105         // Get the network notifications
106         } elseif (($a->argc > 1) && ($a->argv[1] == 'network')) {
107                 $notif_header = L10n::t('Network Notifications');
108                 $notifs = $nm->networkNotifs($show, $startrec, $perpage);
109
110         // Get the system notifications
111         } elseif (($a->argc > 1) && ($a->argv[1] == 'system')) {
112                 $notif_header = L10n::t('System Notifications');
113                 $notifs = $nm->systemNotifs($show, $startrec, $perpage);
114
115         // Get the personal notifications
116         } elseif (($a->argc > 1) && ($a->argv[1] == 'personal')) {
117                 $notif_header = L10n::t('Personal Notifications');
118                 $notifs = $nm->personalNotifs($show, $startrec, $perpage);
119
120         // Get the home notifications
121         } elseif (($a->argc > 1) && ($a->argv[1] == 'home')) {
122                 $notif_header = L10n::t('Home Notifications');
123                 $notifs = $nm->homeNotifs($show, $startrec, $perpage);
124         }
125
126         // Set the pager
127         $pager = new Pager($a->query_string, $perpage);
128
129         // Add additional informations (needed for json output)
130         $notifs['items_page'] = $pager->getItemsPerPage();
131         $notifs['page'] = $pager->getPage();
132
133         // Json output
134         if (intval($json) === 1) {
135                 System::jsonExit($notifs);
136         }
137
138         $notif_tpl = Renderer::getMarkupTemplate('notifications.tpl');
139
140         $notif_show_lnk = [
141                 'href' => ($show ? 'notifications/' . $notifs['ident'] : 'notifications/' . $notifs['ident'] . '?show=all' ),
142                 'text' => ($show ? L10n::t('Show unread') : L10n::t('Show all')),
143         ];
144
145         // Process the data for template creation
146         if (defaults($notifs, 'ident', '') === 'introductions') {
147                 $sugg = Renderer::getMarkupTemplate('suggestions.tpl');
148                 $tpl = Renderer::getMarkupTemplate('intros.tpl');
149
150                 // The link to switch between ignored and normal connection requests
151                 $notif_show_lnk = [
152                         'href' => (!$all ? 'notifications/intros/all' : 'notifications/intros' ),
153                         'text' => (!$all ? L10n::t('Show Ignored Requests') : L10n::t('Hide Ignored Requests'))
154                 ];
155
156                 // Loop through all introduction notifications.This creates an array with the output html for each
157                 // introduction
158                 foreach ($notifs['notifications'] as $notif) {
159
160                         // There are two kind of introduction. Contacts suggested by other contacts and normal connection requests.
161                         // We have to distinguish between these two because they use different data.
162                         switch ($notif['label']) {
163                                 case 'friend_suggestion':
164                                         $notif_content[] = Renderer::replaceMacros($sugg, [
165                                                 '$type'       => $notif['label'],
166                                                 '$str_notifytype' => L10n::t('Notification type:'),
167                                                 '$notify_type'=> $notif['notify_type'],
168                                                 '$intro_id'   => $notif['intro_id'],
169                                                 '$lbl_madeby' => L10n::t('Suggested by:'),
170                                                 '$madeby'     => $notif['madeby'],
171                                                 '$madeby_url' => $notif['madeby_url'],
172                                                 '$madeby_zrl' => $notif['madeby_zrl'],
173                                                 '$madeby_addr'=> $notif['madeby_addr'],
174                                                 '$contact_id' => $notif['contact_id'],
175                                                 '$photo'      => $notif['photo'],
176                                                 '$fullname'   => $notif['name'],
177                                                 '$url'        => $notif['url'],
178                                                 '$zrl'        => $notif['zrl'],
179                                                 '$lbl_url'    => L10n::t('Profile URL'),
180                                                 '$addr'       => $notif['addr'],
181                                                 '$hidden'     => ['hidden', L10n::t('Hide this contact from others'), ($notif['hidden'] == 1), ''],
182                                                 '$knowyou'    => $notif['knowyou'],
183                                                 '$approve'    => L10n::t('Approve'),
184                                                 '$note'       => $notif['note'],
185                                                 '$request'    => $notif['request'],
186                                                 '$ignore'     => L10n::t('Ignore'),
187                                                 '$discard'    => L10n::t('Discard'),
188                                         ]);
189                                         break;
190
191                                 // Normal connection requests
192                                 default:
193                                         $friend_selected = (($notif['network'] !== Protocol::OSTATUS) ? ' checked="checked" ' : ' disabled ');
194                                         $fan_selected = (($notif['network'] === Protocol::OSTATUS) ? ' checked="checked" disabled ' : '');
195
196                                         $lbl_knowyou = '';
197                                         $knowyou     = '';
198                                         $helptext    = '';
199                                         $helptext2   = '';
200                                         $helptext3   = '';
201
202                                         if ($notif['network'] === Protocol::DFRN) {
203                                                 $lbl_knowyou = L10n::t('Claims to be known to you: ');
204                                                 $knowyou   = (($notif['knowyou']) ? L10n::t('yes') : L10n::t('no'));
205                                                 $helptext  = L10n::t('Shall your connection be bidirectional or not?');
206                                                 $helptext2 = L10n::t('Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed.', $notif['name'], $notif['name']);
207                                                 $helptext3 = L10n::t('Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed.', $notif['name']);
208                                         } elseif ($notif['network'] === Protocol::DIASPORA) {
209                                                 $helptext  = L10n::t('Shall your connection be bidirectional or not?');
210                                                 $helptext2 = L10n::t('Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed.', $notif['name'], $notif['name']);
211                                                 $helptext3 = L10n::t('Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed.', $notif['name']);
212                                         }
213
214                                         $dfrn_tpl = Renderer::getMarkupTemplate('netfriend.tpl');
215                                         $dfrn_text = Renderer::replaceMacros($dfrn_tpl, [
216                                                 '$intro_id'    => $notif['intro_id'],
217                                                 '$friend_selected' => $friend_selected,
218                                                 '$fan_selected'=> $fan_selected,
219                                                 '$approve_as1' => $helptext,
220                                                 '$approve_as2' => $helptext2,
221                                                 '$approve_as3' => $helptext3,
222                                                 '$as_friend'   => L10n::t('Friend'),
223                                                 '$as_fan'      => (($notif['network'] == Protocol::DIASPORA) ? L10n::t('Sharer') : L10n::t('Subscriber'))
224                                         ]);
225
226                                         $contact = DBA::selectFirst('contact', ['network', 'protocol'], ['id' => $notif['contact_id']]);
227
228                                         if (($contact['network'] != Protocol::DFRN) || ($contact['protocol'] == Protocol::ACTIVITYPUB)) {
229                                                 $action = 'follow_confirm';
230                                         } else {
231                                                 $action = 'dfrn_confirm';
232                                         }
233
234                                         $header = $notif['name'];
235
236                                         if ($notif['addr'] != '') {
237                                                 $header .= ' <' . $notif['addr'] . '>';
238                                         }
239
240                                         $header .= ' (' . ContactSelector::networkToName($notif['network'], $notif['url']) . ')';
241
242                                         if ($notif['network'] != Protocol::DIASPORA) {
243                                                 $discard = L10n::t('Discard');
244                                         } else {
245                                                 $discard = '';
246                                         }
247
248                                         $notif_content[] = Renderer::replaceMacros($tpl, [
249                                                 '$type'        => $notif['label'],
250                                                 '$header'      => $header,
251                                                 '$str_notifytype' => L10n::t('Notification type:'),
252                                                 '$notify_type' => $notif['notify_type'],
253                                                 '$dfrn_text'   => $dfrn_text,
254                                                 '$dfrn_id'     => $notif['dfrn_id'],
255                                                 '$uid'         => $notif['uid'],
256                                                 '$intro_id'    => $notif['intro_id'],
257                                                 '$contact_id'  => $notif['contact_id'],
258                                                 '$photo'       => $notif['photo'],
259                                                 '$fullname'    => $notif['name'],
260                                                 '$location'    => $notif['location'],
261                                                 '$lbl_location'=> L10n::t('Location:'),
262                                                 '$about'       => $notif['about'],
263                                                 '$lbl_about'   => L10n::t('About:'),
264                                                 '$keywords'    => $notif['keywords'],
265                                                 '$lbl_keywords'=> L10n::t('Tags:'),
266                                                 '$gender'      => $notif['gender'],
267                                                 '$lbl_gender'  => L10n::t('Gender:'),
268                                                 '$hidden'      => ['hidden', L10n::t('Hide this contact from others'), ($notif['hidden'] == 1), ''],
269                                                 '$url'         => $notif['url'],
270                                                 '$zrl'         => $notif['zrl'],
271                                                 '$lbl_url'     => L10n::t('Profile URL'),
272                                                 '$addr'        => $notif['addr'],
273                                                 '$lbl_knowyou' => $lbl_knowyou,
274                                                 '$lbl_network' => L10n::t('Network:'),
275                                                 '$network'     => ContactSelector::networkToName($notif['network'], $notif['url']),
276                                                 '$knowyou'     => $knowyou,
277                                                 '$approve'     => L10n::t('Approve'),
278                                                 '$note'        => $notif['note'],
279                                                 '$ignore'      => L10n::t('Ignore'),
280                                                 '$discard'     => $discard,
281                                                 '$action'      => $action,
282                                         ]);
283                                         break;
284                         }
285                 }
286
287                 if (count($notifs['notifications']) == 0) {
288                         info(L10n::t('No introductions.') . EOL);
289                 }
290
291                 // Normal notifications (no introductions)
292         } elseif (!empty($notifs['notifications'])) {
293                 // Loop trough ever notification This creates an array with the output html for each
294                 // notification and apply the correct template according to the notificationtype (label).
295                 foreach ($notifs['notifications'] as $notif) {
296                         $notification_templates = [
297                                 'like'        => 'notifications_likes_item.tpl',
298                                 'dislike'     => 'notifications_dislikes_item.tpl',
299                                 'attend'      => 'notifications_attend_item.tpl',
300                                 'attendno'    => 'notifications_attend_item.tpl',
301                                 'attendmaybe' => 'notifications_attend_item.tpl',
302                                 'friend'      => 'notifications_friends_item.tpl',
303                                 'comment'     => 'notifications_comments_item.tpl',
304                                 'post'        => 'notifications_posts_item.tpl',
305                                 'notify'      => 'notify.tpl',
306                         ];
307
308                         $tpl_notif = Renderer::getMarkupTemplate($notification_templates[$notif['label']]);
309
310                         $notif_content[] = Renderer::replaceMacros($tpl_notif, [
311                                 '$item_label' => $notif['label'],
312                                 '$item_link'  => $notif['link'],
313                                 '$item_image' => $notif['image'],
314                                 '$item_url'   => $notif['url'],
315                                 '$item_text'  => $notif['text'],
316                                 '$item_when'  => $notif['when'],
317                                 '$item_ago'   => $notif['ago'],
318                                 '$item_seen'  => $notif['seen'],
319                         ]);
320                 }
321         } else {
322                 $notif_nocontent = L10n::t('No more %s notifications.', $notifs['ident']);
323         }
324
325         $o .= Renderer::replaceMacros($notif_tpl, [
326                 '$notif_header'    => $notif_header,
327                 '$tabs'            => $tabs,
328                 '$notif_content'   => $notif_content,
329                 '$notif_nocontent' => $notif_nocontent,
330                 '$notif_show_lnk'  => $notif_show_lnk,
331                 '$notif_paginate'  => $pager->renderMinimal(count($notif_content))
332         ]);
333
334         return $o;
335 }