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