Home php教程 php手册 thinkPHP 3.1.3 Auth权限修改版

thinkPHP 3.1.3 Auth权限修改版

Jun 07, 2016 am 11:41 AM

thinkPHP 3.1.3 Auth权限修改版,支持只验证规则表有的数据!

这是我发布的问题:http://www.thinkphp.cn/topic/16890.html

视乎没什么好方法满足我的要求了,无奈打开Auth.class.php来修改!

我的QQ:171313244
我很无奈只能修改了,原作者我实在没办法啊!<?php <br /> // +----------------------------------------------------------------------<br> // | ThinkPHP [ WE CAN DO IT JUST THINK IT ]<br> // +----------------------------------------------------------------------<br> // | Copyright (c) 2011 http://thinkphp.cn All rights reserved.<br> // +----------------------------------------------------------------------<br> // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )<br> // +----------------------------------------------------------------------<br> // | Author: luofei614 <weibo.com> <br> // +----------------------------------------------------------------------<br> /**<br>  * 权限认证类<br>  * 功能特性:<br>  * 1,是对规则进行认证,不是对节点进行认证。用户可以把节点当作规则名称实现对节点进行认证。<br>  *      $auth=new Auth();  $auth->check('规则名称','用户id')<br>  * 2,可以同时对多条规则进行认证,并设置多条规则的关系(or或者and)<br>  *      $auth=new Auth();  $auth->check('规则1,规则2','用户id','and') <br>  *      第三个参数为and时表示,用户需要同时具有规则1和规则2的权限。 当第三个参数为or时,表示用户值需要具备其中一个条件即可。默认为or<br>  * 3,一个用户可以属于多个用户组(think_auth_group_access表 定义了用户所属用户组)。我们需要设置每个用户组拥有哪些规则(think_auth_group 定义了用户组权限)<br>  * <br>  * 4,支持规则表达式。<br>  *      在think_auth_rule 表中定义一条规则时,如果type为1, condition字段就可以定义规则表达式。 如定义{score}>5  and {score}  * @category ORG<br>  * @package ORG<br>  * @subpackage Util<br>  * @author luofei614<weibo.com><br>  */<br> <br> //数据库<br> /*<br> -- ----------------------------<br> -- think_auth_rule,规则表,<br> -- id:主键,name:规则唯一标识, title:规则中文名称 status 状态:为1正常,为0禁用,condition:规则表达式,为空表示存在就验证,不为空表示按照条件验证<br> -- ----------------------------<br>  DROP TABLE IF EXISTS `think_auth_rule`;<br> CREATE TABLE `think_auth_rule` (  <br>     `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,  <br>     `name` char(80) NOT NULL DEFAULT '',  <br>     `title` char(20) NOT NULL DEFAULT '',  <br>     `status` tinyint(1) NOT NULL DEFAULT '1',  <br>     `condition` char(100) NOT NULL DEFAULT '',  <br>     PRIMARY KEY (`id`),  <br>     UNIQUE KEY `name` (`name`)<br> ) ENGINE=MyISAM  DEFAULT CHARSET=utf8;<br> -- ----------------------------<br> -- think_auth_group 用户组表, <br> -- id:主键, title:用户组中文名称, rules:用户组拥有的规则id, 多个规则","隔开,status 状态:为1正常,为0禁用<br> -- ----------------------------<br>  DROP TABLE IF EXISTS `think_auth_group`;<br> CREATE TABLE `think_auth_group` ( <br>     `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, <br>     `title` char(100) NOT NULL DEFAULT '', <br>     `status` tinyint(1) NOT NULL DEFAULT '1', <br>     `rules` char(80) NOT NULL DEFAULT '', <br>     PRIMARY KEY (`id`)<br> ) ENGINE=MyISAM  DEFAULT CHARSET=utf8;<br> -- ----------------------------<br> -- think_auth_group_access 用户组明细表<br> -- uid:用户id,group_id:用户组id<br> -- ----------------------------<br> DROP TABLE IF EXISTS `think_auth_group_access`;<br> CREATE TABLE `think_auth_group_access` (  <br>     `uid` mediumint(8) unsigned NOT NULL,  <br>     `group_id` mediumint(8) unsigned NOT NULL, <br>     UNIQUE KEY `uid_group_id` (`uid`,`group_id`),  <br>     KEY `uid` (`uid`), <br>     KEY `group_id` (`group_id`)<br> ) ENGINE=MyISAM DEFAULT CHARSET=utf8;<br>  */<br> <br> class Auth{<br> <br>     //默认配置<br>     protected $_config = array(<br>         'AUTH_ON' => true, //认证开关<br>         'AUTH_TYPE' => 1, // 认证方式,1为时时认证;2为登录认证。<br>         'AUTH_GROUP' => 'think_auth_group', //用户组数据表名<br>         'AUTH_GROUP_ACCESS' => 'think_auth_group_access', //用户组明细表<br>         'AUTH_RULE' => 'think_auth_rule', //权限规则表<br>         'AUTH_USER' => 'think_members'//用户信息表<br>     );<br> <br>     public function __construct() {<br>         if (C('AUTH_CONFIG')) {<br>             //可设置配置项 AUTH_CONFIG, 此配置项为数组。<br>             $this->_config = array_merge($this->_config, C('AUTH_CONFIG'));<br>         }<br>     }<br> <br>     //获得权限$name 可以是字符串或数组或逗号分割, uid为 认证的用户id, $or 是否为or关系,为true是, name为数组,只要数组中有一个条件通过则通过,如果为false需要全部条件通过。<br>     public function check($name, $uid, $relation='or') {<br>         if (!$this->_config['AUTH_ON'])<br>             return true;<br>             $count = M()->table($this->_config['AUTH_RULE'])->where('name="'.$name.'"')->count();<br>             if ($count == 0) {<br>                 return true;<br>             }<br>         $authList = $this->getAuthList($uid);<br>         if (is_string($name)) {<br>             if (strpos($name, ',') !== false) {<br>                 $name = explode(',', $name);<br>             } else {<br>                 $name = array($name);<br>             }<br>         }<br>         $list = array(); //有权限的name<br>         foreach ($authList as $val) {<br>             if (in_array($val, $name))<br>                 $list[] = $val;<br>         }<br>         if ($relation=='or' and !empty($list)) {<br>             return true;<br>         }<br>         $diff = array_diff($name, $list);<br>         if ($relation=='and' and empty($diff)) {<br>             return true;<br>         }<br>         return false;<br>     }<br> <br>     //获得用户组,外部也可以调用<br>     public function getGroups($uid) {<br>         static $groups = array();<br>         if (isset($groups[$uid]))<br>             return $groups[$uid];<br>         $user_groups = M()->table($this->_config['AUTH_GROUP_ACCESS'] . ' a')->where("a.uid='$uid' and g.status='1'")->join($this->_config['AUTH_GROUP']." g on a.group_id=g.id")->select();<br>         $groups[$uid]=$user_groups?$user_groups:array();<br>         return $groups[$uid];<br>     }<br> <br>     //获得权限列表<br>     protected function getAuthList($uid) {<br>         static $_authList = array();<br>         if (isset($_authList[$uid])) {<br>             return $_authList[$uid];<br>         }<br>         if(isset($_SESSION['_AUTH_LIST_'.$uid])){<br>             return $_SESSION['_AUTH_LIST_'.$uid];<br>         }<br>         //读取用户所属用户组<br>         $groups = $this->getGroups($uid);<br>         $ids = array();<br>         foreach ($groups as $g) {<br>             $ids = array_merge($ids, explode(',', trim($g['rules'], ',')));<br>         }<br>         $ids = array_unique($ids);<br>         if (empty($ids)) {<br>             $_authList[$uid] = array();<br>             return array();<br>         }<br>         //读取用户组所有权限规则<br>         $map=array(<br>             'id'=>array('in',$ids),<br>             'status'=>1<br>         );<br>         $rules = M()->table($this->_config['AUTH_RULE'])->where($map)->select();<br>         //循环规则,判断结果。<br>         $authList = array();<br>         foreach ($rules as $r) {<br>             if (!empty($r['condition'])) {<br>                 //条件验证<br>                 $user = $this->getUserInfo($uid);<br>                 $command = preg_replace('/\{(\w*?)\}/', '$user[\'\\1\']', $r['condition']);<br>                 //dump($command);//debug<br>                 @(eval('$condition=(' . $command . ');'));<br>                 if ($condition) {<br>                     $authList[] = $r['name'];<br>                 }<br>             } else {<br>                 //存在就通过<br>                 $authList[] = $r['name'];<br>             }<br>         }<br>         $_authList[$uid] = $authList;<br>         if($this->_config['AUTH_TYPE']==2){<br>             //session结果<br>             $_SESSION['_AUTH_LIST_'.$uid]=$authList;<br>         }<br>         return $authList;<br>     }<br>     //获得用户资料,根据自己的情况读取数据库<br>     protected function getUserInfo($uid) {<br>         static $userinfo=array();<br>         if(!isset($userinfo[$uid])){<br>              $userinfo[$uid]=M()->table($this->_config['AUTH_USER'])->find($uid);<br>         }<br>         return $userinfo[$uid];<br>     }<br> }</weibo.com></weibo.com>

AD:真正免费,域名+虚机+企业邮箱=0元

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Learn about introductory code examples for Python programming Learn about introductory code examples for Python programming Jan 04, 2024 am 10:50 AM

Learn about Python programming with introductory code examples Python is an easy-to-learn, yet powerful programming language. For beginners, it is very important to understand the introductory code examples of Python programming. This article will provide you with some concrete code examples to help you get started quickly. Print HelloWorldprint("HelloWorld") This is the simplest code example in Python. The print() function is used to output the specified content

PHP variables in action: 10 real-life examples of use PHP variables in action: 10 real-life examples of use Feb 19, 2024 pm 03:00 PM

PHP variables store values ​​during program runtime and are crucial for building dynamic and interactive WEB applications. This article takes an in-depth look at PHP variables and shows them in action with 10 real-life examples. 1. Store user input $username=$_POST["username"];$passWord=$_POST["password"]; This example extracts the username and password from the form submission and stores them in variables for further processing. 2. Set the configuration value $database_host="localhost";$database_username="username";$database_pa

From beginner to proficient: Code implementation of commonly used data structures in Go language From beginner to proficient: Code implementation of commonly used data structures in Go language Mar 04, 2024 pm 03:09 PM

Title: From Beginner to Mastery: Code Implementation of Commonly Used Data Structures in Go Language Data structures play a vital role in programming and are the basis of programming. In the Go language, there are many commonly used data structures, and mastering the implementation of these data structures is crucial to becoming a good programmer. This article will introduce the commonly used data structures in the Go language and give corresponding code examples to help readers from getting started to becoming proficient in these data structures. 1. Array Array is a basic data structure, a group of the same type

Go language programming examples: code examples in web development Go language programming examples: code examples in web development Mar 04, 2024 pm 04:54 PM

"Go Language Programming Examples: Code Examples in Web Development" With the rapid development of the Internet, Web development has become an indispensable part of various industries. As a programming language with powerful functions and superior performance, Go language is increasingly favored by developers in web development. This article will introduce how to use Go language for Web development through specific code examples, so that readers can better understand and use Go language to build their own Web applications. 1. Simple HTTP Server First, let’s start with a

Java implements simple bubble sort code Java implements simple bubble sort code Jan 30, 2024 am 09:34 AM

The simplest code example of Java bubble sort Bubble sort is a common sorting algorithm. Its basic idea is to gradually adjust the sequence to be sorted into an ordered sequence through the comparison and exchange of adjacent elements. Here is a simple Java code example that demonstrates how to implement bubble sort: publicclassBubbleSort{publicstaticvoidbubbleSort(int[]arr){int

How to use PHP to write inventory management function code in the inventory management system How to use PHP to write inventory management function code in the inventory management system Aug 06, 2023 pm 04:49 PM

How to use PHP to write the inventory management function code in the inventory management system. Inventory management is an indispensable part of many enterprises. For companies with multiple warehouses, the inventory management function is particularly important. By properly managing and tracking inventory, companies can allocate inventory between different warehouses, optimize operating costs, and improve collaboration efficiency. This article will introduce how to use PHP to write code for inventory warehouse management functions, and provide you with relevant code examples. 1. Establish the database before starting to write the code for the inventory warehouse management function.

Guidance and Examples: Learn to implement the selection sort algorithm in Java Guidance and Examples: Learn to implement the selection sort algorithm in Java Feb 18, 2024 am 10:52 AM

Java Selection Sorting Method Code Writing Guide and Examples Selection sorting is a simple and intuitive sorting algorithm. The idea is to select the smallest (or largest) element from the unsorted elements each time and exchange it until all elements are sorted. This article will provide a code writing guide for selection sorting, and attach specific Java sample code. Algorithm Principle The basic principle of selection sort is to divide the array to be sorted into two parts, sorted and unsorted. Each time, the smallest (or largest) element is selected from the unsorted part and placed at the end of the sorted part. Repeat the above

Huawei Cloud Edge Computing Interconnection Guide: Java code examples to quickly implement interfaces Huawei Cloud Edge Computing Interconnection Guide: Java code examples to quickly implement interfaces Jul 05, 2023 pm 09:57 PM

Huawei Cloud Edge Computing Interconnection Guide: Java Code Samples to Quickly Implement Interfaces With the rapid development of IoT technology and the rise of edge computing, more and more enterprises are beginning to pay attention to the application of edge computing. Huawei Cloud provides edge computing services, providing enterprises with highly reliable computing resources and a convenient development environment, making edge computing applications easier to implement. This article will introduce how to quickly implement the Huawei Cloud edge computing interface through Java code. First, we need to prepare the development environment. Make sure you have the Java Development Kit installed (

See all articles