streams/mod/notifications.php

429 lines
14 KiB
PHP
Raw Normal View History

2010-07-01 23:48:07 +00:00
<?php
function notifications_post(&$a) {
2010-08-16 04:49:29 +00:00
if(! local_user()) {
goaway(z_root());
2010-07-01 23:48:07 +00:00
}
2010-08-16 04:49:29 +00:00
$request_id = (($a->argc > 1) ? $a->argv[1] : 0);
2010-07-01 23:48:07 +00:00
if($request_id === "all")
2010-07-01 23:48:07 +00:00
return;
if($request_id) {
2011-06-27 04:55:24 +00:00
$r = q("SELECT * FROM `intro` WHERE `id` = %d AND `uid` = %d LIMIT 1",
intval($request_id),
intval(local_user())
2010-07-01 23:48:07 +00:00
);
if(count($r)) {
$intro_id = $r[0]['id'];
2010-11-07 00:01:57 +00:00
$contact_id = $r[0]['contact-id'];
2010-07-01 23:48:07 +00:00
}
else {
2010-08-16 04:49:29 +00:00
notice( t('Invalid request identifier.') . EOL);
2010-07-01 23:48:07 +00:00
return;
}
2011-06-27 04:55:24 +00: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 05:43:42 +00:00
if($_POST['submit'] == t('Discard')) {
2010-09-09 03:14:17 +00:00
$r = q("DELETE FROM `intro` WHERE `id` = %d LIMIT 1",
intval($intro_id)
);
2011-06-27 04:55:24 +00:00
if(! $fid) {
// 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
$r = q("DELETE FROM `contact` WHERE `id` = %d AND `uid` = %d AND `self` = 0 AND `blocked` = 1 AND `pending` = 1 LIMIT 1",
2011-06-27 04:55:24 +00:00
intval($contact_id),
intval(local_user())
);
}
2012-03-15 04:20:20 +00:00
goaway($a->get_baseurl(true) . '/notifications/intros');
2010-07-01 23:48:07 +00:00
}
2010-08-16 04:49:29 +00:00
if($_POST['submit'] == t('Ignore')) {
2010-07-01 23:48:07 +00:00
$r = q("UPDATE `intro` SET `ignore` = 1 WHERE `id` = %d LIMIT 1",
intval($intro_id));
2012-03-15 04:20:20 +00:00
goaway($a->get_baseurl(true) . '/notifications/intros');
2010-07-01 23:48:07 +00:00
}
}
}
function notifications_content(&$a) {
2010-08-16 04:49:29 +00:00
if(! local_user()) {
notice( t('Permission denied.') . EOL);
return;
2010-07-01 23:48:07 +00:00
}
2011-10-12 04:30:23 +00:00
nav_set_selected('notifications');
2010-08-16 04:49:29 +00:00
$o = '';
2013-07-22 00:45:36 +00:00
2011-10-10 15:01:14 +00:00
$tabs = array(
array(
'label' => t('System'),
2012-03-15 04:20:20 +00:00
'url'=>$a->get_baseurl(true) . '/notifications/system',
'sel'=> (($a->argv[1] == 'system') ? 'active' : ''),
),
2013-07-22 00:45:36 +00:00
// array(
// 'label' => t('Network'),
// 'url'=>$a->get_baseurl(true) . '/notifications/network',
// 'sel'=> (($a->argv[1] == 'network') ? 'active' : ''),
// ),
2011-12-01 06:26:02 +00:00
array(
'label' => t('Personal'),
2012-03-15 04:20:20 +00:00
'url'=>$a->get_baseurl(true) . '/notifications/personal',
2011-12-01 06:26:02 +00:00
'sel'=> (($a->argv[1] == 'personal') ? 'active' : ''),
),
2013-07-22 00:45:36 +00:00
// array(
// 'label' => t('Home'),
// 'url' => $a->get_baseurl(true) . '/notifications/home',
// 'sel'=> (($a->argv[1] == 'home') ? 'active' : ''),
// ),
2011-10-12 04:30:23 +00:00
array(
'label' => t('Introductions'),
2013-07-22 00:45:36 +00:00
'url' => $a->get_baseurl(true) . '/connections/pending',
2011-10-12 04:30:23 +00:00
'sel'=> (($a->argv[1] == 'intros') ? 'active' : ''),
),
array(
'label' => t('Messages'),
2012-03-15 04:20:20 +00:00
'url' => $a->get_baseurl(true) . '/message',
2011-10-12 04:30:23 +00:00
'sel'=> '',
),
2011-10-10 15:01:14 +00:00
);
2011-10-17 14:54:21 +00:00
$o = "";
2011-10-12 04:30:23 +00:00
2011-03-30 00:19:12 +00:00
if((argc() > 1) && (argv(1) == 'intros')) {
2011-10-12 04:30:23 +00:00
nav_set_selected('introductions');
$r = q("select * from abook left join xchan on abook_xchan = xchan_hash where uid = %d and (abook_flags & %d) and not (abook_flags & %d)",
intval(local_user()),
intval(ABOOK_FLAG_PENDING),
intval(ABOOK_FLAG_IGNORED)
);
2010-07-01 23:48:07 +00:00
if($r) {
// FIXME finish this
foreach($r as $rr) {
}
2010-07-01 23:48:07 +00:00
}
else
2011-12-01 06:26:02 +00:00
info( t('No introductions.') . EOL);
$o .= replace_macros($notif_tpl,array(
2011-10-12 04:30:23 +00:00
'$notif_header' => t('Notifications'),
2011-10-17 14:54:21 +00:00
'$tabs' => $tabs,
'$notif_content' => $notif_content,
));
// $o .= paginate($a);
return $o;
2013-07-22 00:45:36 +00:00
}
elseif (($a->argc > 1) && ($a->argv[1] == 'network')) {
$notif_tpl = get_markup_template('notifications.tpl');
$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`
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` = 0 ORDER BY `item`.`created` DESC" ,
intval(local_user())
);
$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');
$notif_content = '';
if (count($r) > 0) {
foreach ($r as $it) {
switch($it['verb']){
case ACTIVITY_LIKE:
$notif_content .= replace_macros($tpl_item_likes,array(
2012-03-15 04:20:20 +00:00
'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
'$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(
2012-03-15 04:20:20 +00:00
'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
'$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;
case ACTIVITY_FRIEND:
$xmlhead="<"."?xml version='1.0' encoding='UTF-8' ?".">";
$obj = parse_xml_string($xmlhead.$it['object']);
$it['fname'] = $obj->title;
$notif_content .= replace_macros($tpl_item_friends,array(
2012-03-15 04:20:20 +00:00
'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
'$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;
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(
2012-03-15 04:20:20 +00:00
'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
'$item_image' => $it['author-avatar'],
'$item_text' => $item_text,
'$item_when' => relative_date($it['created'])
));
}
}
} else {
2011-12-01 06:26:02 +00:00
$notif_content = t('No more network notifications.');
}
$o .= replace_macros($notif_tpl,array(
'$notif_header' => t('Network Notifications'),
2011-10-17 14:54:21 +00:00
'$tabs' => $tabs,
'$notif_content' => $notif_content,
));
} else if (($a->argc > 1) && ($a->argv[1] == 'system')) {
$notif_tpl = get_markup_template('notifications.tpl');
$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())
);
if (count($r) > 0) {
foreach ($r as $it) {
$notif_content .= replace_macros($not_tpl,array(
2012-03-15 04:20:20 +00:00
'$item_link' => $a->get_baseurl(true).'/notify/view/'. $it['id'],
'$item_image' => $it['photo'],
'$item_text' => strip_tags(bbcode($it['msg'])),
'$item_when' => relative_date($it['date'])
));
}
} else {
$notif_content .= t('No more system notifications.');
}
$o .= replace_macros($notif_tpl,array(
'$notif_header' => t('System Notifications'),
'$tabs' => $tabs,
'$notif_content' => $notif_content,
));
2011-12-01 06:26:02 +00:00
} else if (($a->argc > 1) && ($a->argv[1] == 'personal')) {
$notif_tpl = get_markup_template('notifications.tpl');
$myurl = $a->get_baseurl(true) . '/channel/'. $a->user['nickname'];
2011-12-01 06:26:02 +00:00
$myurl = substr($myurl,strpos($myurl,'://')+3);
$myurl = str_replace(array('www.','.'),array('','\\.'),$myurl);
$diasp_url = str_replace('/channel/','/u/',$myurl);
$sql_extra .= sprintf(" AND ( `item`.`author-link` regexp '%s' or `item`.`tag` regexp '%s' or `item`.`tag` regexp '%s' ) ",
2011-12-01 06:26:02 +00:00
dbesc($myurl . '$'),
dbesc($myurl . '\\]'),
dbesc($diasp_url . '\\]')
2011-12-01 06:26:02 +00: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`
FROM `item` INNER JOIN `item` as `pitem` ON `pitem`.`id`=`item`.`parent`
WHERE `item`.`unseen` = 1 AND `item`.`visible` = 1
$sql_extra
AND `item`.`deleted` = 0 AND `item`.`uid` = %d AND `item`.`wall` = 0 ORDER BY `item`.`created` DESC" ,
intval(local_user())
);
$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');
$notif_content = '';
if (count($r) > 0) {
foreach ($r as $it) {
switch($it['verb']){
case ACTIVITY_LIKE:
$notif_content .= replace_macros($tpl_item_likes,array(
2012-03-15 04:20:20 +00:00
'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
2011-12-01 06:26:02 +00: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(
2012-03-15 04:20:20 +00:00
'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
2011-12-01 06:26:02 +00: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;
case ACTIVITY_FRIEND:
$xmlhead="<"."?xml version='1.0' encoding='UTF-8' ?".">";
$obj = parse_xml_string($xmlhead.$it['object']);
$it['fname'] = $obj->title;
$notif_content .= replace_macros($tpl_item_friends,array(
2012-03-15 04:20:20 +00:00
'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
2011-12-01 06:26:02 +00: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;
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(
2012-03-15 04:20:20 +00:00
'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
2011-12-01 06:26:02 +00:00
'$item_image' => $it['author-avatar'],
'$item_text' => $item_text,
'$item_when' => relative_date($it['created'])
));
}
}
} else {
$notif_content = t('No more personal notifications.');
}
$o .= replace_macros($notif_tpl,array(
'$notif_header' => t('Personal Notifications'),
2011-12-01 06:26:02 +00:00
'$tabs' => $tabs,
'$notif_content' => $notif_content,
));
2013-07-22 00:45:36 +00:00
2011-12-01 06:26:02 +00:00
} else if (($a->argc > 1) && ($a->argv[1] == 'home')) {
$notif_tpl = get_markup_template('notifications.tpl');
$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`
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())
);
$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');
$notif_content = '';
if (count($r) > 0) {
foreach ($r as $it) {
switch($it['verb']){
case ACTIVITY_LIKE:
$notif_content .= replace_macros($tpl_item_likes,array(
2012-03-15 04:20:20 +00:00
'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
'$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(
2012-03-15 04:20:20 +00:00
'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
'$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;
case ACTIVITY_FRIEND:
$xmlhead="<"."?xml version='1.0' encoding='UTF-8' ?".">";
$obj = parse_xml_string($xmlhead.$it['object']);
$it['fname'] = $obj->title;
$notif_content .= replace_macros($tpl_item_friends,array(
2012-03-15 04:20:20 +00:00
'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
'$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;
default:
$notif_content .= replace_macros($tpl_item_comments,array(
2012-03-15 04:20:20 +00:00
'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
'$item_image' => $it['author-avatar'],
'$item_text' => sprintf( t("%s commented on %s's post"), $it['author-name'], $it['pname']),
'$item_when' => relative_date($it['created'])
));
}
}
} else {
2011-12-01 06:26:02 +00:00
$notif_content = t('No more home notifications.');
}
$o .= replace_macros($notif_tpl,array(
'$notif_header' => t('Home Notifications'),
2011-10-17 14:54:21 +00:00
'$tabs' => $tabs,
'$notif_content' => $notif_content,
));
2010-07-01 23:48:07 +00:00
}
2011-01-13 10:01:00 +00:00
$o .= paginate($a);
2010-07-01 23:48:07 +00:00
return $o;
}