3 * @file mod/notifications.php
4 * @brief The notifications module
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;
19 function notifications_post(App $a)
22 $a->internalRedirect();
25 $request_id = (($a->argc > 1) ? $a->argv[1] : 0);
27 if ($request_id === 'all') {
32 $intro = DBA::selectFirst('intro', ['id', 'contact-id', 'fid'], ['id' => $request_id, 'uid' => local_user()]);
34 if (DBA::isResult($intro)) {
35 $intro_id = $intro['id'];
36 $contact_id = $intro['contact-id'];
38 notice(L10n::t('Invalid request identifier.') . EOL);
42 // If it is a friend suggestion, the contact is not a new friend but an existing friend
43 // that should not be deleted.
47 if ($_POST['submit'] == L10n::t('Discard')) {
48 DBA::delete('intro', ['id' => $intro_id]);
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);
57 $a->internalRedirect('notifications/intros');
60 if ($_POST['submit'] == L10n::t('Ignore')) {
61 DBA::update('intro', ['ignore' => true], ['id' => $intro_id]);
62 $a->internalRedirect('notifications/intros');
67 function notifications_content(App $a)
70 notice(L10n::t('Permission denied.') . EOL);
74 $page = defaults($_REQUEST, 'page', 1);
75 $show = defaults($_REQUEST, 'show', 0);
77 Nav::setSelected('notifications');
79 $json = (($a->argc > 1 && $a->argv[$a->argc - 1] === 'json') ? true : false);
81 $nm = new NotificationsManager();
84 // Get the nav tabs for the notification pages
85 $tabs = $nm->getTabs();
87 $notif_nocontent = '';
89 // Notification results per page
91 $startrec = ($page * $perpage) - $perpage;
93 $notif_header = L10n::t('Notifications');
98 if ((($a->argc > 1) && ($a->argv[1] == 'intros')) || (($a->argc == 1))) {
99 Nav::setSelected('introductions');
101 $all = (($a->argc > 2) && ($a->argv[2] == 'all'));
103 $notifs = $nm->introNotifs($all, $startrec, $perpage);
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);
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);
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);
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);
127 $pager = new Pager($a->query_string, $perpage);
129 // Add additional informations (needed for json output)
130 $notifs['items_page'] = $pager->getItemsPerPage();
131 $notifs['page'] = $pager->getPage();
134 if (intval($json) === 1) {
135 System::jsonExit($notifs);
138 $notif_tpl = Renderer::getMarkupTemplate('notifications.tpl');
141 'href' => ($show ? 'notifications/' . $notifs['ident'] : 'notifications/' . $notifs['ident'] . '?show=all' ),
142 'text' => ($show ? L10n::t('Show unread') : L10n::t('Show all')),
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');
150 // The link to switch between ignored and normal connection requests
152 'href' => (!$all ? 'notifications/intros/all' : 'notifications/intros' ),
153 'text' => (!$all ? L10n::t('Show Ignored Requests') : L10n::t('Hide Ignored Requests'))
156 // Loop through all introduction notifications.This creates an array with the output html for each
158 foreach ($notifs['notifications'] as $notif) {
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'),
191 // Normal connection requests
193 $friend_selected = (($notif['network'] !== Protocol::OSTATUS) ? ' checked="checked" ' : ' disabled ');
194 $fan_selected = (($notif['network'] === Protocol::OSTATUS) ? ' checked="checked" disabled ' : '');
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']);
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'))
226 $header = $notif['name'];
228 if ($notif['addr'] != '') {
229 $header .= ' <' . $notif['addr'] . '>';
232 $header .= ' (' . ContactSelector::networkToName($notif['network'], $notif['url']) . ')';
234 if ($notif['network'] != Protocol::DIASPORA) {
235 $discard = L10n::t('Discard');
240 $notif_content[] = Renderer::replaceMacros($tpl, [
241 '$type' => $notif['label'],
242 '$header' => $header,
243 '$str_notifytype' => L10n::t('Notification type:'),
244 '$notify_type' => $notif['notify_type'],
245 '$dfrn_text' => $dfrn_text,
246 '$dfrn_id' => $notif['dfrn_id'],
247 '$uid' => $notif['uid'],
248 '$intro_id' => $notif['intro_id'],
249 '$contact_id' => $notif['contact_id'],
250 '$photo' => $notif['photo'],
251 '$fullname' => $notif['name'],
252 '$location' => $notif['location'],
253 '$lbl_location'=> L10n::t('Location:'),
254 '$about' => $notif['about'],
255 '$lbl_about' => L10n::t('About:'),
256 '$keywords' => $notif['keywords'],
257 '$lbl_keywords'=> L10n::t('Tags:'),
258 '$gender' => $notif['gender'],
259 '$lbl_gender' => L10n::t('Gender:'),
260 '$hidden' => ['hidden', L10n::t('Hide this contact from others'), ($notif['hidden'] == 1), ''],
261 '$url' => $notif['url'],
262 '$zrl' => $notif['zrl'],
263 '$lbl_url' => L10n::t('Profile URL'),
264 '$addr' => $notif['addr'],
265 '$lbl_knowyou' => $lbl_knowyou,
266 '$lbl_network' => L10n::t('Network:'),
267 '$network' => ContactSelector::networkToName($notif['network'], $notif['url']),
268 '$knowyou' => $knowyou,
269 '$approve' => L10n::t('Approve'),
270 '$note' => $notif['note'],
271 '$ignore' => L10n::t('Ignore'),
272 '$discard' => $discard,
278 if (count($notifs['notifications']) == 0) {
279 info(L10n::t('No introductions.') . EOL);
282 // Normal notifications (no introductions)
283 } elseif (!empty($notifs['notifications'])) {
284 // Loop trough ever notification This creates an array with the output html for each
285 // notification and apply the correct template according to the notificationtype (label).
286 foreach ($notifs['notifications'] as $notif) {
287 $notification_templates = [
288 'like' => 'notifications_likes_item.tpl',
289 'dislike' => 'notifications_dislikes_item.tpl',
290 'attend' => 'notifications_attend_item.tpl',
291 'attendno' => 'notifications_attend_item.tpl',
292 'attendmaybe' => 'notifications_attend_item.tpl',
293 'friend' => 'notifications_friends_item.tpl',
294 'comment' => 'notifications_comments_item.tpl',
295 'post' => 'notifications_posts_item.tpl',
296 'notify' => 'notify.tpl',
299 $tpl_notif = Renderer::getMarkupTemplate($notification_templates[$notif['label']]);
301 $notif_content[] = Renderer::replaceMacros($tpl_notif, [
302 '$item_label' => $notif['label'],
303 '$item_link' => $notif['link'],
304 '$item_image' => $notif['image'],
305 '$item_url' => $notif['url'],
306 '$item_text' => $notif['text'],
307 '$item_when' => $notif['when'],
308 '$item_ago' => $notif['ago'],
309 '$item_seen' => $notif['seen'],
313 $notif_nocontent = L10n::t('No more %s notifications.', $notifs['ident']);
316 $o .= Renderer::replaceMacros($notif_tpl, [
317 '$notif_header' => $notif_header,
319 '$notif_content' => $notif_content,
320 '$notif_nocontent' => $notif_nocontent,
321 '$notif_show_lnk' => $notif_show_lnk,
322 '$notif_paginate' => $pager->renderMinimal(count($notif_content))