PowerAction.class.php 10.3 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 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488
<?php
Class PowerAction extends CommonAction{
	public function _initialize()
	{
		parent::_initialize();
		$authcategory=C('POWER_CATEGORY');
		$this->assign('authcategory',$authcategory);
	}
	public function group()
	{
		$g=M('Authgroupf');
		$order['id']='asc';
		import('ORG.Util.Page');
		$count = $g->count();
		$pagenum=100;
		$Page = new Page($count,$pagenum);
		$nowPage = isset($_GET['p'])?$_GET['p']:0;
		$lists=$g->order($order)->page($nowPage.','.$Page->listRows)->select();
		foreach($lists as $k2 => $v2)
		{
			$lists[$k2]['rules']=explode(',',$v2['rules']);
		}
		
		$show = $Page->show();
		$this->assign('page',$show);
		$this->assign('lists',$lists);
		//所有规则
		$rules=$this->getRules();
		foreach($rules as $k => $v)
		{
			$newrules[$v['id']]=$v['title'];
		}
		$this->assign('rules',$newrules);
		$this->display();
	}
/**
 * 添加分组
**/
	public function addgroup()
	{
		if($this->isPost())
		{
			$g=D('Authgroupf');
			if($g->create())
			{
				foreach($g->rules as $k => $v)
				{
					$rules.=','.$v;
				}
				$g->rules=substr($rules,1);
				$lastid=$g->add();
				if($lastid)
					$this->success('分组添加成功!',U('group'));
				else
					$this->error('分组添加失败!');
			}
			else
			{
				$this->error($g->getError());
			}
		}
		else
		{
			$rules=$this->getRules();
			$this->assign('rules',$rules);
			$this->display();
		}
	}
/**
 * 修改分组
**/
	public function editgroup()
	{
		$g=D('Authgroupf');
		if($this->isPost())
		{
			if($g->create())
			{
				foreach($g->rules as $k => $v)
				{
					$rules.=','.$v;
				}
				$g->rules=substr($rules,1);
				$lastid=$g->save();
				if($lastid)
					$this->success('分组修改成功!',U('group'));
				else
					$this->error('分组修改失败!');
			}
			else
			{
				$this->error($g->getError());
			}
		}
		else
		{
			//规则
			$rules=$this->getRules();
			$this->assign('rules',$rules);
			//
			$id=$this->_get('id');
			$where['id']=array('eq',$id);
			$data=$g->where($where)->find();
			$this->assign('data',$data);
			$this->display();
		}
	}
/**
 * 删除分组
**/
	public function delgroup()
	{
		if($this->del($this->_get('id'),'Authgroupf'))
			$this->success('删除成功!',U('group'));
		else
			$this->error('删除失败!');
	}
/**
 * 获取所有规则/用户组
 * 返回规则信息
 * status=1 开启
**/
	public function getRules($table='Authrulef',$field='title,status,id,catid')
	{
		$r=M($table);
		if($table == 'Authrulef')
		{
			$order['catid']='asc';
			$order['sort']='asc';
		}
		$order['id']='asc';
		$where['status']=array('eq',1);
		$data=$r->order($order)->field($field)->where($where)->select();
		return $data;
	}
/**
 * 所有规则
**/
	public function rules()
	{
		$r=M('Authrulef');
		$order['catid']='asc';
		$order['sort']='asc';
		$order['id']='asc';
		$where=array();
		if(I('search')){
            $where['catid']=array('eq',I('search'));
            $this->assign('search',I('search'));
        }
		$field="";
		$data = $this->_getLists($r,$where,$order,$field,12,'Pages3',array('header'=>'<li style="border:none;">共%totalRows%条记录','pages'=>'%nowPage%/%totalPages%页 </li>','prev'=>'<上一页','next'=>'下一页>','first'=>'首页','last'=>'尾页','theme'=>'%header% %pages% %prePage% %linkPage% %nextPage% %end%'));
		$this->assign('lists',$data['list']?$data['list']:array());	//列表
		$this->assign('page',$data['page']);
		$this->assign('p',$data['p']);
		$this->assign('empty','<tr><td colspan="15" style="padding-left:15px;font-size:14px;">暂无相关信息!</td></tr>');
		$this->display();
	}
/**
 * 添加规则
**/
	public function addrule()
	{
		if($this->isPost())
		{
			$r=D('Authrulef');
			if(!$r->create())
			{
				$this->error($r->getError());
			}
			else
			{
				if(!$r->sort)
				{
					$m_where['catid']=array('eq',$r->catid);
					$max=$r->where($m_where)->max('sort');
					$r->sort=$max+1;
				}
				$lastid=$r->add();
				if($lastid)
				{
					$this->success('规则添加成功',U('rules'));
				}
				else
				{
					$this->error('规则添加失败');
				}
			}
		}
		else
		{
			$this->display();
		}
	}
/**
 * 修改规则
**/
	public function editrule()
	{
		$r=D('Authrulef');
		if($this->isPost())
		{
			
			if(!$r->create())
			{
				$this->error($r->getError());
			}
			else
			{
				$lastid=$r->save();
				if($lastid)
				{
					$this->success('规则修改成功',U('rules',array('p'=>I('p'),'search'=>I('search'))));
				}
				else
				{
					$this->error('规则修改失败');
				}
			}
		}
		else
		{
			$where['id']=array('eq',$this->_get('id'));
			$data=$r->where($where)->find();
			$this->assign('data',$data);
			$this->assign('p',I('p','1'));
			$this->assign('search',I('search'));
			$this->display();
		}
	}
/**
 * 删除规则
**/
	public function delrule()
	{
		if($this->del($this->_get('id')))
			$this->success('删除成功!',U('rules',array('p'=>I('p'),'search'=>I('search'))));
		else
			$this->error('删除失败!');
	}
/**
 * 删除全部规则
**/
	public function delallrule()
	{
		$table="Authrulef";
		$ids=explode(',', $this->_get('id'));
		foreach($ids as $key=>$vaule)
		{    
			if(!$this->del($vaule,$table))
			{
				$this->error('部分信息删除失败');
			}
		}
		$this->success('信息删除成功',U('rules'));
	}
/**
 * 修改规则
**/
	public function changeSort()
	{
		$table=$this->_post('table');
		$m=M($table);
		$where['id']=array('eq',$this->_post('id'));
		$f=$this->_post('f');
		$data[$f]=$this->_post('val');
		$count=$m->where($where)->data($data)->save();
		if($count)
		{
			$msg['success']=true;
			$msg['msg']=$this->_post('msg').'修改成功';
		}
		else
		{
			$msg['success']=false;
			$msg['msg']=$this->_post('msg').'修改失败';
		}
		echo json_encode($msg);
	}
/**
 * 共公删除
 * $table
**/
	private function del($id,$table='Authrulef')
	{
		$a=M($table);
		$where['id']=array('eq',$id);
		$count=$a->where($where)->delete();
		if($count)
			return true;
		else
			return false;
	}
/**
 * 修改分组开启属性
**/
	public function editattr()
	{
		$table=$this->_post('table');
		$m=M($table);
		$where['id']=array('eq',$this->_post('id'));
		$data['status']=$this->_post('status');
		$count=$m->where($where)->data($data)->save();
		if($count)
		{
			$msg['success']=true;
			$msg['msg']='状态已修改';
		}
		else
		{
			$msg['success']=false;
		}
		echo json_encode($msg);
	}
/**
 * 权限分配
 * uid 用户id
 * group_id 用户组id
**/
	public function fenpei()
	{
		$m=M('Authgroupaccessf');
		$order='id asc';
		// $where['uid']=array('neq','1');
		$list=$m->where($where)->order($order)->select();
		if($list)
		{
			foreach($list as $k => $v)
			{
				$list[$k]['username']=$this->getClassName($v['uid'],'Webuser','username');
				$list[$k]['group_id']=explode(',',$v['group_id']);
			}
		}
		$this->assign('lists',$list);
		// 所有用户组
		$groups=$this->getRules('Authgroupf','title,id');
		if($groups)
		{
			foreach($groups as $k2 => $v2)
			{
				$newgroups[$v2['id']]=$v2['title'];
			}
		}
		$this->assign('groups',$newgroups);
		$this->display();
	}
/**
 * 添加分配
 *
**/
	public function addfenpei()
	{
		if($this->isPost())
		{
			//查看会员是否已经分配用户组
			if($this->checkfenpei($this->_post('uid'),'uid','Authgroupaccessf')) $this->error('会员已经分配角色');
			//
			$f=M('Authgroupaccessf');
			if(!$f->create())
			{
				$this->error($f->getError());
			}
			else
			{
				/*foreach($f->group_id as $k => $v)
				{
					$group_id.=','.$v;
				}
				$f->group_id=substr($group_id,1);*/
				$lastid=$f->add();
				if($lastid)
					$this->success('分配成功',U('fenpei'));
				else
					$this->error('分配失败');
			}
		}
		else
		{
			//所有用户组
			$groups=$this->getRules('Authgroupf','title,id');
			$this->assign('groups',$groups);
			//所有会员
			$m=M('Webuser');
			$order='id asc';
			$where['id']=array('neq',1);
			$admin=$m->field('username,id')->where($where)->order($order)->select();
			$this->assign('admin',$admin);
			$this->display();	
		}
	}
/**
 * 修改分配
 *
**/
	public function editfenpei()
	{
		$f=M('Authgroupaccessf');
		if($this->isPost())
		{
			if(!$f->create())
			{
				$this->error($f->getError());
			}
			else
			{
				/*foreach($f->group_id as $k => $v)
				{
					$group_id.=','.$v;
				}
				$f->group_id=substr($group_id,1);*/
				$lastid=$f->save();
				if($lastid)
					$this->success('分配成功',U('fenpei'));
				else
					$this->error('分配失败');
			}
		}
		else
		{
			$where['id']=array('eq',$this->_get('id'));
			$data=$f->where($where)->find();
			$this->assign('data',$data);
			//所有用户组
			$groups=$this->getRules('Authgroupf','title,id');
			$this->assign('groups',$groups);
			//所有会员
			$m=M('Webuser');
			$order='id asc';
			// $admin=$m->field('username,id')->order($order)->select();
			$admin=$m->order($order)->getField('id,username');
			$this->assign('admin',$admin);
			$this->display();	
		}
	}
/**
 * 删除分配
 *
**/
	public function delfenpei(){
		if($this->del($this->_get('id'),'Authgroupaccessf'))
			$this->success('删除成功!',U('fenpei'));
		else
			$this->error('删除失败!');
	}
/**
 * 删除全部分配
**/
	public function delallfenpei()
	{
		$table="Authgroupaccessf";
		$ids=explode(',', $this->_get('id'));
		foreach($ids as $key=>$vaule)
		{    
			if(!$this->del($vaule,$table))
			{
				$this->error('部分信息删除失败');
			}
		}
		$this->success('信息删除成功',U('fenpei'));
	}
/**
 * 查看是否已经分配
 * $table 表名
 * $field 字段名
 * $id 传来的数值
**/
	private function checkfenpei($id,$field,$table='Authgroupaccessf')
	{
		$m=M($table);
		$where[$field]=array('eq',$id);
		$count=$m->where($where)->count();
		if($count)
			return true;
		else
			return false;
	}
/**
 * 获取规则名称/会员名/用户组名......
 * $id 分类id
 * $table 表名
 * $typename 字段名
**/
	private function getClassName($id,$table='Authrulef',$field='title')
	{
		$data=M($table)->field($field)->where('id='.$id)->find();
		return $data;
	}
}
?>