PHP code example of labsys / auth-gaia
1. Go to this page and download the library: Download labsys/auth-gaia library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
labsys / auth-gaia example snippets bash
# 清空配置缓存
php artisan config:clear
php artisan vendor:publish --class=GaiaAuthServiceProvider
php artisan migrate
bash
composer dump-autoload
php artisan db:seed --class=PermissionBaseTableSeeder
bash
$res1 = GaiaAuth::user();//返回认证后的ORM对象
$res2 = GaiaAuth::hasRole([1,'kefu'],true);//参数二[选填]
$res3 = GaiaAuth::canDo([11,'search_bt'],true);//参数二[选填]
bash
$user = AdminUser::where('name','15577901841')->first();
$res1 = $user->roleList(['description','status']);//参数一[选填],为筛选的字段
$res2 = $user->hasRole([1,2],true);//参数二[选填],true为全匹配
$res3 = $user->attachRole([4]);//支持int或数组查询
$res4 = $user->detachRole(4);//支持int或数组查询
$res5 = $user->canDo([11,'search_bt']);//id或pinyin混合查找
$res6 = $user->menuPermList(['id','type','status']);//参数一[选填]要筛选的字段,参数二[选填]是否需树形排序
bash
$role = AuthRole::where('id',2)->first();
$res2 = $role->userList(['email']);//参数一[选填]要筛选的字段
$res3 = $role->hasPermission(['shopad',14]);//支持数组批量查询,仅全匹配才返回true
$res4 = $role->attachPermission([43,45]);//支持单个或数组批量添加
$res5 = $role->detachPermission(43);//支持单个或数组批量添加
$fields = ['id','type','status'];
$condition = [
'status'=>1,
'type' => ['<=',10],
];
$res6 = $role->permissionList($fields,$condition);//返回一维数组