123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212 |
- <?php
- declare(strict_types=1);
- namespace catcher;
- use catchAdmin\system\model\Config;
- use think\facade\Db;
- use think\helper\Str;
- class Utils
- {
- /**
- * 字符串转换成数组
- *
- * @time 2019年12月25日
- * @param string $string
- * @param string $dep
- * @return array
- */
- public static function stringToArrayBy(string $string, $dep = ','): array
- {
- if (Str::contains($string, $dep)) {
- return explode($dep, trim($string, $dep));
- }
- return [$string];
- }
- /**
- * 搜索参数
- *
- * @time 2020年01月13日
- * @param array $params
- * @param array $range
- * @return array
- */
- public static function filterSearchParams(array $params, array $range = []): array
- {
- $search = [];
- // $range = array_merge(['created_at' => ['start_at', 'end_at']], $range);
- if (!empty($range)) {
- foreach ($range as $field => $rangeField) {
- if (count($rangeField) === 1) {
- $search[$field] = [$params[$rangeField[0]]];
- unset($params[$rangeField[0]]);
- } else {
- $search[$field] = [$params[$rangeField[0]], $params[$rangeField[1]]];
- unset($params[$rangeField[0]], $params[$rangeField[1]]);
- }
- }
- }
- return array_merge($search, $params);
- }
- /**
- * 导入树形数据
- *
- * @time 2020年04月29日
- * @param $data
- * @param $table
- * @param string $pid
- * @param string $primaryKey
- * @return void
- */
- public static function importTreeData($data, $table, $pid = 'parent_id',$primaryKey = 'id')
- {
- foreach ($data as $value) {
- if (isset($value[$primaryKey])) {
- unset($value[$primaryKey]);
- }
- $children = $value['children'] ?? false;
- if($children) {
- unset($value['children']);
- }
- // 首先查询是否存在
- $menu = Db::name($table)
- ->where('permission_name', $value['permission_name'])
- ->where('module', $value['module'])
- ->where('permission_mark', $value['permission_mark'])
- ->find();
- if (!empty($menu)) {
- $id = $menu['id'];
- } else {
- $id = Db::name($table)->insertGetId($value);
- }
- if ($children) {
- foreach ($children as &$v) {
- $v[$pid] = $id;
- $v['level'] = !$value[$pid] ? $id : $value['level'] . '-' .$id;
- }
- self::importTreeData($children, $table, $pid);
- }
- }
- }
- /**
- * 解析 Rule 规则
- *
- * @time 2020年05月06日
- * @param $rule
- * @return array
- */
- public static function parseRule($rule)
- {
- [$controller, $action] = explode(Str::contains($rule, '@') ? '@' : '/', $rule);
- $controller = explode('\\', $controller);
- $controllerName = lcfirst(array_pop($controller));
- array_pop($controller);
- $module = array_pop($controller);
- return [$module, $controllerName, $action];
- }
- /**
- * get controller & action
- *
- * @time 2020年10月12日
- * @param $rule
- * @return false|string[]
- * @throws \ReflectionException
- */
- public static function isMethodNeedAuth($rule)
- {
- list($controller, $action) = explode(Str::contains($rule, '@') ? '@' : '/', $rule);
- $docComment = (new \ReflectionClass($controller))->getMethod($action)->getDocComment();
- return strpos($docComment, config('catch.permissions.method_auth_mark')) !== false;
- }
- /**
- * 表前缀
- *
- * @time 2020年05月22日
- * @return mixed
- */
- public static function tablePrefix()
- {
- return \config('database.connections.mysql.prefix');
- }
- /**
- * 删除前缀
- *
- * @time 2020年12月01日
- * @param string $table
- * @return string|string[]
- */
- public static function tableWithoutPrefix(string $table)
- {
- return str_replace(self::tablePrefix(), '', $table);
- }
- /**
- * 是否是超级管理员
- *
- * @time 2020年07月04日
- * @return bool
- */
- public static function isSuperAdmin()
- {
- return request()->user()->id == config('catch.permissions.super_admin_id');
- }
- /**
- * 是否是校长
- *
- * @time 2020年07月04日
- * @return bool
- */
- public static function isHeadMaster()
- {
- //登录角色id
- $role_id = Db::table('user_has_roles')->where('uid',request()->user()->id)->value('role_id');
- return $role_id == config('catch.permissions.headmaster_id');
- }
- /**
- * 获取配置
- *
- * @time 2020年09月07日
- * @param $key
- * @return mixed
- */
- public static function config($key)
- {
- return Config::where('key', $key)->value('value');
- }
- /**
- * public path
- *
- * @param string $path
- * @time 2020年09月08日
- * @return string
- */
- public static function publicPath($path = '')
- {
- return root_path($path ? 'public/'. $path : 'public');
- }
- }
|