Utils.php 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. <?php
  2. declare(strict_types=1);
  3. namespace catcher;
  4. use catchAdmin\system\model\Config;
  5. use think\facade\Db;
  6. use think\helper\Str;
  7. class Utils
  8. {
  9. /**
  10. * 字符串转换成数组
  11. *
  12. * @time 2019年12月25日
  13. * @param string $string
  14. * @param string $dep
  15. * @return array
  16. */
  17. public static function stringToArrayBy(string $string, $dep = ','): array
  18. {
  19. if (Str::contains($string, $dep)) {
  20. return explode($dep, trim($string, $dep));
  21. }
  22. return [$string];
  23. }
  24. /**
  25. * 搜索参数
  26. *
  27. * @time 2020年01月13日
  28. * @param array $params
  29. * @param array $range
  30. * @return array
  31. */
  32. public static function filterSearchParams(array $params, array $range = []): array
  33. {
  34. $search = [];
  35. // $range = array_merge(['created_at' => ['start_at', 'end_at']], $range);
  36. if (!empty($range)) {
  37. foreach ($range as $field => $rangeField) {
  38. if (count($rangeField) === 1) {
  39. $search[$field] = [$params[$rangeField[0]]];
  40. unset($params[$rangeField[0]]);
  41. } else {
  42. $search[$field] = [$params[$rangeField[0]], $params[$rangeField[1]]];
  43. unset($params[$rangeField[0]], $params[$rangeField[1]]);
  44. }
  45. }
  46. }
  47. return array_merge($search, $params);
  48. }
  49. /**
  50. * 导入树形数据
  51. *
  52. * @time 2020年04月29日
  53. * @param $data
  54. * @param $table
  55. * @param string $pid
  56. * @param string $primaryKey
  57. * @return void
  58. */
  59. public static function importTreeData($data, $table, $pid = 'parent_id',$primaryKey = 'id')
  60. {
  61. foreach ($data as $value) {
  62. if (isset($value[$primaryKey])) {
  63. unset($value[$primaryKey]);
  64. }
  65. $children = $value['children'] ?? false;
  66. if($children) {
  67. unset($value['children']);
  68. }
  69. // 首先查询是否存在
  70. $menu = Db::name($table)
  71. ->where('permission_name', $value['permission_name'])
  72. ->where('module', $value['module'])
  73. ->where('permission_mark', $value['permission_mark'])
  74. ->find();
  75. if (!empty($menu)) {
  76. $id = $menu['id'];
  77. } else {
  78. $id = Db::name($table)->insertGetId($value);
  79. }
  80. if ($children) {
  81. foreach ($children as &$v) {
  82. $v[$pid] = $id;
  83. $v['level'] = !$value[$pid] ? $id : $value['level'] . '-' .$id;
  84. }
  85. self::importTreeData($children, $table, $pid);
  86. }
  87. }
  88. }
  89. /**
  90. * 解析 Rule 规则
  91. *
  92. * @time 2020年05月06日
  93. * @param $rule
  94. * @return array
  95. */
  96. public static function parseRule($rule)
  97. {
  98. [$controller, $action] = explode(Str::contains($rule, '@') ? '@' : '/', $rule);
  99. $controller = explode('\\', $controller);
  100. $controllerName = lcfirst(array_pop($controller));
  101. array_pop($controller);
  102. $module = array_pop($controller);
  103. return [$module, $controllerName, $action];
  104. }
  105. /**
  106. * get controller & action
  107. *
  108. * @time 2020年10月12日
  109. * @param $rule
  110. * @return false|string[]
  111. * @throws \ReflectionException
  112. */
  113. public static function isMethodNeedAuth($rule)
  114. {
  115. list($controller, $action) = explode(Str::contains($rule, '@') ? '@' : '/', $rule);
  116. $docComment = (new \ReflectionClass($controller))->getMethod($action)->getDocComment();
  117. return strpos($docComment, config('catch.permissions.method_auth_mark')) !== false;
  118. }
  119. /**
  120. * 表前缀
  121. *
  122. * @time 2020年05月22日
  123. * @return mixed
  124. */
  125. public static function tablePrefix()
  126. {
  127. return \config('database.connections.mysql.prefix');
  128. }
  129. /**
  130. * 删除前缀
  131. *
  132. * @time 2020年12月01日
  133. * @param string $table
  134. * @return string|string[]
  135. */
  136. public static function tableWithoutPrefix(string $table)
  137. {
  138. return str_replace(self::tablePrefix(), '', $table);
  139. }
  140. /**
  141. * 是否是超级管理员
  142. *
  143. * @time 2020年07月04日
  144. * @return bool
  145. */
  146. public static function isSuperAdmin()
  147. {
  148. return request()->user()->id == config('catch.permissions.super_admin_id');
  149. }
  150. /**
  151. * 是否是校长
  152. *
  153. * @time 2020年07月04日
  154. * @return bool
  155. */
  156. public static function isHeadMaster()
  157. {
  158. //登录角色id
  159. $role_id = Db::table('user_has_roles')->where('uid',request()->user()->id)->value('role_id');
  160. return $role_id == config('catch.permissions.headmaster_id');
  161. }
  162. /**
  163. * 获取配置
  164. *
  165. * @time 2020年09月07日
  166. * @param $key
  167. * @return mixed
  168. */
  169. public static function config($key)
  170. {
  171. return Config::where('key', $key)->value('value');
  172. }
  173. /**
  174. * public path
  175. *
  176. * @param string $path
  177. * @time 2020年09月08日
  178. * @return string
  179. */
  180. public static function publicPath($path = '')
  181. {
  182. return root_path($path ? 'public/'. $path : 'public');
  183. }
  184. }