space_notice.php
4.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<?php
/**
* [Discuz!] (C)2001-2099 Comsenz Inc.
* This is NOT a freeware, use is subject to license terms
*
* $Id: space_notice.php 34047 2013-09-25 04:41:45Z nemohou $
*/
if(!defined('IN_DISCUZ')) {
exit('Access Denied');
}
$perpage = 30;
$perpage = mob_perpage($perpage);
$page = empty($_GET['page'])?0:intval($_GET['page']);
if($page<1) $page = 1;
$start = ($page-1)*$perpage;
ckstart($start, $perpage);
$list = array();
$mynotice = $count = 0;
$multi = '';
if(empty($_G['member']['category_num']['manage']) && !in_array($_G['adminid'], array(1,2,3))) {
unset($_G['notice_structure']['manage']);
}
$view = (!empty($_GET['view']) && (isset($_G['notice_structure'][$_GET[view]]) || in_array($_GET['view'], array('userapp'))))?$_GET['view']:'mypost';
$actives = array($view=>' class="a"');
$opactives[$view] = 'class="a"';
$categorynum = $newprompt = array();
if($view == 'userapp') {
space_merge($space, 'status');
if($_GET['op'] == 'del') {
$appid = intval($_GET['appid']);
C::t('common_myinvite')->delete_by_appid_touid($appid, $_G['uid']);
showmessage('do_success', "home.php?mod=space&do=notice&view=userapp&quickforward=1");
}
$filtrate = 0;
$count = 0;
$apparr = array();
$type = intval($_GET['type']);
foreach(C::t('common_myinvite')->fetch_all_by_touid($_G['uid']) as $value) {
$count++;
$key = md5($value['typename'].$value['type']);
$apparr[$key][] = $value;
if($filtrate) {
$filtrate--;
} else {
if($count < $perpage) {
if($type && $value['appid'] == $type) {
$list[$key][] = $value;
} elseif(!$type) {
$list[$key][] = $value;
}
}
}
}
$mynotice = $count;
} else {
if(!empty($_GET['ignore'])) {
C::t('home_notification')->ignore($_G['uid']);
}
foreach (array('wall', 'piccomment', 'blogcomment', 'clickblog', 'clickpic', 'sharecomment', 'doing', 'friend', 'credit', 'bbs', 'system', 'thread', 'task', 'group') as $key) {
$noticetypes[$key] = lang('notification', "type_$key");
}
$isread = in_array($_GET['isread'], array(0, 1)) ? intval($_GET['isread']) : 0;
$category = $type = '';
if(isset($_G['notice_structure'][$view])) {
if(!in_array($view, array('mypost', 'interactive'))) {
$category = $view;
} else {
$deftype = $_G['notice_structure'][$view][0];
if($_G['member']['newprompt_num']) {
foreach($_G['notice_structure'][$view] as $subtype) {
if($_G['member']['newprompt_num'][$subtype]) {
$deftype = $subtype;
break;
}
}
}
$type = in_array($_GET['type'], $_G['notice_structure'][$view]) ? trim($_GET['type']) : $deftype;
}
}
$wherearr = array();
$new = -1;
if(!empty($type)) {
$wherearr[] = "`type`='$type'";
}
$sql = ' AND '.implode(' AND ', $wherearr);
$newnotify = false;
$count = C::t('home_notification')->count_by_uid($_G['uid'], $new, $type, $category);
if($count) {
if($new == 1 && $perpage == 30) {
$perpage = 200;
}
foreach(C::t('home_notification')->fetch_all_by_uid($_G['uid'], $new, $type, $start, $perpage, $category) as $value) {
if($value['new']) {
$newnotify = true;
$value['style'] = 'color:#000;font-weight:bold;';
} else {
$value['style'] = '';
}
$value['rowid'] = '';
if(in_array($value['type'], array('friend', 'poke'))) {
$value['rowid'] = ' id="'.($value['type'] == 'friend' ? 'pendingFriend_' : 'pokeQuery_').$value['authorid'].'" ';
}
if($value['from_num'] > 0) $value['from_num'] = $value['from_num'] - 1;
$list[$value['id']] = $value;
}
$multi = '';
$multi = multi($count, $perpage, $page, "home.php?mod=space&do=$do&isread=1");
}
if($newnotify) {
C::t('home_notification')->ignore($_G['uid'], $type, $category, true, true);
if($_G['setting']['cloud_status']) {
$noticeService = Cloud::loadClass('Service_Client_Notification');
$noticeService->setNoticeFlag($_G['uid'], TIMESTAMP);
}
}
helper_notification::update_newprompt($_G['uid'], ($type ? $type : $category));
if($_G['setting']['my_app_status']) {
$mynotice = C::t('common_myinvite')->count_by_touid($_G['uid']);
}
if($_G['member']['newprompt']) {
$recountprompt = 0;
foreach($_G['member']['category_num'] as $promptnum) {
$recountprompt += $promptnum;
}
$recountprompt += $mynotice;
if($recountprompt == 0) {
C::t('common_member')->update($_G['uid'], array('newprompt' => 0));
}
}
$readtag = array($type => ' class="a"');
}
dsetcookie('promptstate_'.$_G['uid'], $newprompt, 31536000);
include_once template("diy:home/space_notice");
?>