2016-12-30 15:55:50 +00:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* @link http://www.kalcaddle.com/
|
|
|
|
* @author warlee | e-mail:kalcaddle@qq.com
|
|
|
|
* @copyright warlee 2014.(Shanghai)Co.,Ltd
|
|
|
|
* @license http://kalcaddle.com/tools/licenses/license.txt
|
|
|
|
*/
|
|
|
|
|
|
|
|
class system_role extends Controller{
|
|
|
|
public static $static_sql = null;
|
|
|
|
private $sql;
|
|
|
|
function __construct(){
|
|
|
|
parent::__construct();
|
|
|
|
$this->sql= self::load_data();
|
|
|
|
}
|
|
|
|
|
|
|
|
//保证只加载一次文件
|
|
|
|
public static function load_data(){
|
|
|
|
if(is_null(self::$static_sql)){
|
|
|
|
self::$static_sql = system_rol_data();
|
|
|
|
}
|
|
|
|
return self::$static_sql;
|
|
|
|
}
|
|
|
|
public static function get_info($the_id){
|
|
|
|
$sql = self::load_data();
|
|
|
|
return $sql->get($the_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//获取所有权限组
|
|
|
|
public function get() {
|
|
|
|
show_json($this->sql->get());
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* 权限添加
|
|
|
|
*/
|
|
|
|
public function add(){
|
|
|
|
$role = $this->_init_data();
|
|
|
|
$role['role_id'] = $this->sql->get_max_id().'';
|
|
|
|
if ($this->sql->set($role['role_id'],$role)) {
|
|
|
|
show_json($this->L['success'],true,$role['role_id']);
|
|
|
|
}
|
|
|
|
show_json($this->L['error'],false);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 编辑
|
|
|
|
*/
|
|
|
|
public function edit(){
|
|
|
|
$role = $this->_init_data();
|
|
|
|
$role_id = $this->in['role_id'];
|
|
|
|
if ($this->sql->set($role_id,$role)){
|
|
|
|
show_json($this->L['success'],true,$role_id);
|
|
|
|
}
|
|
|
|
show_json($this->L['error'],false);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 删除
|
|
|
|
*/
|
|
|
|
public function del() {
|
|
|
|
if (!isset($this->in['role_id'])) show_json($this->L["data_not_full"],false);
|
|
|
|
if (strlen($this->in['role_id']) <= 1) show_json($this->L['default_user_can_not_do'],false);
|
|
|
|
system_member::role_remove_user_update($this->in['role_id']);//用户所在权限组变更
|
|
|
|
if($this->sql->remove($this->in['role_id'])){
|
|
|
|
show_json($this->L['success']);
|
|
|
|
}
|
|
|
|
show_json($this->L['error'],false);
|
|
|
|
}
|
|
|
|
|
|
|
|
//===========内部调用============
|
|
|
|
/**
|
|
|
|
* 初始化数据 get
|
|
|
|
* 只传键即可 &ext_not_allow='php,jsp'&explorer:mkfile=1&explorer:pathRname=1
|
|
|
|
*/
|
|
|
|
private function _init_data(){
|
|
|
|
if (strlen($this->in['name'])<1) show_json($this->L["groupname_can_not_null"],false);
|
|
|
|
|
|
|
|
$role_arr = array('name'=>rawurldecode($this->in['name']));
|
|
|
|
$role_arr['ext_not_allow'] = $this->in['ext_not_allow'];
|
|
|
|
foreach ($this->config['role_setting'] as $key => $actions) {
|
|
|
|
foreach ($actions as $action) {
|
|
|
|
$k = $key.':'.$action;
|
|
|
|
if (isset($this->in[$k])){
|
|
|
|
$role_arr[$k] = 1;
|
|
|
|
}else{
|
|
|
|
$role_arr[$k] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $role_arr;
|
|
|
|
}
|
|
|
|
}
|