table_common_banned.php
1.58 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
<?php
/**
* [Discuz!] (C)2001-2099 Comsenz Inc.
* This is NOT a freeware, use is subject to license terms
*
* $Id: table_common_banned.php 27876 2012-02-16 04:28:02Z zhengqingpeng $
*/
if(!defined('IN_DISCUZ')) {
exit('Access Denied');
}
class table_common_banned extends discuz_table
{
public function __construct() {
$this->_table = 'common_banned';
$this->_pk = 'id';
parent::__construct();
}
public function fetch_by_ip($ip1, $ip2, $ip3, $ip4) {
return DB::fetch_first('SELECT * FROM %t WHERE (ip1=%d OR ip1=-1) AND (ip2=%d OR ip2=-1) AND (ip3=%d OR ip3=-1) AND (ip4=%d OR ip4=-1)', array($this->_table, $ip1, $ip2, $ip3, $ip4));
}
public function fetch_all_order_dateline() {
return DB::fetch_all('SELECT * FROM %t ORDER BY dateline', array($this->_table));
}
public function fetch_all() {
return DB::fetch_all('SELECT * FROM %t', array($this->_table));
}
public function delete_by_id($ids, $adminid, $adminname) {
$ids = array_map('intval', (array)$ids);
if($ids) {
return DB::query('DELETE FROM %t WHERE id IN(%n) AND (1=%d OR admin=%s)', array($this->_table, $ids, $adminid, $adminname));
}
return 0;
}
public function delete_by_expiration($expiration) {
return DB::query('DELETE FROM %t WHERE expiration<%d', array($this->_table, $expiration));
}
public function update_expiration_by_id($id, $expiration, $isadmin, $admin) {
return DB::query('UPDATE %t SET expiration=%d WHERE id=%d AND (1=%d OR admin=%s)', array($this->_table, $expiration, $id, $isadmin, $admin));
}
}
?>