SubService.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. <?php
  2. namespace app\common\service;
  3. use app\admin\model\Admin;
  4. use app\admin\model\AuthGroupAccess;
  5. use app\admin\model\AuthRule;
  6. use traits\think\Instance;
  7. class SubService{
  8. /** @var Admin */
  9. protected $admin;
  10. protected $chanId;
  11. protected $rules=[];
  12. public function __construct($chanId,$fromWhere)
  13. {
  14. if(!$chanId){
  15. return;
  16. }
  17. $this->chanId=$chanId;
  18. if($fromWhere=='admin'){
  19. $this->admin=Admin::where('id',$chanId)->find();
  20. }elseif ($fromWhere=='api'){
  21. $this->admin=Admin::sub()->where('id',$chanId)->find();
  22. }
  23. $this->getRules();
  24. }
  25. protected function getRules(){
  26. if($this->getAdminId()){
  27. $groupRules=AuthGroupAccess::where((new AuthGroupAccess())->getTable().'.uid',$this->getAdminId())
  28. ->join('auth_group',(new AuthGroupAccess())->getTable().'.group_id=auth_group.id')
  29. ->group('auth_group.id')
  30. ->column('auth_group.rules');
  31. $rules=[];
  32. foreach ($groupRules as $rule){
  33. $rules=array_merge($rules,array_filter(explode(',',$rule)));
  34. }
  35. $this->rules=$rules;
  36. }
  37. }
  38. /**
  39. * @return Admin
  40. */
  41. public function getAdmin($field=null)
  42. {
  43. if(is_null($field)) {
  44. return $this->admin;
  45. }else{
  46. return $this->admin[$field]??null;
  47. }
  48. }
  49. /**
  50. * @return mixed
  51. */
  52. public function getAdminId()
  53. {
  54. return $this->admin?$this->admin['id']:null;
  55. }
  56. /**
  57. * @param mixed $chanId
  58. */
  59. public function setChanId($chanId)
  60. {
  61. $this->chanId = $chanId;
  62. return $this;
  63. }
  64. public function getChanId(){
  65. return $this->chanId;
  66. }
  67. public function hasSortPower(){
  68. $id=$this->getRuleIdByName('mobile/mobile_sort');
  69. return in_array($id,$this->rules);
  70. }
  71. public function hasRecPower(){
  72. $id=$this->getRuleIdByName('mobile/mobile_rec_sub');
  73. return in_array($id,$this->rules);
  74. }
  75. public function hasTopPower(){
  76. $id=$this->getRuleIdByName('mobile/mobile_top_sub');
  77. return in_array($id,$this->rules);
  78. }
  79. public function hasAllowWxQrPower(){
  80. $id=$this->getRuleIdByName('admin/_allow_wx_qr_power');
  81. return in_array($id,$this->rules);
  82. }
  83. protected function getRuleIdByName($name){
  84. static $names=[];
  85. if(!isset($names[$name])){
  86. $names[$name]=AuthRule::where('name',$name)->value('id',false);
  87. }
  88. return $names[$name];
  89. }
  90. public function isFastHand(){
  91. return $this->chanId=='kuaishou';
  92. }
  93. /**
  94. * @var null|static 实例对象
  95. */
  96. protected static $instance = null;
  97. /**
  98. * 获取示例
  99. * @param array $options 实例配置
  100. * @return static
  101. */
  102. public static function instance($chanId,$fromWhere)
  103. {
  104. if (is_null(self::$instance)) self::$instance = new self($chanId,$fromWhere);
  105. return self::$instance;
  106. }
  107. }