CheckPower.php 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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\ReductionActivity;
  20. use app\common\model\SeckillActivity;
  21. use app\common\model\SeckillGoods;
  22. use app\common\model\SeriesArticleCate;
  23. use app\common\model\SeriesVideoCate;
  24. use app\common\model\StoreGoods;
  25. use app\common\model\Supplier;
  26. use app\common\model\SupplierCate;
  27. use app\common\model\SupplierGoods;
  28. use app\common\model\UserForum;
  29. use app\common\model\VideoCate;
  30. use app\common\model\VideoIntro;
  31. use app\common\model\VideoUrl;
  32. /**
  33. * 验证权限
  34. * Class Activity
  35. */
  36. class CheckPower
  37. {
  38. // 检查各个模块详情是否能跳转
  39. public static function checkModulesPower($first_id,$second_id,$module)
  40. {
  41. $check_val = 1;
  42. $module= strtolower($module);
  43. switch ($module)
  44. {
  45. case 'video':
  46. $item = VideoUrl::where('id',$second_id)->where('status',1)->where('is_deleted',0)->value('id');
  47. if(!$item) return 0;
  48. $parent = VideoIntro::where('id',$first_id)->where('status',1)->where('is_deleted',0)->find();
  49. if(!$parent) return 0;
  50. if($parent->type == 1)
  51. {
  52. $cate = VideoCate::where('id','in',[$parent->first_classify,$parent->second_classify])
  53. ->where('status',1)->where('is_deleted',0)->count();
  54. }else{
  55. $cate = SeriesVideoCate::where('id','in',[$parent->first_classify,$parent->second_classify])
  56. ->where('status',1)->where('is_deleted',0)->count();
  57. }
  58. // if($cate != 2) return 0;
  59. break;
  60. case 'article':
  61. $item = ArticleItem::where('id',$second_id)->where('status',1)->where('is_deleted',0)->value('id');
  62. if(!$item) return 0;
  63. $parent = ArticleIntro::where('id',$first_id)->where('status',1)->where('is_deleted',0)->find();
  64. if(!$parent) return 0;
  65. if($parent->type == 1)
  66. {
  67. $cate = ArticleCate::where('id','in',[$parent->first_classify,$parent->second_classify])
  68. ->where('status',1)->where('is_deleted',0)->count();
  69. }else{
  70. $cate = SeriesArticleCate::where('id','in',[$parent->first_classify,$parent->second_classify])
  71. ->where('status',1)->where('is_deleted',0)->count();
  72. }
  73. // if($cate != 2) return 0;
  74. break;
  75. case 'datum':
  76. $item = DatumUrl::where('id',$second_id)->where('status',1)->where('is_deleted',0)->value('id');
  77. if(!$item) return 0;
  78. $parent = DatumIntro::where('id',$first_id)->where('status',1)->where('is_deleted',0)->find();
  79. if(!$parent) return 0;
  80. if(!$parent->datum_cate) return 1;
  81. $cate = DatumCate::where('id','in',[$parent->datum_cate])
  82. ->where('status',1)->where('is_deleted',0)->count();
  83. //if($cate != 1) return 0;
  84. break;
  85. case 'press':
  86. $item = Press::where('id',$first_id)->where('status',1)->where('is_deleted',0)->value('id');
  87. if(!$item) return 0;
  88. break;
  89. case 'forum':
  90. $item = UserForum::where('id',$first_id)->where('status',1)->where('is_deleted',0)->value('id');
  91. if(!$item) return 0;
  92. break;
  93. case 'reply':
  94. $item = ForumReply::where('id',$first_id)->where('is_deleted',0)->value('id');
  95. if(!$item) return 0;
  96. break;
  97. case 'recruit':
  98. $item = Recruit::where('id',$first_id)->where('status',1)->where('is_deleted',0)->find();
  99. if(!$item) return 0;
  100. /* $cate = RecruitCate::where('id','in',[$item->first_classify,$item->second_classify])
  101. ->where('status',1)->where('is_deleted',0)->count();
  102. if($cate != 2) return 0;*/
  103. break;
  104. case 'mall':
  105. $item = StoreGoods::where('id',$first_id)->where('status',1)->where('is_deleted',0)->find();
  106. if(!$item) return 0;
  107. /* $cate = GoodsCate::where('id','in',[$item->first_classify,$item->second_classify])
  108. ->where('status',1)->where('is_deleted',0)->count();
  109. if($cate != 2) return 0;*/
  110. break;
  111. case 'supplier':
  112. $item = SupplierGoods::where('id',$first_id)->where('status',1)->where('is_deleted',0)->find();
  113. if(!$item) return 0;
  114. /* $parent = Supplier::where('id',$item->supplier_id)->where('status',1)->where('is_deleted',0)->find();
  115. if(!$parent) return 0;
  116. $cate = SupplierCate::where('id','in',[$parent->first_classify,$parent->second_classify,$parent->third_classify])
  117. ->where('status',1)->where('is_deleted',0)->count();
  118. if($cate != 3) return 0;*/
  119. break;
  120. case 'demand':
  121. $item = PlatformDemand::where('id',$first_id)->where('status',1)->where('is_deleted',0)->find();
  122. if(!$item) return 0;
  123. break ;
  124. case 'activity':
  125. $item = \app\common\model\Activity::where('id',$first_id)->where('status',1)->where('is_deleted',0)->find();
  126. if(!$item) return 0;
  127. break;
  128. }
  129. return $check_val;
  130. }
  131. // 检查各个模块是否能跳转
  132. public static function checkItemPower($first_id,$second_id,$module)
  133. {
  134. }
  135. }