2010-07-02 01:48:07 +02:00
< ? php
2015-09-25 17:47:37 +02:00
include_once ( " include/bbcode.php " );
2015-10-04 17:18:58 +02:00
include_once ( " include/contact_selectors.php " );
2015-10-04 17:20:47 +02:00
include_once ( " include/Scrape.php " );
2010-07-02 01:48:07 +02:00
function notifications_post ( & $a ) {
2010-08-16 06:49:29 +02:00
if ( ! local_user ()) {
2011-08-02 06:02:25 +02:00
goaway ( z_root ());
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
2010-09-27 04:44:03 +02:00
if ( $request_id === " all " )
2010-07-02 01:48:07 +02:00
return ;
if ( $request_id ) {
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
2010-07-02 01:48:07 +02:00
if ( count ( $r )) {
$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 {
2010-08-16 06:49:29 +02:00
notice ( 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' ];
2010-08-16 07:43:42 +02:00
if ( $_POST [ 'submit' ] == 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
);
2011-06-27 06:55:24 +02: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 ())
);
}
2012-03-15 05:20:20 +01:00
goaway ( $a -> get_baseurl ( true ) . '/notifications/intros' );
2010-07-02 01:48:07 +02:00
}
2010-08-16 06:49:29 +02:00
if ( $_POST [ 'submit' ] == 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 ));
2012-03-15 05:20:20 +01:00
goaway ( $a -> get_baseurl ( true ) . '/notifications/intros' );
2010-07-02 01:48:07 +02:00
}
}
}
function notifications_content ( & $a ) {
2010-08-16 06:49:29 +02:00
if ( ! local_user ()) {
notice ( t ( 'Permission denied.' ) . EOL );
2011-08-02 06:02:25 +02:00
return ;
2010-07-02 01:48:07 +02:00
}
2013-12-02 20:30:24 +01:00
nav_set_selected ( '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 );
2010-08-16 06:49:29 +02:00
$o = '' ;
2011-10-10 17:01:14 +02:00
$tabs = array (
2012-02-23 08:34:30 +01:00
array (
'label' => t ( 'System' ),
2012-03-15 05:20:20 +01:00
'url' => $a -> get_baseurl ( true ) . '/notifications/system' ,
2012-02-23 08:34:30 +01:00
'sel' => (( $a -> argv [ 1 ] == 'system' ) ? 'active' : '' ),
2015-08-08 17:33:43 +02:00
'accesskey' => 'y' ,
2012-02-23 08:34:30 +01:00
),
2011-10-12 06:30:23 +02:00
array (
'label' => t ( 'Network' ),
2012-03-15 05:20:20 +01:00
'url' => $a -> get_baseurl ( true ) . '/notifications/network' ,
2011-10-12 06:30:23 +02:00
'sel' => (( $a -> argv [ 1 ] == 'network' ) ? 'active' : '' ),
2015-08-08 17:33:43 +02:00
'accesskey' => 'w' ,
2011-10-12 06:30:23 +02:00
),
2011-12-01 07:26:02 +01:00
array (
'label' => t ( 'Personal' ),
2012-03-15 05:20:20 +01:00
'url' => $a -> get_baseurl ( true ) . '/notifications/personal' ,
2011-12-01 07:26:02 +01:00
'sel' => (( $a -> argv [ 1 ] == 'personal' ) ? 'active' : '' ),
2015-08-08 17:33:43 +02:00
'accesskey' => 'r' ,
2011-12-01 07:26:02 +01:00
),
2011-10-12 06:30:23 +02:00
array (
'label' => t ( 'Home' ),
2012-03-15 05:20:20 +01:00
'url' => $a -> get_baseurl ( true ) . '/notifications/home' ,
2011-10-12 06:30:23 +02:00
'sel' => (( $a -> argv [ 1 ] == 'home' ) ? 'active' : '' ),
2015-08-08 17:33:43 +02:00
'accesskey' => 'h' ,
2011-10-12 06:30:23 +02:00
),
array (
'label' => t ( 'Introductions' ),
2012-03-15 05:20:20 +01:00
'url' => $a -> get_baseurl ( true ) . '/notifications/intros' ,
2011-10-12 06:30:23 +02:00
'sel' => (( $a -> argv [ 1 ] == 'intros' ) ? 'active' : '' ),
2015-08-08 17:33:43 +02:00
'accesskey' => 'i' ,
2011-10-12 06:30:23 +02:00
),
2014-09-17 11:01:47 +02:00
/* array (
2011-10-12 06:30:23 +02:00
'label' => t ( 'Messages' ),
2012-03-15 05:20:20 +01:00
'url' => $a -> get_baseurl ( true ) . '/message' ,
2011-10-12 06:30:23 +02:00
'sel' => '' ,
2014-09-17 11:01:47 +02:00
), */ /*while I can have notifications for messages, this tablist is not place for message page link */
2011-10-10 17:01:14 +02:00
);
2013-12-02 20:30:24 +01:00
2011-10-17 16:54:21 +02:00
$o = " " ;
2011-10-12 06:30:23 +02:00
2013-12-02 20:30:24 +01:00
2011-10-07 08:25:08 +02:00
if ( (( $a -> argc > 1 ) && ( $a -> argv [ 1 ] == 'intros' )) || (( $a -> argc == 1 ))) {
2011-10-12 06:30:23 +02:00
nav_set_selected ( 'introductions' );
2011-10-07 08:25:08 +02:00
if (( $a -> argc > 2 ) && ( $a -> argv [ 2 ] == 'all' ))
$sql_extra = '' ;
else
$sql_extra = " AND `ignore` = 0 " ;
2013-12-02 20:30:24 +01:00
2011-10-07 08:25:08 +02:00
$notif_tpl = get_markup_template ( 'notifications.tpl' );
2013-12-02 20:30:24 +01:00
2011-10-07 08:25:08 +02:00
$notif_content .= '<a href="' . (( strlen ( $sql_extra )) ? 'notifications/intros/all' : 'notifications/intros' ) . '" id="notifications-show-hide-link" >'
. (( strlen ( $sql_extra )) ? t ( 'Show Ignored Requests' ) : t ( 'Hide Ignored Requests' )) . '</a></div>' . " \r \n " ;
2014-07-22 00:36:20 +02:00
$r = q ( " SELECT COUNT(*) AS `total` FROM `intro`
2011-10-07 08:25:08 +02:00
WHERE `intro` . `uid` = % d $sql_extra AND `intro` . `blocked` = 0 " ,
intval ( $_SESSION [ 'uid' ])
);
if ( $r && count ( $r )) {
$a -> set_pager_total ( $r [ 0 ][ 'total' ]);
$a -> set_pager_itemspage ( 20 );
}
2010-07-02 01:48:07 +02:00
2015-08-12 08:07:21 +02:00
$r = q ( " SELECT `intro`.`id` AS `intro_id`, `intro`.*, `contact`.*, `fcontact`.`name` AS `fname`,`fcontact`.`url` AS `furl`,`fcontact`.`photo` AS `fphoto`,`fcontact`.`request` AS `frequest`,
`gcontact` . `location` AS `glocation` , `gcontact` . `about` AS `gabout` ,
2015-10-04 17:18:58 +02:00
`gcontact` . `keywords` AS `gkeywords` , `gcontact` . `gender` AS `ggender` ,
`gcontact` . `network` AS `gnetwork`
2015-08-12 08:07:21 +02:00
FROM `intro`
LEFT JOIN `contact` ON `contact` . `id` = `intro` . `contact-id`
LEFT JOIN `gcontact` ON `gcontact` . `nurl` = `contact` . `nurl`
LEFT JOIN `fcontact` ON `intro` . `fid` = `fcontact` . `id`
2011-10-07 08:25:08 +02:00
WHERE `intro` . `uid` = % d $sql_extra AND `intro` . `blocked` = 0 " ,
intval ( $_SESSION [ 'uid' ]));
if (( $r !== false ) && ( count ( $r ))) {
$sugg = get_markup_template ( 'suggestions.tpl' );
$tpl = get_markup_template ( " intros.tpl " );
foreach ( $r as $rr ) {
2015-10-04 17:18:58 +02:00
2011-10-07 08:25:08 +02:00
if ( $rr [ 'fid' ]) {
$return_addr = bin2hex ( $a -> user [ 'nickname' ] . '@' . $a -> get_hostname () . (( $a -> path ) ? '/' . $a -> path : '' ));
2012-12-22 20:57:29 +01:00
2012-12-25 19:48:02 +01:00
$notif_content .= replace_macros ( $sugg , array (
2011-10-07 08:25:08 +02:00
'$str_notifytype' => t ( 'Notification type: ' ),
'$notify_type' => t ( 'Friend Suggestion' ),
'$intro_id' => $rr [ 'intro_id' ],
'$madeby' => sprintf ( t ( 'suggested by %s' ), $rr [ 'name' ]),
'$contact_id' => $rr [ 'contact-id' ],
2015-10-07 08:25:10 +02:00
'$photo' => (( x ( $rr , 'fphoto' )) ? proxy_url ( $rr [ 'fphoto' ], false , PROXY_SIZE_SMALL ) : " images/person-175.jpg " ),
2011-10-07 08:25:08 +02:00
'$fullname' => $rr [ 'fname' ],
2012-03-30 07:20:14 +02:00
'$url' => zrl ( $rr [ 'furl' ]),
2011-12-29 09:23:05 +01:00
'$hidden' => array ( 'hidden' , t ( 'Hide this contact from others' ), ( $rr [ 'hidden' ] == 1 ), '' ),
2012-04-14 01:12:06 +02:00
'$activity' => array ( 'activity' , t ( 'Post a new friend activity' ), ( intval ( get_pconfig ( local_user (), 'system' , 'post_newfriend' )) ? '1' : 0 ), t ( 'if applicable' )),
2012-02-07 01:41:05 +01:00
2011-10-07 08:25:08 +02:00
'$knowyou' => $knowyou ,
'$approve' => t ( 'Approve' ),
'$note' => $rr [ 'note' ],
'$request' => $rr [ 'frequest' ] . '?addr=' . $return_addr ,
'$ignore' => t ( 'Ignore' ),
2012-12-22 20:57:29 +01:00
'$discard' => t ( 'Discard' ),
2011-10-07 08:25:08 +02:00
));
continue ;
}
$friend_selected = (( $rr [ 'network' ] !== NETWORK_OSTATUS ) ? ' checked="checked" ' : ' disabled ' );
$fan_selected = (( $rr [ 'network' ] === NETWORK_OSTATUS ) ? ' checked="checked" disabled ' : '' );
$dfrn_tpl = get_markup_template ( 'netfriend.tpl' );
$knowyou = '' ;
$dfrn_text = '' ;
if ( $rr [ 'network' ] === NETWORK_DFRN || $rr [ 'network' ] === NETWORK_DIASPORA ) {
2015-04-04 18:02:26 +02:00
if ( $rr [ 'network' ] === NETWORK_DFRN ) {
2011-10-07 08:25:08 +02:00
$knowyou = t ( 'Claims to be known to you: ' ) . (( $rr [ 'knowyou' ]) ? t ( 'yes' ) : t ( 'no' ));
2015-04-04 18:02:26 +02:00
$helptext = t ( 'Shall your connection be bidirectional or not? "Friend" implies that you allow to read and you subscribe to their posts. "Fan/Admirer" means that you allow to read but you do not want to read theirs. Approve as: ' );
} else {
2011-10-07 08:25:08 +02:00
$knowyou = '' ;
2015-04-04 18:02:26 +02:00
$helptext = t ( 'Shall your connection be bidirectional or not? "Friend" implies that you allow to read and you subscribe to their posts. "Sharer" means that you allow to read but you do not want to read theirs. Approve as: ' );
}
2011-10-07 08:25:08 +02:00
$dfrn_text = replace_macros ( $dfrn_tpl , array (
'$intro_id' => $rr [ 'intro_id' ],
'$friend_selected' => $friend_selected ,
'$fan_selected' => $fan_selected ,
2015-04-04 18:02:26 +02:00
'$approve_as' => $helptext ,
2011-10-07 08:25:08 +02:00
'$as_friend' => t ( 'Friend' ),
'$as_fan' => (( $rr [ 'network' ] == NETWORK_DIASPORA ) ? t ( 'Sharer' ) : t ( 'Fan/Admirer' ))
));
2013-12-02 20:30:24 +01:00
}
2011-10-07 08:25:08 +02:00
2015-10-04 17:18:58 +02:00
$header = $rr [ " name " ];
$ret = probe_url ( $rr [ " url " ]);
if ( $rr [ 'gnetwork' ] == " " )
$rr [ 'gnetwork' ] = $ret [ " network " ];
if ( $ret [ " addr " ] != " " )
$header .= " < " . $ret [ " addr " ] . " > " ;
2015-10-04 22:24:58 +02:00
$header .= " ( " . network_to_name ( $rr [ 'gnetwork' ], $rr [ 'url' ]) . " ) " ;
2015-10-04 17:18:58 +02:00
2015-10-06 06:56:31 +02:00
// Don't show these data until you are connected. Diaspora is doing the same.
if ( $rr [ 'gnetwork' ] === NETWORK_DIASPORA ) {
$rr [ 'glocation' ] = " " ;
$rr [ 'gabout' ] = " " ;
$rr [ 'ggender' ] = " " ;
}
2012-12-25 19:48:02 +01:00
$notif_content .= replace_macros ( $tpl , array (
2015-10-04 17:18:58 +02:00
'$header' => htmlentities ( $header ),
2011-06-27 06:55:24 +02:00
'$str_notifytype' => t ( 'Notification type: ' ),
2011-10-07 08:25:08 +02:00
'$notify_type' => (( $rr [ 'network' ] !== NETWORK_OSTATUS ) ? t ( 'Friend/Connect Request' ) : t ( 'New Follower' )),
2013-12-02 20:30:24 +01:00
'$dfrn_text' => $dfrn_text ,
2011-10-07 08:25:08 +02:00
'$dfrn_id' => $rr [ 'issued-id' ],
'$uid' => $_SESSION [ 'uid' ],
2011-06-27 06:55:24 +02:00
'$intro_id' => $rr [ 'intro_id' ],
'$contact_id' => $rr [ 'contact-id' ],
2015-10-07 08:25:10 +02:00
'$photo' => (( x ( $rr , 'photo' )) ? proxy_url ( $rr [ 'photo' ], false , PROXY_SIZE_SMALL ) : " images/person-175.jpg " ),
2011-10-07 08:25:08 +02:00
'$fullname' => $rr [ 'name' ],
2015-10-04 15:55:24 +02:00
'$location' => bbcode ( $rr [ 'glocation' ], false , false ),
2015-08-12 08:07:21 +02:00
'$location_label' => t ( 'Location:' ),
2015-10-05 22:25:14 +02:00
'$about' => bbcode ( $rr [ 'gabout' ], false , false ),
2015-08-12 08:07:21 +02:00
'$about_label' => t ( 'About:' ),
'$keywords' => $rr [ 'gkeywords' ],
'$keywords_label' => t ( 'Tags:' ),
'$gender' => $rr [ 'ggender' ],
'$gender_label' => t ( 'Gender:' ),
2011-12-29 09:23:05 +01:00
'$hidden' => array ( 'hidden' , t ( 'Hide this contact from others' ), ( $rr [ 'hidden' ] == 1 ), '' ),
2012-04-14 01:12:06 +02:00
'$activity' => array ( 'activity' , t ( 'Post a new friend activity' ), ( intval ( get_pconfig ( local_user (), 'system' , 'post_newfriend' )) ? '1' : 0 ), t ( 'if applicable' )),
2015-10-06 18:31:08 +02:00
'$url' => $rr [ 'url' ],
'$zrl' => zrl ( $rr [ 'url' ]),
2015-10-04 15:55:24 +02:00
'$url_label' => t ( 'Profile URL' ),
2011-06-27 06:55:24 +02:00
'$knowyou' => $knowyou ,
'$approve' => t ( 'Approve' ),
'$note' => $rr [ 'note' ],
'$ignore' => t ( 'Ignore' ),
2012-12-22 20:57:29 +01:00
'$discard' => t ( 'Discard' ),
2011-06-27 06:55:24 +02:00
));
}
2010-07-02 01:48:07 +02:00
}
2011-10-07 08:25:08 +02:00
else
2011-12-01 07:26:02 +01:00
info ( t ( 'No introductions.' ) . EOL );
2012-10-15 02:16:25 +02:00
2012-12-25 19:48:02 +01:00
$o .= replace_macros ( $notif_tpl , array (
2011-10-12 06:30:23 +02:00
'$notif_header' => t ( 'Notifications' ),
2012-12-26 18:42:01 +01:00
'$tabs' => $tabs ,
2011-10-07 08:25:08 +02:00
'$notif_content' => $notif_content ,
));
2013-12-02 20:30:24 +01:00
2011-10-07 08:25:08 +02:00
$o .= paginate ( $a );
return $o ;
2013-12-02 20:30:24 +01:00
2011-10-07 08:25:08 +02:00
} else if (( $a -> argc > 1 ) && ( $a -> argv [ 1 ] == 'network' )) {
2013-12-02 20:30:24 +01:00
2011-10-07 08:25:08 +02:00
$notif_tpl = get_markup_template ( 'notifications.tpl' );
2013-12-02 20:30:24 +01:00
2014-07-22 00:36:20 +02:00
$r = q ( " SELECT `item`.`id`,`item`.`parent`, `item`.`verb`, `item`.`author-name`,
`item` . `author-link` , `item` . `author-avatar` , `item` . `created` , `item` . `object` as `object` ,
`pitem` . `author-name` as `pname` , `pitem` . `author-link` as `plink` , `pitem` . `guid` as `pguid`
2011-10-07 08:25:08 +02:00
FROM `item` INNER JOIN `item` as `pitem` ON `pitem` . `id` = `item` . `parent`
2013-03-03 20:44:52 +01:00
WHERE `item` . `unseen` = 1 AND `item` . `visible` = 1 AND `pitem` . `parent` != 0 AND
2011-10-07 08:25:08 +02:00
`item` . `deleted` = 0 AND `item` . `uid` = % d AND `item` . `wall` = 0 ORDER BY `item` . `created` DESC " ,
intval ( local_user ())
);
2014-07-22 00:36:20 +02:00
2011-10-07 08:25:08 +02:00
$tpl_item_likes = get_markup_template ( 'notifications_likes_item.tpl' );
$tpl_item_dislikes = get_markup_template ( 'notifications_dislikes_item.tpl' );
$tpl_item_friends = get_markup_template ( 'notifications_friends_item.tpl' );
$tpl_item_comments = get_markup_template ( 'notifications_comments_item.tpl' );
2011-10-09 05:45:48 +02:00
$tpl_item_posts = get_markup_template ( 'notifications_posts_item.tpl' );
2014-07-22 00:36:20 +02:00
2011-10-07 08:25:08 +02:00
$notif_content = '' ;
2014-07-22 00:36:20 +02:00
2012-11-04 22:43:28 +01:00
if ( $r ) {
2014-07-22 00:36:20 +02:00
2011-10-07 08:25:08 +02:00
foreach ( $r as $it ) {
switch ( $it [ 'verb' ]){
case ACTIVITY_LIKE :
$notif_content .= replace_macros ( $tpl_item_likes , array (
2014-07-22 00:36:20 +02:00
//'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
'$item_link' => $a -> get_baseurl ( true ) . '/display/' . $it [ 'pguid' ],
2015-10-07 08:25:10 +02:00
'$item_image' => proxy_url ( $it [ 'author-avatar' ], false , PROXY_SIZE_MICRO ),
2011-10-07 08:25:08 +02:00
'$item_text' => sprintf ( t ( " %s liked %s's post " ), $it [ 'author-name' ], $it [ 'pname' ]),
'$item_when' => relative_date ( $it [ 'created' ])
));
break ;
2014-07-22 00:36:20 +02:00
2011-10-07 08:25:08 +02:00
case ACTIVITY_DISLIKE :
$notif_content .= replace_macros ( $tpl_item_dislikes , array (
2014-07-22 00:36:20 +02:00
//'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
'$item_link' => $a -> get_baseurl ( true ) . '/display/' . $it [ 'pguid' ],
2015-10-07 08:25:10 +02:00
'$item_image' => proxy_url ( $it [ 'author-avatar' ], false , PROXY_SIZE_MICRO ),
2011-10-10 05:26:17 +02:00
'$item_text' => sprintf ( t ( " %s disliked %s's post " ), $it [ 'author-name' ], $it [ 'pname' ]),
2011-10-07 08:25:08 +02:00
'$item_when' => relative_date ( $it [ 'created' ])
));
break ;
2014-07-22 00:36:20 +02:00
2011-10-07 08:25:08 +02:00
case ACTIVITY_FRIEND :
2014-07-22 00:36:20 +02:00
2011-10-08 23:57:00 +02:00
$xmlhead = " < " . " ?xml version='1.0' encoding='UTF-8' ? " . " > " ;
$obj = parse_xml_string ( $xmlhead . $it [ 'object' ]);
$it [ 'fname' ] = $obj -> title ;
2014-07-22 00:36:20 +02:00
2011-10-07 08:25:08 +02:00
$notif_content .= replace_macros ( $tpl_item_friends , array (
2014-07-22 00:36:20 +02:00
//'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
'$item_link' => $a -> get_baseurl ( true ) . '/display/' . $it [ 'pguid' ],
2015-10-07 08:25:10 +02:00
'$item_image' => proxy_url ( $it [ 'author-avatar' ], false , PROXY_SIZE_MICRO ),
2011-10-10 05:26:17 +02:00
'$item_text' => sprintf ( t ( " %s is now friends with %s " ), $it [ 'author-name' ], $it [ 'fname' ]),
2011-10-09 05:45:48 +02:00
'$item_when' => relative_date ( $it [ 'created' ])
));
break ;
2014-07-22 00:36:20 +02:00
2011-10-07 08:25:08 +02:00
default :
2011-10-10 05:26:17 +02:00
$item_text = (( $it [ 'id' ] == $it [ 'parent' ])
? sprintf ( t ( " %s created a new post " ), $it [ 'author-name' ])
: sprintf ( t ( " %s commented on %s's post " ), $it [ 'author-name' ], $it [ 'pname' ]));
$tpl = (( $it [ 'id' ] == $it [ 'parent' ]) ? $tpl_item_posts : $tpl_item_comments );
$notif_content .= replace_macros ( $tpl , array (
2014-07-22 00:36:20 +02:00
//'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
'$item_link' => $a -> get_baseurl ( true ) . '/display/' . $it [ 'pguid' ],
2015-10-07 08:25:10 +02:00
'$item_image' => proxy_url ( $it [ 'author-avatar' ], false , PROXY_SIZE_MICRO ),
2011-10-10 05:26:17 +02:00
'$item_text' => $item_text ,
2011-10-07 08:25:08 +02:00
'$item_when' => relative_date ( $it [ 'created' ])
));
}
}
2014-07-22 00:36:20 +02:00
2011-10-07 08:25:08 +02:00
} else {
2014-07-22 00:36:20 +02:00
2011-12-01 07:26:02 +01:00
$notif_content = t ( 'No more network notifications.' );
2011-10-07 08:25:08 +02:00
}
2014-07-22 00:36:20 +02:00
2012-12-25 19:48:02 +01:00
$o .= replace_macros ( $notif_tpl , array (
2012-02-24 02:37:03 +01:00
'$notif_header' => t ( 'Network Notifications' ),
2012-12-26 18:42:01 +01:00
'$tabs' => $tabs ,
2011-10-07 08:25:08 +02:00
'$notif_content' => $notif_content ,
));
2014-07-22 00:36:20 +02:00
2012-02-23 08:34:30 +01:00
} else if (( $a -> argc > 1 ) && ( $a -> argv [ 1 ] == 'system' )) {
2014-07-22 00:36:20 +02:00
2012-02-23 08:34:30 +01:00
$notif_tpl = get_markup_template ( 'notifications.tpl' );
2014-07-22 00:36:20 +02:00
2012-02-23 08:34:30 +01:00
$not_tpl = get_markup_template ( 'notify.tpl' );
require_once ( 'include/bbcode.php' );
$r = q ( " SELECT * from notify where uid = %d and seen = 0 order by date desc " ,
intval ( local_user ())
);
2014-07-22 00:36:20 +02:00
2012-02-23 08:34:30 +01:00
if ( count ( $r ) > 0 ) {
foreach ( $r as $it ) {
$notif_content .= replace_macros ( $not_tpl , array (
2012-03-15 05:20:20 +01:00
'$item_link' => $a -> get_baseurl ( true ) . '/notify/view/' . $it [ 'id' ],
2015-10-07 08:25:10 +02:00
'$item_image' => proxy_url ( $it [ 'photo' ], false , PROXY_SIZE_MICRO ),
2012-02-23 08:34:30 +01:00
'$item_text' => strip_tags ( bbcode ( $it [ 'msg' ])),
'$item_when' => relative_date ( $it [ 'date' ])
));
}
} else {
$notif_content .= t ( 'No more system notifications.' );
}
2014-07-22 00:36:20 +02:00
2012-12-25 19:48:02 +01:00
$o .= replace_macros ( $notif_tpl , array (
2012-02-24 02:37:03 +01:00
'$notif_header' => t ( 'System Notifications' ),
2012-12-26 18:42:01 +01:00
'$tabs' => $tabs ,
2012-02-23 08:34:30 +01:00
'$notif_content' => $notif_content ,
));
2011-12-01 07:26:02 +01:00
} else if (( $a -> argc > 1 ) && ( $a -> argv [ 1 ] == 'personal' )) {
2014-07-22 00:36:20 +02:00
2011-12-01 07:26:02 +01:00
$notif_tpl = get_markup_template ( 'notifications.tpl' );
2014-07-22 00:36:20 +02:00
2012-03-15 05:20:20 +01:00
$myurl = $a -> get_baseurl ( true ) . '/profile/' . $a -> user [ 'nickname' ];
2011-12-01 07:26:02 +01:00
$myurl = substr ( $myurl , strpos ( $myurl , '://' ) + 3 );
$myurl = str_replace ( array ( 'www.' , '.' ), array ( '' , '\\.' ), $myurl );
2011-12-07 00:24:01 +01:00
$diasp_url = str_replace ( '/profile/' , '/u/' , $myurl );
$sql_extra .= sprintf ( " AND ( `item`.`author-link` regexp '%s' or `item`.`tag` regexp '%s' or `item`.`tag` regexp '%s' ) " ,
2011-12-01 07:26:02 +01:00
dbesc ( $myurl . '$' ),
2011-12-07 00:24:01 +01:00
dbesc ( $myurl . '\\]' ),
dbesc ( $diasp_url . '\\]' )
2011-12-01 07:26:02 +01:00
);
2014-07-22 00:36:20 +02:00
$r = q ( " SELECT `item`.`id`,`item`.`parent`, `item`.`verb`, `item`.`author-name`,
`item` . `author-link` , `item` . `author-avatar` , `item` . `created` , `item` . `object` as `object` ,
`pitem` . `author-name` as `pname` , `pitem` . `author-link` as `plink` , `pitem` . `guid` as `pguid`
2011-12-01 07:26:02 +01:00
FROM `item` INNER JOIN `item` as `pitem` ON `pitem` . `id` = `item` . `parent`
2014-07-22 00:36:20 +02:00
WHERE `item` . `unseen` = 1 AND `item` . `visible` = 1
2011-12-01 07:26:02 +01:00
$sql_extra
AND `item` . `deleted` = 0 AND `item` . `uid` = % d AND `item` . `wall` = 0 ORDER BY `item` . `created` DESC " ,
intval ( local_user ())
);
2014-07-22 00:36:20 +02:00
2011-12-01 07:26:02 +01:00
$tpl_item_likes = get_markup_template ( 'notifications_likes_item.tpl' );
$tpl_item_dislikes = get_markup_template ( 'notifications_dislikes_item.tpl' );
$tpl_item_friends = get_markup_template ( 'notifications_friends_item.tpl' );
$tpl_item_comments = get_markup_template ( 'notifications_comments_item.tpl' );
$tpl_item_posts = get_markup_template ( 'notifications_posts_item.tpl' );
2014-07-22 00:36:20 +02:00
2011-12-01 07:26:02 +01:00
$notif_content = '' ;
2014-07-22 00:36:20 +02:00
2011-12-01 07:26:02 +01:00
if ( count ( $r ) > 0 ) {
2014-07-22 00:36:20 +02:00
2011-12-01 07:26:02 +01:00
foreach ( $r as $it ) {
switch ( $it [ 'verb' ]){
case ACTIVITY_LIKE :
$notif_content .= replace_macros ( $tpl_item_likes , array (
2014-07-22 00:36:20 +02:00
//'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
'$item_link' => $a -> get_baseurl ( true ) . '/display/' . $it [ 'pguid' ],
2011-12-01 07:26:02 +01:00
'$item_image' => $it [ 'author-avatar' ],
'$item_text' => sprintf ( t ( " %s liked %s's post " ), $it [ 'author-name' ], $it [ 'pname' ]),
'$item_when' => relative_date ( $it [ 'created' ])
));
break ;
2014-07-22 00:36:20 +02:00
2011-12-01 07:26:02 +01:00
case ACTIVITY_DISLIKE :
$notif_content .= replace_macros ( $tpl_item_dislikes , array (
2014-07-22 00:36:20 +02:00
//'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
'$item_link' => $a -> get_baseurl ( true ) . '/display/' . $it [ 'pguid' ],
2011-12-01 07:26:02 +01:00
'$item_image' => $it [ 'author-avatar' ],
'$item_text' => sprintf ( t ( " %s disliked %s's post " ), $it [ 'author-name' ], $it [ 'pname' ]),
'$item_when' => relative_date ( $it [ 'created' ])
));
break ;
2014-07-22 00:36:20 +02:00
2011-12-01 07:26:02 +01:00
case ACTIVITY_FRIEND :
2014-07-22 00:36:20 +02:00
2011-12-01 07:26:02 +01:00
$xmlhead = " < " . " ?xml version='1.0' encoding='UTF-8' ? " . " > " ;
$obj = parse_xml_string ( $xmlhead . $it [ 'object' ]);
$it [ 'fname' ] = $obj -> title ;
2014-07-22 00:36:20 +02:00
2011-12-01 07:26:02 +01:00
$notif_content .= replace_macros ( $tpl_item_friends , array (
2014-07-22 00:36:20 +02:00
//'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
'$item_link' => $a -> get_baseurl ( true ) . '/display/' . $it [ 'pguid' ],
2011-12-01 07:26:02 +01:00
'$item_image' => $it [ 'author-avatar' ],
'$item_text' => sprintf ( t ( " %s is now friends with %s " ), $it [ 'author-name' ], $it [ 'fname' ]),
'$item_when' => relative_date ( $it [ 'created' ])
));
break ;
2014-07-22 00:36:20 +02:00
2011-12-01 07:26:02 +01:00
default :
$item_text = (( $it [ 'id' ] == $it [ 'parent' ])
? sprintf ( t ( " %s created a new post " ), $it [ 'author-name' ])
: sprintf ( t ( " %s commented on %s's post " ), $it [ 'author-name' ], $it [ 'pname' ]));
$tpl = (( $it [ 'id' ] == $it [ 'parent' ]) ? $tpl_item_posts : $tpl_item_comments );
$notif_content .= replace_macros ( $tpl , array (
2014-07-22 00:36:20 +02:00
//'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
'$item_link' => $a -> get_baseurl ( true ) . '/display/' . $it [ 'pguid' ],
2011-12-01 07:26:02 +01:00
'$item_image' => $it [ 'author-avatar' ],
'$item_text' => $item_text ,
'$item_when' => relative_date ( $it [ 'created' ])
));
}
}
2014-07-22 00:36:20 +02:00
2011-12-01 07:26:02 +01:00
} else {
2014-07-22 00:36:20 +02:00
2011-12-01 07:26:02 +01:00
$notif_content = t ( 'No more personal notifications.' );
}
2014-07-22 00:36:20 +02:00
2012-12-25 19:48:02 +01:00
$o .= replace_macros ( $notif_tpl , array (
2012-02-24 02:37:03 +01:00
'$notif_header' => t ( 'Personal Notifications' ),
2012-12-26 18:42:01 +01:00
'$tabs' => $tabs ,
2011-12-01 07:26:02 +01:00
'$notif_content' => $notif_content ,
));
2014-07-22 00:36:20 +02:00
2011-12-01 07:26:02 +01:00
2011-10-07 08:25:08 +02:00
} else if (( $a -> argc > 1 ) && ( $a -> argv [ 1 ] == 'home' )) {
2014-07-22 00:36:20 +02:00
2011-10-07 08:25:08 +02:00
$notif_tpl = get_markup_template ( 'notifications.tpl' );
2014-07-22 00:36:20 +02:00
$r = q ( " SELECT `item`.`id`,`item`.`parent`, `item`.`verb`, `item`.`author-name`,
`item` . `author-link` , `item` . `author-avatar` , `item` . `created` , `item` . `object` as `object` ,
`pitem` . `author-name` as `pname` , `pitem` . `author-link` as `plink` , `pitem` . `guid` as `pguid`
2011-10-07 08:25:08 +02:00
FROM `item` INNER JOIN `item` as `pitem` ON `pitem` . `id` = `item` . `parent`
WHERE `item` . `unseen` = 1 AND `item` . `visible` = 1 AND
`item` . `deleted` = 0 AND `item` . `uid` = % d AND `item` . `wall` = 1 ORDER BY `item` . `created` DESC " ,
intval ( local_user ())
);
2014-07-22 00:36:20 +02:00
2011-10-07 08:25:08 +02:00
$tpl_item_likes = get_markup_template ( 'notifications_likes_item.tpl' );
$tpl_item_dislikes = get_markup_template ( 'notifications_dislikes_item.tpl' );
$tpl_item_friends = get_markup_template ( 'notifications_friends_item.tpl' );
$tpl_item_comments = get_markup_template ( 'notifications_comments_item.tpl' );
2014-07-22 00:36:20 +02:00
2011-10-07 08:25:08 +02:00
$notif_content = '' ;
2014-07-22 00:36:20 +02:00
2011-10-07 08:25:08 +02:00
if ( count ( $r ) > 0 ) {
2014-07-22 00:36:20 +02:00
2011-10-07 08:25:08 +02:00
foreach ( $r as $it ) {
switch ( $it [ 'verb' ]){
case ACTIVITY_LIKE :
$notif_content .= replace_macros ( $tpl_item_likes , array (
2014-07-22 00:36:20 +02:00
//'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
'$item_link' => $a -> get_baseurl ( true ) . '/display/' . $it [ 'pguid' ],
2011-10-07 08:25:08 +02:00
'$item_image' => $it [ 'author-avatar' ],
'$item_text' => sprintf ( t ( " %s liked %s's post " ), $it [ 'author-name' ], $it [ 'pname' ]),
'$item_when' => relative_date ( $it [ 'created' ])
));
break ;
case ACTIVITY_DISLIKE :
$notif_content .= replace_macros ( $tpl_item_dislikes , array (
2014-07-22 00:36:20 +02:00
//'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
'$item_link' => $a -> get_baseurl ( true ) . '/display/' . $it [ 'pguid' ],
2011-10-07 08:25:08 +02:00
'$item_image' => $it [ 'author-avatar' ],
2011-10-10 05:26:17 +02:00
'$item_text' => sprintf ( t ( " %s disliked %s's post " ), $it [ 'author-name' ], $it [ 'pname' ]),
2011-10-07 08:25:08 +02:00
'$item_when' => relative_date ( $it [ 'created' ])
));
break ;
case ACTIVITY_FRIEND :
2014-07-22 00:36:20 +02:00
2011-10-08 23:57:00 +02:00
$xmlhead = " < " . " ?xml version='1.0' encoding='UTF-8' ? " . " > " ;
$obj = parse_xml_string ( $xmlhead . $it [ 'object' ]);
$it [ 'fname' ] = $obj -> title ;
2014-07-22 00:36:20 +02:00
2011-10-07 08:25:08 +02:00
$notif_content .= replace_macros ( $tpl_item_friends , array (
2014-07-22 00:36:20 +02:00
//'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
'$item_link' => $a -> get_baseurl ( true ) . '/display/' . $it [ 'pguid' ],
2011-10-07 08:25:08 +02:00
'$item_image' => $it [ 'author-avatar' ],
2011-10-10 05:26:17 +02:00
'$item_text' => sprintf ( t ( " %s is now friends with %s " ), $it [ 'author-name' ], $it [ 'fname' ]),
2011-10-07 08:25:08 +02:00
'$item_when' => relative_date ( $it [ 'created' ])
));
break ;
default :
$notif_content .= replace_macros ( $tpl_item_comments , array (
2014-07-22 00:36:20 +02:00
//'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
'$item_link' => $a -> get_baseurl ( true ) . '/display/' . $it [ 'pguid' ],
2011-10-07 08:25:08 +02:00
'$item_image' => $it [ 'author-avatar' ],
2011-10-10 05:26:17 +02:00
'$item_text' => sprintf ( t ( " %s commented on %s's post " ), $it [ 'author-name' ], $it [ 'pname' ]),
2011-10-07 08:25:08 +02:00
'$item_when' => relative_date ( $it [ 'created' ])
));
}
}
2014-07-22 00:36:20 +02:00
2011-10-07 08:25:08 +02:00
} else {
2011-12-01 07:26:02 +01:00
$notif_content = t ( 'No more home notifications.' );
2011-10-07 08:25:08 +02:00
}
2014-07-22 00:36:20 +02:00
2012-12-25 19:48:02 +01:00
$o .= replace_macros ( $notif_tpl , array (
2012-02-24 02:37:03 +01:00
'$notif_header' => t ( 'Home Notifications' ),
2012-12-26 18:42:01 +01:00
'$tabs' => $tabs ,
2011-10-07 08:25:08 +02:00
'$notif_content' => $notif_content ,
));
2010-07-02 01:48:07 +02:00
}
2011-01-13 11:01:00 +01:00
$o .= paginate ( $a );
2010-07-02 01:48:07 +02:00
return $o ;
2011-01-04 14:46:08 +01:00
}