CheckPower.php 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. <?php
  2. namespace app\common\service;
  3. use app\common\model\ArticleCate;
  4. use app\common\model\ArticleIntro;
  5. use app\common\model\ArticleItem;
  6. use app\common\model\DatumCate;
  7. use app\common\model\DatumIntro;
  8. use app\common\model\DatumUrl;
  9. use app\common\model\DiscountActivity;
  10. use app\common\model\DiscountGoods;
  11. use app\common\model\ForumReply;
  12. use app\common\model\GoodsCate;
  13. use app\common\model\GroupActivity;
  14. use app\common\model\GroupGoods;
  15. use app\common\model\PlatformDemand;
  16. use app\common\model\Press;
  17. use app\common\model\Recruit;
  18. use app\common\model\RecruitCate;
  19. use app\common\model\RecruitResume;
  20. use app\common\model\ReductionActivity;
  21. use app\common\model\SeckillActivity;
  22. use app\common\model\SeckillGoods;
  23. use app\common\model\SeriesArticleCate;
  24. use app\common\model\SeriesVideoCate;
  25. use app\common\model\StoreGoods;
  26. use app\common\model\Supplier;
  27. use app\common\model\SupplierCate;
  28. use app\common\model\SupplierGoods;
  29. use app\common\model\UserForum;
  30. use app\common\model\VideoCate;
  31. use app\common\model\VideoIntro;
  32. use app\common\model\VideoUrl;
  33. /**
  34. * 验证权限
  35. * Class Activity
  36. */
  37. class CheckPower
  38. {
  39. // 检查各个模块详情是否能跳转
  40. public static function checkModulesPower($first_id,$second_id,$module,$type_id = 0)
  41. {
  42. $check_val = 1;
  43. $module= strtolower($module);
  44. switch ($module)
  45. {
  46. case 'video':
  47. if($second_id != 0){
  48. $item = VideoUrl::where('id',$second_id)->where('status',1)->where('is_deleted',0)->value('id');
  49. if(!$item) return 0;
  50. }
  51. if($first_id != 0) {
  52. $parent = VideoIntro::where('id',$first_id)->where('status',1)->where('is_deleted',0)->find();
  53. if(!$parent) return 0;
  54. if($parent->type == 1)
  55. {
  56. $cate = VideoCate::where('id','in',[$parent->first_classify,$parent->second_classify])
  57. ->where('status',1)->where('is_deleted',0)->count();
  58. }else{
  59. $cate = SeriesVideoCate::where('id','in',[$parent->first_classify,$parent->second_classify])
  60. ->where('status',1)->where('is_deleted',0)->count();
  61. }
  62. if($cate != 2) return 0;
  63. }
  64. // if($cate != 2) return 0;
  65. break;
  66. case 'article':
  67. if($second_id != 0){
  68. $item = ArticleItem::where('id',$second_id)->where('status',1)->where('is_deleted',0)->value('id');
  69. if(!$item) return 0;
  70. }
  71. if($first_id != 0) {
  72. $parent = ArticleIntro::where('id', $first_id)->where('status', 1)->where('is_deleted', 0)->find();
  73. if (!$parent) return 0;
  74. if(isset($parent) && $parent->type == 1)
  75. {
  76. $cate = ArticleCate::where('id','in',[$parent->first_classify,$parent->second_classify])
  77. ->where('status',1)->where('is_deleted',0)->count();
  78. }else{
  79. $cate = SeriesArticleCate::where('id','in',[$parent->first_classify,$parent->second_classify])
  80. ->where('status',1)->where('is_deleted',0)->count();
  81. }
  82. if($cate != 2) return 0;
  83. }
  84. // if($cate != 2) return 0;
  85. break;
  86. case 'datum':
  87. if($second_id != 0) {
  88. $item = DatumUrl::where('id', $second_id)->where('status', 1)->where('is_deleted', 0)->value('id');
  89. if (!$item) return 0;
  90. }
  91. if($first_id != 0) {
  92. $parent = DatumIntro::where('id', $first_id)->where('status', 1)->where('is_deleted', 0)->find();
  93. if (!$parent) return 0;
  94. }
  95. if(isset($parent) || !$parent->datum_cate) return 1;
  96. $cate = DatumCate::where('id','in',[$parent->datum_cate])
  97. ->where('status',1)->where('is_deleted',0)->count();
  98. //if($cate != 1) return 0;
  99. break;
  100. case 'press':
  101. $item = Press::where('id',$first_id)->where('status',1)->where('is_deleted',0)->value('id');
  102. if(!$item) return 0;
  103. break;
  104. case 'forum':
  105. $item = UserForum::where('id',$first_id)->where('status',1)->where('is_deleted',0)->value('id');
  106. if(!$item) return 0;
  107. break;
  108. case 'reply':
  109. $item = ForumReply::where('id',$first_id)->where('is_deleted',0)->value('id');
  110. if(!$item) return 0;
  111. break;
  112. case 'recruit':
  113. if($type_id == 4){
  114. $item = RecruitResume::where('id',$first_id)->where('status',1)->where('is_deleted',0)->find();
  115. }else{
  116. $item = Recruit::where('id',$first_id)->where('status',1)->where('is_deleted',0)->find();
  117. }
  118. if(!$item) return 0;
  119. /* $cate = RecruitCate::where('id','in',[$item->first_classify,$item->second_classify])
  120. ->where('status',1)->where('is_deleted',0)->count();
  121. if($cate != 2) return 0;*/
  122. break;
  123. case 'mall':
  124. $item = StoreGoods::where('id',$first_id)->where('status',1)->where('is_deleted',0)->find();
  125. if(!$item) return 0;
  126. /* $cate = GoodsCate::where('id','in',[$item->first_classify,$item->second_classify])
  127. ->where('status',1)->where('is_deleted',0)->count();
  128. if($cate != 2) return 0;*/
  129. break;
  130. case 'supplier':
  131. $item = Supplier::where('id',$first_id)->where('status',1)->where('is_deleted',0)->find();
  132. if(!$item) return 0;
  133. /* $parent = Supplier::where('id',$item->supplier_id)->where('status',1)->where('is_deleted',0)->find();
  134. if(!$parent) return 0;
  135. $cate = SupplierCate::where('id','in',[$parent->first_classify,$parent->second_classify,$parent->third_classify])
  136. ->where('status',1)->where('is_deleted',0)->count();
  137. if($cate != 3) return 0;*/
  138. break;
  139. case 'supplier_goods':
  140. $item = SupplierGoods::where('id',$first_id)->where('status',1)->where('is_deleted',0)->find();
  141. if(!$item) return 0;
  142. break ;
  143. case 'demand':
  144. $item = PlatformDemand::where('id',$first_id)->where('status',1)->where('is_deleted',0)->find();
  145. if(!$item) return 0;
  146. break ;
  147. case 'activity':
  148. //$item = \app\common\model\ActivityApply::where('id',$first_id)->where('status',1)->where('is_deleted',0)->find();
  149. $item1 = \app\common\model\Activity::where('id',$first_id)->where('status',1)->where('is_deleted',0)->find();
  150. if(!$item1) return 0;
  151. break;
  152. case 'activityapply':
  153. $item = \app\common\model\ActivityApply::where('id',$first_id)->where('status',1)->where('is_deleted',0)->find();
  154. if(!$item) return 0;
  155. $item1 = \app\common\model\Activity::where('id',$item['act_id'])->where('status',1)->where('is_deleted',0)->find();
  156. if(!$item1) return 0;
  157. break;
  158. case 'apply':
  159. $item = \app\common\model\ActivityApplyItem::where('id',$first_id)->where('status',1)->where('is_deleted',0)->find();
  160. if(!$item) return 0;
  161. break;
  162. }
  163. return $check_val;
  164. }
  165. // 检查各个模块是否能跳转
  166. public static function checkItemPower($first_id,$second_id,$module)
  167. {
  168. }
  169. }