HasPermissionsTrait.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <?php
  2. /**
  3. * @filename HasPermissionsTrait.php
  4. * @createdAt 2020/1/14
  5. * @project https://github.com/yanwenwu/catch-admin
  6. * @document http://doc.catchadmin.com
  7. * @author JaguarJack <njphper@gmail.com>
  8. * @copyright By CatchAdmin
  9. * @license https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt
  10. */
  11. namespace catchAdmin\permissions\model;
  12. trait HasPermissionsTrait
  13. {
  14. /**
  15. *
  16. * @time 2019年12月09日
  17. * @return \think\model\relation\BelongsToMany
  18. */
  19. public function permissions(): \think\model\relation\BelongsToMany
  20. {
  21. return $this->belongsToMany(Permissions::class, 'role_has_permissions', 'permission_id', 'role_id');
  22. }
  23. /**
  24. *
  25. * @time 2019年12月08日
  26. * @param array $condition
  27. * @param array $field
  28. * @return mixed
  29. */
  30. public function getPermissions($condition = [], $field = [])
  31. {
  32. return $this->permissions()
  33. ->when(!empty($field), function ($query) use ($field){
  34. $query->field($field);
  35. })
  36. ->when(!empty($condition), function ($query) use ($condition){
  37. $query->where($condition);
  38. })
  39. ->select();
  40. }
  41. /**
  42. *
  43. * @time 2019年12月08日
  44. * @param array $permissions
  45. * @return mixed
  46. * @throws \think\db\exception\DbException
  47. */
  48. public function attachPermissions(array $permissions)
  49. {
  50. if (empty($permissions)) {
  51. return true;
  52. }
  53. sort($permissions);
  54. return $this->permissions()->attach($permissions);
  55. }
  56. /**
  57. *
  58. * @time 2019年12月08日
  59. * @param array $permissions
  60. * @return mixed
  61. */
  62. public function detachPermissions(array $permissions = [])
  63. {
  64. if (empty($permissions)) {
  65. return $this->permissions()->detach();
  66. }
  67. return $this->permissions()->detach($permissions);
  68. }
  69. }