First commit
This commit is contained in:
144
source/class/table/table_common_block_permission.php
Normal file
144
source/class/table/table_common_block_permission.php
Normal file
@@ -0,0 +1,144 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* [Discuz!] (C)2001-2099 Comsenz Inc.
|
||||
* This is NOT a freeware, use is subject to license terms
|
||||
*
|
||||
* $Id: table_common_block_permission.php 27846 2012-02-15 09:04:33Z zhangguosheng $
|
||||
*/
|
||||
|
||||
if(!defined('IN_DISCUZ')) {
|
||||
exit('Access Denied');
|
||||
}
|
||||
|
||||
class table_common_block_permission extends discuz_table
|
||||
{
|
||||
public function __construct() {
|
||||
|
||||
$this->_table = 'common_block_permission';
|
||||
$this->_pk = '';
|
||||
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
public function fetch($id, $force_from_db = false) {
|
||||
if (defined('DISCUZ_DEPRECATED')) {
|
||||
throw new Exception('NotImplementedException');
|
||||
return parent::fetch($id, $force_from_db);
|
||||
} else {
|
||||
$force_from_db = $force_from_db === false ? 0 : $force_from_db;
|
||||
return $this->fetch_by_bid_uid($id, $force_from_db);
|
||||
}
|
||||
}
|
||||
|
||||
public function fetch_by_bid_uid($bid, $uid){
|
||||
return ($bid = dintval($bid)) && ($uid = dintval($uid)) ? DB::fetch_first('SELECT * FROM %t WHERE bid=%d AND uid=%d', array($this->_table, $bid, $uid)) : array();
|
||||
}
|
||||
|
||||
public function fetch_all_by_bid($bid, $uid = 0) {
|
||||
return ($bid = dintval($bid, true)) ? DB::fetch_all('SELECT * FROM %t WHERE bid=%d'.($uid ? ' AND '.DB::field('uid', $uid) : '').' ORDER BY inheritedtplname', array($this->_table, $bid), 'uid') : array();
|
||||
}
|
||||
|
||||
|
||||
public function fetch_all_by_uid($uids, $flag = true, $sort = 'ASC', $start = 0, $limit = 0) {
|
||||
$wherearr = array();
|
||||
$sort = $sort === 'ASC' ? 'ASC' : 'DESC';
|
||||
if(($uids = dintval($uids))) {
|
||||
$wherearr[] = DB::field('uid', $uids);
|
||||
}
|
||||
if(!$flag) {
|
||||
$wherearr[] = 'inheritedtplname = \'\'';
|
||||
}
|
||||
$where = $wherearr ? ' WHERE '.implode(' AND ', $wherearr) : '';
|
||||
return DB::fetch_all('SELECT * FROM '.DB::table($this->_table).$where.' ORDER BY uid '.$sort.', inheritedtplname'.DB::limit($start, $limit), NULL, ($uids && !is_array($uids)) ? 'bid' : '');
|
||||
}
|
||||
|
||||
public function count_by_uids($uids, $flag) {
|
||||
$wherearr = array();
|
||||
if(($uids = dintval($uids, true))) {
|
||||
$wherearr[] = DB::field('uid', $uids);
|
||||
}
|
||||
if(!$flag) {
|
||||
$wherearr[] = 'inheritedtplname = \'\'';
|
||||
}
|
||||
$where = $wherearr ? ' WHERE '.implode(' AND ', $wherearr) : '';
|
||||
return DB::result_first('SELECT COUNT(*) FROM '.DB::table($this->_table).$where);
|
||||
}
|
||||
|
||||
public function fetch_permission_by_uid($uids) {
|
||||
return ($uids = dintval($uids, true)) ? DB::fetch_all('SELECT uid, sum(allowmanage) as allowmanage, sum(allowrecommend) as allowrecommend, sum(needverify) as needverify FROM '.DB::table($this->_table)." WHERE ".DB::field('uid', $uids)." GROUP BY uid", null, 'uid') : array();
|
||||
}
|
||||
|
||||
public function delete_by_bid_uid_inheritedtplname($bid = false, $uids = false, $inheritedtplname = false) {
|
||||
$wherearr = array();
|
||||
if(($bid = dintval($bid, true))) {
|
||||
$wherearr[] = DB::field('bid', $bid);
|
||||
}
|
||||
if(($uids = dintval($uids, true))) {
|
||||
$wherearr[] = DB::field('uid', $uids);
|
||||
}
|
||||
if($inheritedtplname === true) {
|
||||
$wherearr[] = "inheritedtplname!=''";
|
||||
} elseif($inheritedtplname !== false && is_string($inheritedtplname)) {
|
||||
$wherearr[] = DB::field('inheritedtplname', $inheritedtplname);
|
||||
}
|
||||
return $wherearr ? DB::delete($this->_table, implode(' AND ', $wherearr)) : false;
|
||||
}
|
||||
|
||||
|
||||
public function insert_batch($users, $bids, $tplname = '') {
|
||||
$blockperms = array();
|
||||
if(!empty($users) && $bids = dintval($bids, true)){
|
||||
|
||||
$uids = $notinherit = array();
|
||||
foreach($users as &$user) {
|
||||
if(($user['uid'] = dintval($user['uid']))) {
|
||||
$uids[] = $user['uid'];
|
||||
}
|
||||
}
|
||||
if(!empty($uids)) {
|
||||
foreach($this->fetch_all_by_uid($uids, false) as $value) {
|
||||
if(in_array($value['bid'], $bids)) {
|
||||
$notinherit[$value['bid']][$value['uid']] = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
foreach($users as $user) {
|
||||
if($user['uid']) {
|
||||
$tplname = !empty($user['inheritedtplname']) ? $user['inheritedtplname'] : $tplname;
|
||||
foreach ($bids as $bid) {
|
||||
if(empty($notinherit[$bid][$user['uid']])) {
|
||||
$blockperms[] = "('$bid','{$user['uid']}','{$user['allowmanage']}','{$user['allowrecommend']}','{$user['needverify']}','$tplname')";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
if($blockperms) {
|
||||
DB::query('REPLACE INTO '.DB::table($this->_table).' (bid,uid,allowmanage,allowrecommend,needverify,inheritedtplname) VALUES '.implode(',', $blockperms));
|
||||
return $uids;
|
||||
} else {
|
||||
return FALSE;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
public function insert_by_bid($bid, $users) {
|
||||
$sqlarr = $uids = array();
|
||||
$bid = intval($bid);
|
||||
if(!empty($bid) && !empty($users)) {
|
||||
foreach ($users as $v) {
|
||||
if(($v['uid'] = dintval($v['uid']))) {
|
||||
$sqlarr[] = "('$bid','{$v['uid']}','{$v['allowmanage']}','{$v['allowrecommend']}','{$v['needverify']}','')";
|
||||
$uids[] = $v['uid'];
|
||||
}
|
||||
}
|
||||
if(!empty($sqlarr)) {
|
||||
DB::query('REPLACE INTO '.DB::table($this->_table).' (bid,uid,allowmanage,allowrecommend,needverify,inheritedtplname) VALUES '.implode(',', $sqlarr));
|
||||
}
|
||||
}
|
||||
return $uids;
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
Reference in New Issue
Block a user