table_home_follow_feed.php
3.46 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
<?php
/**
 *      [Discuz!] (C)2001-2099 Comsenz Inc.
 *      This is NOT a freeware, use is subject to license terms
 *
 *      $Id: table_home_follow_feed.php 28364 2012-02-28 07:31:23Z zhengqingpeng $
 */
if(!defined('IN_DISCUZ')) {
	exit('Access Denied');
}
class table_home_follow_feed extends discuz_table
{
	private $_ids = array();
	private $_cids = array();
	private $_tids = array();
	private $_archiver_table = 'home_follow_feed_archiver';
	public function __construct() {
		$this->_table = 'home_follow_feed';
		$this->_pk    = 'feedid';
		parent::__construct();
	}
	public function fetch_all_by_uid($uids = 0, $archiver = false, $start = 0, $limit = 0) {
		$data = array();
		$parameter = array($archiver ? $this->_archiver_table : $this->_table);
		$wherearr = array();
		if(!empty($uids)) {
			$uids = dintval($uids, true);
			$wherearr[] = is_array($uids) && $uids ? 'uid IN(%n)' : 'uid=%d';
			$parameter[] = $uids;
		}
		$wheresql = !empty($wherearr) ? ' WHERE '.implode(' AND ', $wherearr) : '';
		$query = DB::query("SELECT * FROM %t $wheresql ORDER BY dateline DESC ".DB::limit($start, $limit), $parameter);
		while($row = DB::fetch($query)) {
			$data[$row['feedid']] = $row;
			$this->_tids[$row['tid']] = $row['tid'];
		}
		return $data;
	}
	public function fetch_all_by_dateline($dateline, $glue = '>=') {
		$glue = helper_util::check_glue($glue);
		return DB::fetch_all("SELECT * FROM %t WHERE dateline{$glue}%d ORDER BY dateline", array($this->_table, $dateline), $this->_pk);
	}
	public function fetch_by_feedid($feedid, $archiver = false) {
		return DB::fetch_first("SELECT * FROM %t WHERE feedid=%d", array($archiver ? $this->_archiver_table : $this->_table, $feedid));
	}
	public function count_by_uid_tid($uid, $tid, $archiver = false) {
		return DB::result_first('SELECT COUNT(*) FROM %t WHERE uid=%d AND tid=%d', array($archiver ? $this->_archiver_table : $this->_table, $uid, $tid));
	}
	public function count_by_uid_dateline($uids = array(), $dateline = 0, $archiver = 0) {
		$count = 0;
		$parameter = array($archiver ? $this->_archiver_table : $this->_table);
		$wherearr = array();
		if(!empty($uids)) {
			$uids = dintval($uids, true);
			$wherearr[] = is_array($uids) && $uids ? 'uid IN(%n)' : 'uid=%d';
			$parameter[] = $uids;
		}
		if($dateline) {
			$wherearr[] = "dateline>%d";
			$parameter[] = $dateline;
		}
		$wheresql = !empty($wherearr) && is_array($wherearr) ? ' WHERE '.implode(' AND ', $wherearr) : '';
		$count = DB::result_first("SELECT COUNT(*) FROM %t $wheresql", $parameter);
		return $count;
	}
	public function insert_archiver($data) {
		if(!empty($data) && is_array($data)) {
			return DB::insert($this->_archiver_table, $data, false, true);
		}
		return 0;
	}
	public function delete_by_feedid($feedid, $archiver = false) {
		$feedid = dintval($feedid, true);
		if($feedid) {
			return DB::delete($archiver ? $this->_archiver_table : $this->_table, DB::field('feedid', $feedid));
		}
		return 0;
	}
	public function delete_by_uid($uids) {
		$uids = dintval($uids, true);
		$delnum = 0;
		if($uids) {
			$delnum = DB::delete($this->_table, DB::field('uid', $uids));
			$delnum += DB::delete($this->_archiver_table, DB::field('uid', $uids));
		}
		return $delnum;
	}
	public function get_ids() {
		return $this->_ids;
	}
	public function get_tids() {
		return $this->_tids;
	}
	public function get_cids() {
		return $this->_cids;
	}
}
?>