table_home_album.php
6.01 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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
<?php
/**
* [Discuz!] (C)2001-2099 Comsenz Inc.
* This is NOT a freeware, use is subject to license terms
*
* $Id: table_home_album.php 28041 2012-02-21 07:33:55Z chenmengshu $
*/
if(!defined('IN_DISCUZ')) {
exit('Access Denied');
}
class table_home_album extends discuz_table
{
public function __construct() {
$this->_table = 'home_album';
$this->_pk = 'albumid';
parent::__construct();
}
public function count_by_catid($catid) {
return DB::result_first('SELECT COUNT(*) FROM %t WHERE catid = %d', array($this->_table, $catid));
}
public function count_by_uid($uid) {
return DB::result_first('SELECT COUNT(*) FROM %t WHERE uid = %d', array($this->_table, $uid));
}
public function update_num_by_albumid($albumid, $inc, $field = 'picnum', $uid = '') {
if(!in_array($field, array('picnum', 'favtimes', 'sharetimes'))) {
return null;
}
$parameter = array($this->_table, $inc, $albumid);
if($uid) {
$parameter[] = $uid;
$uidsql = ' AND uid = %d';
}
return DB::query('UPDATE %t SET '.$field.'='.$field.'+\'%d\' WHERE albumid=%d '.$uidsql, $parameter);
}
public function delete_by_uid($uid) {
if(!$uid) {
return null;
}
return DB::delete($this->_table, DB::field('uid', $uid));
}
public function update_by_catid($catid, $data) {
if(!is_array($data) || empty($data)) {
return null;
}
return DB::update($this->_table, $data, DB::field('catid', $catid));
}
public function fetch_uid_by_username($users) {
if(!$users) {
return null;
}
return DB::fetch_all('SELECT uid FROM %t WHERE username IN (%n)', array($this->_table, $users), 'uid');
}
public function fetch_albumid_by_albumname_uid($albumname, $uid) {
return DB::result_first('SELECT albumid FROM %t WHERE albumname=%s AND uid=%d', array($this->_table, $albumname, $uid));
}
public function fetch_albumid_by_searchkey($searchkey, $limit) {
return DB::fetch_all('SELECT albumid FROM %t WHERE 1 %i ORDER BY albumid DESC %i', array($this->_table, $searchkey, DB::limit(0, $limit)));
}
public function fetch_uid_by_uid($uid) {
if(!is_array($uid)) {
$uid = explode(',', $uid);
}
if(!$uid) {
return null;
}
return DB::fetch_all('SELECT uid FROM %t WHERE uid IN (%n)', array($this->_table, $uid), 'uid');
}
public function fetch($albumid, $uid = '') {
$data = $this->fetch_all_by_uid($uid, false, 0, 0, $albumid);
return $data[0];
}
public function fetch_all($albumids, $order = false, $start = 0, $limit = 0) {
return $this->fetch_all_by_uid('', $order, $start, $limit, $albumids);
}
public function fetch_all_by_uid($uid, $order = false, $start = 0, $limit = 0, $albumid = '') {
$parameter = array($this->_table);
$wherearr = array();
if($albumid) {
$wherearr[] = DB::field('albumid', $albumid);
}
if($uid) {
$wherearr[] = DB::field('uid', $uid);
}
if(is_string($order) && $order = DB::order($order, 'DESC')) {
$ordersql = ' ORDER BY '.$order;
}
if($limit) {
$parameter[] = DB::limit($start, $limit);
$ordersql .= ' %i';
}
$wheresql = !empty($wherearr) && is_array($wherearr) ? ' WHERE '.implode(' AND ', $wherearr) : '';
if(empty($wheresql)) {
return null;
}
return DB::fetch_all('SELECT * FROM %t '.$wheresql.$ordersql, $parameter);
}
public function fetch_all_by_block($aids, $bannedids, $uids, $catid, $startrow, $items, $orderby) {
$wheres = array();
if($aids) {
$wheres[] = DB::field('albumid', $aids, 'in');
}
if($bannedids) {
$wheres[] = DB::field('albumid', $bannedids, 'notin');
}
if($uids) {
$wheres[] = DB::field('uid', $uids, 'in');
}
if($catid && !in_array('0', $catid)) {
$wheres[] = DB::field('catid', $catid, 'in');
}
$wheres[] = "friend = '0'";
$wheresql = $wheres ? implode(' AND ', $wheres) : '1';
if(!in_array($orderby, array('dateline', 'picnum', 'updatetime'))) {
$orderby = 'dateline';
}
return DB::fetch_all('SELECT * FROM '.DB::table($this->_table).' WHERE '.$wheresql.' ORDER BY '.DB::order($orderby, 'DESC').DB::limit($startrow, $items));
}
public function fetch_all_by_search($fetchtype, $uids, $albumname, $searchname, $catid, $starttime, $endtime, $albumids, $friend = '', $orderfield = '', $ordersort = 'DESC', $start = 0, $limit = 0, $findex = '') {
$parameter = array($this->_table);
$wherearr = array();
if(is_array($uids) && count($uids)) {
$parameter[] = $uids;
$wherearr[] = 'uid IN(%n)';
}
if($albumname) {
if($searchname == false) {
$parameter[] = $albumname;
$wherearr[] = 'albumname=%s';
} else {
$parameter[] = '%'.$albumname.'%';
$wherearr[] = 'albumname LIKE %s';
}
}
if($catid) {
$parameter[] = $catid;
$wherearr[] = 'catid=%d';
}
if($starttime) {
$parameter[] = is_numeric($starttime) ? $starttime : strtotime($starttime);
$wherearr[] = 'dateline>%d';
}
if($endtime) {
$parameter[] = is_numeric($endtime) ? $endtime : strtotime($endtime);
$wherearr[] = 'dateline<%d';
}
if(is_numeric($friend)) {
$parameter[] = $friend;
$wherearr[] = 'friend=%d';
}
if(is_array($albumids) && count($albumids)) {
$parameter[] = $albumids;
$wherearr[] = 'albumid IN(%n)';
}
if($fetchtype == 3) {
$selectfield = "count(*)";
} elseif ($fetchtype == 2) {
$selectfield = "albumid";
} else {
$selectfield = "*";
if(is_string($orderfield) && $order = DB::order($orderfield, $ordersort)) {
$ordersql = 'ORDER BY '.$order;
}
if($limit) {
$parameter[] = DB::limit($start, $limit);
$ordersql .= ' %i';
}
}
if($findex) {
$findex = 'USE INDEX(updatetime)';
}
$wheresql = !empty($wherearr) && is_array($wherearr) ? ' WHERE '.implode(' AND ', $wherearr) : '';
if($fetchtype == 3) {
return DB::result_first("SELECT $selectfield FROM %t $wheresql", $parameter);
} else {
return DB::fetch_all("SELECT $selectfield FROM %t {$findex} $wheresql $ordersql", $parameter);
}
}
}
?>