2010-07-02 01:48:07 +02:00
< ? php
2016-08-03 12:44:04 +02:00
/**
* @ file mod / notifications . php
* @ brief The notifications module
*/
2017-04-30 06:07:00 +02:00
use Friendica\App ;
2018-01-10 04:42:04 +01:00
use Friendica\Content\ContactSelector ;
2018-01-15 20:51:56 +01:00
use Friendica\Content\Nav ;
2018-01-21 19:33:59 +01:00
use Friendica\Core\L10n ;
2017-11-08 01:37:53 +01:00
use Friendica\Core\NotificationsManager ;
2017-08-26 09:32:10 +02:00
use Friendica\Core\System ;
2017-11-08 04:57:46 +01:00
use Friendica\Database\DBM ;
2010-07-02 01:48:07 +02:00
2017-01-09 13:14:25 +01:00
function notifications_post ( App $a ) {
2010-07-02 01:48:07 +02:00
2016-12-20 11:56:34 +01:00
if ( ! local_user ()) {
2017-08-26 09:32:10 +02:00
goaway ( System :: baseUrl ());
2010-07-02 01:48:07 +02:00
}
2013-12-02 20:30:24 +01:00
2010-08-16 06:49:29 +02:00
$request_id = (( $a -> argc > 1 ) ? $a -> argv [ 1 ] : 0 );
2013-12-02 20:30:24 +01:00
2017-03-21 17:02:59 +01:00
if ( $request_id === " all " )
2010-07-02 01:48:07 +02:00
return ;
2017-03-21 17:02:59 +01:00
if ( $request_id ) {
2010-07-02 01:48:07 +02:00
2011-06-27 06:55:24 +02:00
$r = q ( " SELECT * FROM `intro` WHERE `id` = %d AND `uid` = %d LIMIT 1 " ,
intval ( $request_id ),
intval ( local_user ())
2010-07-02 01:48:07 +02:00
);
2013-12-02 20:30:24 +01:00
2017-11-08 04:57:46 +01:00
if ( DBM :: is_result ( $r )) {
2010-07-02 01:48:07 +02:00
$intro_id = $r [ 0 ][ 'id' ];
2010-11-07 01:01:57 +01:00
$contact_id = $r [ 0 ][ 'contact-id' ];
2010-07-02 01:48:07 +02:00
}
else {
2018-01-21 19:33:59 +01:00
notice ( L10n :: t ( 'Invalid request identifier.' ) . EOL );
2010-07-02 01:48:07 +02:00
return ;
}
2011-06-27 06:55:24 +02:00
// If it is a friend suggestion, the contact is not a new friend but an existing friend
// that should not be deleted.
$fid = $r [ 0 ][ 'fid' ];
2018-01-22 15:16:25 +01:00
if ( $_POST [ 'submit' ] == L10n :: t ( 'Discard' )) {
2014-03-11 23:52:32 +01:00
$r = q ( " DELETE FROM `intro` WHERE `id` = %d " ,
2010-09-09 05:14:17 +02:00
intval ( $intro_id )
2013-12-02 20:30:24 +01:00
);
2017-03-21 17:02:59 +01:00
if ( ! $fid ) {
2012-03-31 00:10:50 +02:00
// The check for blocked and pending is in case the friendship was already approved
// and we just want to get rid of the now pointless notification
2014-03-11 23:52:32 +01:00
$r = q ( " DELETE FROM `contact` WHERE `id` = %d AND `uid` = %d AND `self` = 0 AND `blocked` = 1 AND `pending` = 1 " ,
2011-06-27 06:55:24 +02:00
intval ( $contact_id ),
intval ( local_user ())
);
}
2016-02-17 23:47:32 +01:00
goaway ( 'notifications/intros' );
2010-07-02 01:48:07 +02:00
}
2018-01-22 15:16:25 +01:00
if ( $_POST [ 'submit' ] == L10n :: t ( 'Ignore' )) {
2013-12-02 20:30:24 +01:00
$r = q ( " UPDATE `intro` SET `ignore` = 1 WHERE `id` = %d " ,
2010-07-02 01:48:07 +02:00
intval ( $intro_id ));
2016-02-17 23:47:32 +01:00
goaway ( 'notifications/intros' );
2010-07-02 01:48:07 +02:00
}
}
}
2017-01-09 13:14:25 +01:00
function notifications_content ( App $a ) {
2010-07-02 01:48:07 +02:00
2016-12-20 11:56:34 +01:00
if ( ! local_user ()) {
2018-01-21 19:33:59 +01:00
notice ( L10n :: t ( 'Permission denied.' ) . EOL );
2011-08-02 06:02:25 +02:00
return ;
2010-07-02 01:48:07 +02:00
}
2016-08-01 23:04:41 +02:00
$page = ( x ( $_REQUEST , 'page' ) ? $_REQUEST [ 'page' ] : 1 );
2016-08-01 18:18:11 +02:00
$show = ( x ( $_REQUEST , 'show' ) ? $_REQUEST [ 'show' ] : 0 );
2016-08-01 23:04:41 +02:00
2018-01-15 20:51:56 +01:00
Nav :: setSelected ( 'notifications' );
2011-10-12 06:30:23 +02:00
2012-10-15 02:16:25 +02:00
$json = (( $a -> argc > 1 && $a -> argv [ $a -> argc - 1 ] === 'json' ) ? true : false );
2016-07-30 10:51:21 +02:00
$nm = new NotificationsManager ();
2012-10-15 02:16:25 +02:00
2010-08-16 06:49:29 +02:00
$o = '' ;
2016-08-03 12:44:04 +02:00
// Get the nav tabs for the notification pages
2016-07-30 10:51:21 +02:00
$tabs = $nm -> getTabs ();
2018-01-15 14:05:12 +01:00
$notif_content = [];
2011-10-12 06:30:23 +02:00
2016-08-03 12:44:04 +02:00
// Notification results per page
2016-08-01 23:04:41 +02:00
$perpage = 20 ;
$startrec = ( $page * $perpage ) - $perpage ;
2013-12-02 20:30:24 +01:00
2016-08-03 12:44:04 +02:00
// Get introductions
2018-01-15 20:51:56 +01:00
if ((( $a -> argc > 1 ) && ( $a -> argv [ 1 ] == 'intros' )) || (( $a -> argc == 1 ))) {
Nav :: setSelected ( 'introductions' );
2018-01-22 15:16:25 +01:00
$notif_header = L10n :: t ( 'Notifications' );
2013-12-02 20:30:24 +01:00
2016-08-06 18:59:39 +02:00
$all = (( $a -> argc > 2 ) && ( $a -> argv [ 2 ] == 'all' ));
2013-12-02 20:30:24 +01:00
2016-08-03 12:44:04 +02:00
$notifs = $nm -> introNotifs ( $all , $startrec , $perpage );
2011-10-07 08:25:08 +02:00
2016-08-03 12:44:04 +02:00
// Get the network notifications
2017-03-21 17:02:59 +01:00
} else if (( $a -> argc > 1 ) && ( $a -> argv [ 1 ] == 'network' )) {
2011-10-07 08:25:08 +02:00
2018-01-22 15:16:25 +01:00
$notif_header = L10n :: t ( 'Network Notifications' );
2016-08-03 12:44:04 +02:00
$notifs = $nm -> networkNotifs ( $show , $startrec , $perpage );
2010-07-02 01:48:07 +02:00
2016-08-03 12:44:04 +02:00
// Get the system notifications
2017-03-21 17:02:59 +01:00
} else if (( $a -> argc > 1 ) && ( $a -> argv [ 1 ] == 'system' )) {
2011-10-07 08:25:08 +02:00
2018-01-22 15:16:25 +01:00
$notif_header = L10n :: t ( 'System Notifications' );
2016-08-03 12:44:04 +02:00
$notifs = $nm -> systemNotifs ( $show , $startrec , $perpage );
2011-10-07 08:25:08 +02:00
2016-08-03 12:44:04 +02:00
// Get the personal notifications
2017-03-21 17:02:59 +01:00
} else if (( $a -> argc > 1 ) && ( $a -> argv [ 1 ] == 'personal' )) {
2011-10-07 08:25:08 +02:00
2018-01-22 15:16:25 +01:00
$notif_header = L10n :: t ( 'Personal Notifications' );
2016-08-03 12:44:04 +02:00
$notifs = $nm -> personalNotifs ( $show , $startrec , $perpage );
2015-10-04 17:18:58 +02:00
2016-08-03 12:44:04 +02:00
// Get the home notifications
2017-03-21 17:02:59 +01:00
} else if (( $a -> argc > 1 ) && ( $a -> argv [ 1 ] == 'home' )) {
2011-10-07 08:25:08 +02:00
2018-01-22 15:16:25 +01:00
$notif_header = L10n :: t ( 'Home Notifications' );
2016-08-03 12:44:04 +02:00
$notifs = $nm -> homeNotifs ( $show , $startrec , $perpage );
2012-12-22 20:57:29 +01:00
2016-08-03 12:44:04 +02:00
}
2012-02-07 01:41:05 +01:00
2011-10-07 08:25:08 +02:00
2016-08-03 12:44:04 +02:00
// Set the pager
$a -> set_pager_total ( $notifs [ 'total' ]);
$a -> set_pager_itemspage ( $perpage );
2012-02-07 01:41:05 +01:00
2016-08-03 12:44:04 +02:00
// Add additional informations (needed for json output)
$notifs [ 'items_page' ] = $a -> pager [ 'itemspage' ];
$notifs [ 'page' ] = $a -> pager [ 'page' ];
2011-10-07 08:25:08 +02:00
2016-08-03 12:44:04 +02:00
// Json output
2018-01-27 14:25:54 +01:00
if ( intval ( $json ) === 1 ) {
2018-01-27 17:59:10 +01:00
System :: jsonExit ( $notifs );
2018-01-27 14:25:54 +01:00
}
2011-10-07 08:25:08 +02:00
2016-08-03 12:44:04 +02:00
$notif_tpl = get_markup_template ( 'notifications.tpl' );
2011-10-07 08:25:08 +02:00
2016-08-03 12:44:04 +02:00
// Process the data for template creation
2017-03-21 17:02:59 +01:00
if ( $notifs [ 'ident' ] === 'introductions' ) {
2011-10-07 08:25:08 +02:00
2016-08-03 12:44:04 +02:00
$sugg = get_markup_template ( 'suggestions.tpl' );
$tpl = get_markup_template ( " intros.tpl " );
2011-10-07 08:25:08 +02:00
2016-08-03 12:44:04 +02:00
// The link to switch between ignored and normal connection requests
2018-01-15 14:05:12 +01:00
$notif_show_lnk = [
2016-08-07 12:26:49 +02:00
'href' => ( ! $all ? 'notifications/intros/all' : 'notifications/intros' ),
2018-01-22 15:16:25 +01:00
'text' => ( ! $all ? L10n :: t ( 'Show Ignored Requests' ) : L10n :: t ( 'Hide Ignored Requests' ))
2018-01-15 14:05:12 +01:00
];
2016-08-03 12:44:04 +02:00
// Loop through all introduction notifications.This creates an array with the output html for each
// introduction
foreach ( $notifs [ 'notifications' ] as $it ) {
// There are two kind of introduction. Contacts suggested by other contacts and normal connection requests.
// We have to distinguish between these two because they use different data.
switch ( $it [ 'label' ]) {
case 'friend_suggestion' :
2018-01-15 14:05:12 +01:00
$notif_content [] = replace_macros ( $sugg , [
2018-01-22 15:16:25 +01:00
'$str_notifytype' => L10n :: t ( 'Notification type: ' ),
2016-08-03 12:44:04 +02:00
'$notify_type' => $it [ 'notify_type' ],
'$intro_id' => $it [ 'intro_id' ],
2018-01-24 03:59:16 +01:00
'$madeby' => L10n :: t ( 'suggested by %s' , $it [ 'madeby' ]),
2016-08-03 12:44:04 +02:00
'$contact_id' => $it [ 'contact-id' ],
'$photo' => $it [ 'photo' ],
'$fullname' => $it [ 'name' ],
'$url' => $it [ 'url' ],
2018-01-22 15:16:25 +01:00
'$hidden' => [ 'hidden' , L10n :: t ( 'Hide this contact from others' ), ( $it [ 'hidden' ] == 1 ), '' ],
'$activity' => [ 'activity' , L10n :: t ( 'Post a new friend activity' ), $it [ 'post_newfriend' ], L10n :: t ( 'if applicable' )],
2016-08-03 12:44:04 +02:00
'$knowyou' => $it [ 'knowyou' ],
2018-01-22 15:16:25 +01:00
'$approve' => L10n :: t ( 'Approve' ),
2016-08-03 12:44:04 +02:00
'$note' => $it [ 'note' ],
'$request' => $it [ 'request' ],
2018-01-22 15:16:25 +01:00
'$ignore' => L10n :: t ( 'Ignore' ),
'$discard' => L10n :: t ( 'Discard' ),
2018-01-15 14:05:12 +01:00
]);
2016-08-03 12:44:04 +02:00
break ;
// Normal connection requests
default :
$friend_selected = (( $it [ 'network' ] !== NETWORK_OSTATUS ) ? ' checked="checked" ' : ' disabled ' );
$fan_selected = (( $it [ 'network' ] === NETWORK_OSTATUS ) ? ' checked="checked" disabled ' : '' );
$dfrn_tpl = get_markup_template ( 'netfriend.tpl' );
$knowyou = '' ;
$dfrn_text = '' ;
2017-03-21 17:02:59 +01:00
if ( $it [ 'network' ] === NETWORK_DFRN || $it [ 'network' ] === NETWORK_DIASPORA ) {
if ( $it [ 'network' ] === NETWORK_DFRN ) {
2018-01-22 15:16:25 +01:00
$lbl_knowyou = L10n :: t ( 'Claims to be known to you: ' );
$knowyou = (( $it [ 'knowyou' ]) ? L10n :: t ( 'yes' ) : L10n :: t ( 'no' ));
$helptext = L10n :: t ( 'Shall your connection be bidirectional or not?' );
2018-01-24 03:59:16 +01:00
$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.' , $it [ 'name' ], $it [ 'name' ]);
$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.' , $it [ 'name' ]);
2016-08-03 12:44:04 +02:00
} else {
$knowyou = '' ;
2018-01-22 15:16:25 +01:00
$helptext = L10n :: t ( 'Shall your connection be bidirectional or not?' );
2018-01-24 03:59:16 +01:00
$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.' , $it [ 'name' ], $it [ 'name' ]);
$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.' , $it [ 'name' ]);
2016-08-03 12:44:04 +02:00
}
2015-04-04 18:02:26 +02:00
}
2018-01-15 14:05:12 +01:00
$dfrn_text = replace_macros ( $dfrn_tpl ,[
2016-08-03 12:44:04 +02:00
'$intro_id' => $it [ 'intro_id' ],
2011-10-07 08:25:08 +02:00
'$friend_selected' => $friend_selected ,
'$fan_selected' => $fan_selected ,
2017-02-26 16:47:11 +01:00
'$approve_as1' => $helptext ,
'$approve_as2' => $helptext2 ,
2017-03-03 10:28:29 +01:00
'$approve_as3' => $helptext3 ,
2018-01-22 15:16:25 +01:00
'$as_friend' => L10n :: t ( 'Friend' ),
'$as_fan' => (( $it [ 'network' ] == NETWORK_DIASPORA ) ? L10n :: t ( 'Sharer' ) : L10n :: t ( 'Subscriber' ))
2018-01-15 14:05:12 +01:00
]);
2014-07-22 00:36:20 +02:00
2016-08-03 12:44:04 +02:00
$header = $it [ " name " ];
2014-07-22 00:36:20 +02:00
2016-08-03 12:44:04 +02:00
if ( $it [ " addr " ] != " " )
$header .= " < " . $it [ " addr " ] . " > " ;
2014-07-22 00:36:20 +02:00
2018-01-10 04:42:04 +01:00
$header .= " ( " . ContactSelector :: networkToName ( $it [ 'network' ], $it [ 'url' ]) . " ) " ;
2012-02-23 08:34:30 +01:00
2017-04-28 10:36:10 +02:00
if ( $it [ 'network' ] != NETWORK_DIASPORA ) {
2018-01-22 15:16:25 +01:00
$discard = L10n :: t ( 'Discard' );
2017-04-28 10:36:10 +02:00
} else {
$discard = '' ;
}
2018-01-15 14:05:12 +01:00
$notif_content [] = replace_macros ( $tpl , [
2016-08-03 12:44:04 +02:00
'$header' => htmlentities ( $header ),
2018-01-22 15:16:25 +01:00
'$str_notifytype' => L10n :: t ( 'Notification type: ' ),
2016-08-03 12:44:04 +02:00
'$notify_type' => $it [ 'notify_type' ],
'$dfrn_text' => $dfrn_text ,
'$dfrn_id' => $it [ 'dfrn_id' ],
'$uid' => $it [ 'uid' ],
'$intro_id' => $it [ 'intro_id' ],
'$contact_id' => $it [ 'contact_id' ],
'$photo' => $it [ 'photo' ],
'$fullname' => $it [ 'name' ],
'$location' => $it [ 'location' ],
2018-01-22 15:16:25 +01:00
'$lbl_location' => L10n :: t ( 'Location:' ),
2016-08-03 12:44:04 +02:00
'$about' => $it [ 'about' ],
2018-01-22 15:16:25 +01:00
'$lbl_about' => L10n :: t ( 'About:' ),
2016-08-03 12:44:04 +02:00
'$keywords' => $it [ 'keywords' ],
2018-01-22 15:16:25 +01:00
'$lbl_keywords' => L10n :: t ( 'Tags:' ),
2016-08-03 12:44:04 +02:00
'$gender' => $it [ 'gender' ],
2018-01-22 15:16:25 +01:00
'$lbl_gender' => L10n :: t ( 'Gender:' ),
'$hidden' => [ 'hidden' , L10n :: t ( 'Hide this contact from others' ), ( $it [ 'hidden' ] == 1 ), '' ],
'$activity' => [ 'activity' , L10n :: t ( 'Post a new friend activity' ), $it [ 'post_newfriend' ], L10n :: t ( 'if applicable' )],
2016-08-03 12:44:04 +02:00
'$url' => $it [ 'url' ],
'$zrl' => $it [ 'zrl' ],
2018-01-22 15:16:25 +01:00
'$lbl_url' => L10n :: t ( 'Profile URL' ),
2016-08-03 12:44:04 +02:00
'$addr' => $it [ 'addr' ],
'$lbl_knowyou' => $lbl_knowyou ,
2018-01-22 15:16:25 +01:00
'$lbl_network' => L10n :: t ( 'Network:' ),
2018-01-10 04:42:04 +01:00
'$network' => ContactSelector :: networkToName ( $it [ 'network' ], $it [ 'url' ]),
2016-08-03 12:44:04 +02:00
'$knowyou' => $knowyou ,
2018-01-22 15:16:25 +01:00
'$approve' => L10n :: t ( 'Approve' ),
2016-08-03 12:44:04 +02:00
'$note' => $it [ 'note' ],
2018-01-22 15:16:25 +01:00
'$ignore' => L10n :: t ( 'Ignore' ),
2017-04-28 10:36:10 +02:00
'$discard' => $discard ,
2014-07-22 00:36:20 +02:00
2018-01-15 14:05:12 +01:00
]);
2016-08-03 12:44:04 +02:00
break ;
2012-02-23 08:34:30 +01:00
}
}
2014-07-22 00:36:20 +02:00
2017-03-21 17:02:59 +01:00
if ( $notifs [ 'total' ] == 0 )
2018-01-21 19:33:59 +01:00
info ( L10n :: t ( 'No introductions.' ) . EOL );
2014-07-22 00:36:20 +02:00
2016-08-03 12:44:04 +02:00
// Normal notifications (no introductions)
} else {
2016-08-01 23:04:41 +02:00
2016-08-01 18:18:11 +02:00
// The template files we need in different cases for formatting the content
$tpl_item_like = 'notifications_likes_item.tpl' ;
$tpl_item_dislike = 'notifications_dislikes_item.tpl' ;
2016-08-02 00:01:43 +02:00
$tpl_item_attend = 'notifications_attend_item.tpl' ;
$tpl_item_attendno = 'notifications_attend_item.tpl' ;
$tpl_item_attendmaybe = 'notifications_attend_item.tpl' ;
2016-08-01 18:18:11 +02:00
$tpl_item_friend = 'notifications_friends_item.tpl' ;
$tpl_item_comment = 'notifications_comments_item.tpl' ;
$tpl_item_post = 'notifications_posts_item.tpl' ;
$tpl_item_notify = 'notify.tpl' ;
2016-08-03 12:44:04 +02:00
// Loop trough ever notification This creates an array with the output html for each
// notification and apply the correct template according to the notificationtype (label).
2016-08-01 18:18:11 +02:00
foreach ( $notifs [ 'notifications' ] as $it ) {
2016-08-03 12:44:04 +02:00
// We use the notification label to get the correct template file
$tpl_var_name = 'tpl_item_' . $it [ 'label' ];
$tpl_notif = get_markup_template ( $$tpl_var_name );
2018-01-15 14:05:12 +01:00
$notif_content [] = replace_macros ( $tpl_notif ,[
2016-08-01 18:18:11 +02:00
'$item_label' => $it [ 'label' ],
'$item_link' => $it [ 'link' ],
'$item_image' => $it [ 'image' ],
2016-12-21 23:17:55 +01:00
'$item_url' => $it [ 'url' ],
2017-04-19 01:34:46 +02:00
'$item_text' => $it [ 'text' ],
2016-08-01 18:18:11 +02:00
'$item_when' => $it [ 'when' ],
2016-12-22 00:28:52 +01:00
'$item_ago' => $it [ 'ago' ],
2016-08-01 18:18:11 +02:00
'$item_seen' => $it [ 'seen' ],
2018-01-15 14:05:12 +01:00
]);
2011-12-01 07:26:02 +01:00
}
2014-07-22 00:36:20 +02:00
2016-08-03 12:44:04 +02:00
// It doesn't make sense to show the Show unread / Show all link visible if the user is on the
// "Show all" page and there are no notifications. So we will hide it.
2018-01-24 03:59:16 +01:00
if ( $show == 0 || intval ( $show ) && $notifs [ 'total' ] > 0 ) {
2018-01-15 14:05:12 +01:00
$notif_show_lnk = [
2016-08-03 12:44:04 +02:00
'href' => ( $show ? 'notifications/' . $notifs [ 'ident' ] : 'notifications/' . $notifs [ 'ident' ] . '?show=all' ),
2018-01-22 15:16:25 +01:00
'text' => ( $show ? L10n :: t ( 'Show unread' ) : L10n :: t ( 'Show all' )),
2018-01-15 14:05:12 +01:00
];
2011-10-07 08:25:08 +02:00
}
2014-07-22 00:36:20 +02:00
2016-08-03 12:44:04 +02:00
// Output if there aren't any notifications available
2018-01-24 03:59:16 +01:00
if ( $notifs [ 'total' ] == 0 ) {
$notif_nocontent = L10n :: t ( 'No more %s notifications.' , $notifs [ 'ident' ]);
}
2010-07-02 01:48:07 +02:00
}
2018-01-15 14:05:12 +01:00
$o .= replace_macros ( $notif_tpl , [
2016-07-27 21:07:54 +02:00
'$notif_header' => $notif_header ,
'$tabs' => $tabs ,
'$notif_content' => $notif_content ,
'$notif_nocontent' => $notif_nocontent ,
2016-08-01 18:18:11 +02:00
'$notif_show_lnk' => $notif_show_lnk ,
2016-08-01 23:04:41 +02:00
'$notif_paginate' => paginate ( $a )
2018-01-15 14:05:12 +01:00
]);
2016-07-28 11:39:09 +02:00
2010-07-02 01:48:07 +02:00
return $o ;
2011-01-04 14:46:08 +01:00
}