Permissions.php 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. <?php
  2. namespace catchAdmin\permissions\model;
  3. use catchAdmin\permissions\model\search\PermissionsSearch;
  4. use catcher\base\CatchModel;
  5. use think\Model;
  6. class Permissions extends CatchModel
  7. {
  8. use PermissionsSearch;
  9. protected $name = 'permissions';
  10. protected $field = [
  11. 'id', //
  12. 'permission_name', // 菜单名称
  13. 'parent_id', // 父级ID
  14. 'icon',
  15. 'component', // 组件
  16. 'redirect',
  17. 'keepalive',
  18. 'creator_id',
  19. 'hidden',
  20. 'module', // 模块
  21. 'route', // 路由
  22. 'permission_mark', // 权限标识
  23. 'type', // 1 菜单 2 按钮
  24. 'sort', // 排序字段
  25. 'created_at', // 创建时间
  26. 'updated_at', // 更新时间
  27. 'deleted_at', // 删除状态,null 未删除 timestamp 已删除
  28. ];
  29. public const MENU_TYPE = 1;
  30. public const BTN_TYPE = 2;
  31. public const GET = 'get';
  32. public const POST = 'post';
  33. public const PUT = 'put';
  34. public const DELETE = 'delete';
  35. public function getList($isMenu = false)
  36. {
  37. return $this->catchSearch()
  38. ->catchOrder()
  39. ->when($isMenu, function ($query){
  40. $query->where('type', self::MENU_TYPE);
  41. })
  42. ->select();
  43. }
  44. public function roles(): \think\model\relation\BelongsToMany
  45. {
  46. return $this->belongsToMany(Roles::class, 'role_has_permissions', 'role_id', 'permission_id');
  47. }
  48. /**
  49. * 获取当前用户权限
  50. *
  51. * @time 2020年01月14日
  52. * @param array $permissionIds
  53. * @return \think\Collection
  54. * @throws \think\db\exception\DbException
  55. * @throws \think\db\exception\ModelNotFoundException
  56. * @throws \think\db\exception\DataNotFoundException
  57. */
  58. public static function getCurrentUserPermissions(array $permissionIds): \think\Collection
  59. {
  60. return parent::whereIn('id', $permissionIds)
  61. ->field(['permission_name as title', 'id', 'parent_id',
  62. 'route', 'icon', 'component', 'redirect', 'module',
  63. 'keepalive as keepAlive', 'type', 'permission_mark', 'hidden'
  64. ])
  65. ->catchOrder()
  66. ->select();
  67. }
  68. /**
  69. * 插入后回调 更新 level
  70. *
  71. * @time 2020年04月22日
  72. * @param Model $model
  73. * @throws \think\db\exception\DataNotFoundException
  74. * @throws \think\db\exception\DbException
  75. * @throws \think\db\exception\ModelNotFoundException
  76. * @return array|bool|Model|void|null
  77. */
  78. public static function onAfterInsert(Model $model)
  79. {
  80. $model = self::where('id', $model->id)->find();
  81. if ($model && $model->parent_id) {
  82. $parent = self::where('id', $model->parent_id)->find();
  83. $level = $parent->level ? $parent->level . '-' . $parent->id : $parent->id;
  84. return $model->where('id', $model->id)->update([
  85. 'level' => $level
  86. ]);
  87. }
  88. return true;
  89. }
  90. public function show($id)
  91. {
  92. $permission = $this->findBy($id);
  93. // 不能使用改属性判断,模型有该属性,使用数组方式
  94. // $permission->hidden
  95. $hidden = $permission['hidden'] == Permissions::ENABLE ? Permissions::DISABLE : Permissions::ENABLE;
  96. $nextLevelIds = $this->getNextLevel([$id]);
  97. $nextLevelIds[] = $id;
  98. return $this->whereIn('id', $nextLevelIds)->update([
  99. 'hidden' => $hidden,
  100. 'updated_at' => time(),
  101. ]);
  102. }
  103. /**
  104. * 获取 level ids
  105. *
  106. * @time 2020年09月06日
  107. * @param array $id
  108. * @param array $ids
  109. * @return array
  110. */
  111. protected function getNextLevel(array $id, &$ids = [])
  112. {
  113. $_ids = $this->whereIn('parent_id', $id)
  114. ->where('type', self::MENU_TYPE)
  115. ->column('id');
  116. if (count($_ids)) {
  117. $ids = array_merge($_ids, $this->getNextLevel($_ids, $ids));
  118. }
  119. return $ids;
  120. }
  121. }