123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- <?php
- namespace app\common\service;
- use app\common\model\ArticleCate;
- use app\common\model\ArticleIntro;
- use app\common\model\ArticleItem;
- use app\common\model\DatumCate;
- use app\common\model\DatumIntro;
- use app\common\model\DatumUrl;
- use app\common\model\DiscountActivity;
- use app\common\model\DiscountGoods;
- use app\common\model\ForumReply;
- use app\common\model\GoodsCate;
- use app\common\model\GroupActivity;
- use app\common\model\GroupGoods;
- use app\common\model\PlatformDemand;
- use app\common\model\Press;
- use app\common\model\Recruit;
- use app\common\model\RecruitCate;
- use app\common\model\ReductionActivity;
- use app\common\model\SeckillActivity;
- use app\common\model\SeckillGoods;
- use app\common\model\SeriesArticleCate;
- use app\common\model\SeriesVideoCate;
- use app\common\model\StoreGoods;
- use app\common\model\Supplier;
- use app\common\model\SupplierCate;
- use app\common\model\SupplierGoods;
- use app\common\model\UserForum;
- use app\common\model\VideoCate;
- use app\common\model\VideoIntro;
- use app\common\model\VideoUrl;
- /**
- * 验证权限
- * Class Activity
- */
- class CheckPower
- {
- // 检查各个模块详情是否能跳转
- public static function checkModulesPower($first_id,$second_id,$module)
- {
- $check_val = 1;
- $module= strtolower($module);
- switch ($module)
- {
- case 'video':
- $item = VideoUrl::where('id',$second_id)->where('status',1)->where('is_deleted',0)->value('id');
- if(!$item) return 0;
- $parent = VideoIntro::where('id',$first_id)->where('status',1)->where('is_deleted',0)->find();
- if(!$parent) return 0;
- if($parent->type == 1)
- {
- $cate = VideoCate::where('id','in',[$parent->first_classify,$parent->second_classify])
- ->where('status',1)->where('is_deleted',0)->count();
- }else{
- $cate = SeriesVideoCate::where('id','in',[$parent->first_classify,$parent->second_classify])
- ->where('status',1)->where('is_deleted',0)->count();
- }
- // if($cate != 2) return 0;
- break;
- case 'article':
- $item = ArticleItem::where('id',$second_id)->where('status',1)->where('is_deleted',0)->value('id');
- if(!$item) return 0;
- $parent = ArticleIntro::where('id',$first_id)->where('status',1)->where('is_deleted',0)->find();
- if(!$parent) return 0;
- if($parent->type == 1)
- {
- $cate = ArticleCate::where('id','in',[$parent->first_classify,$parent->second_classify])
- ->where('status',1)->where('is_deleted',0)->count();
- }else{
- $cate = SeriesArticleCate::where('id','in',[$parent->first_classify,$parent->second_classify])
- ->where('status',1)->where('is_deleted',0)->count();
- }
- // if($cate != 2) return 0;
- break;
- case 'datum':
- $item = DatumUrl::where('id',$second_id)->where('status',1)->where('is_deleted',0)->value('id');
- if(!$item) return 0;
- $parent = DatumIntro::where('id',$first_id)->where('status',1)->where('is_deleted',0)->find();
- if(!$parent) return 0;
- if(!$parent->datum_cate) return 1;
- $cate = DatumCate::where('id','in',[$parent->datum_cate])
- ->where('status',1)->where('is_deleted',0)->count();
- //if($cate != 1) return 0;
- break;
- case 'press':
- $item = Press::where('id',$first_id)->where('status',1)->where('is_deleted',0)->value('id');
- if(!$item) return 0;
- break;
- case 'forum':
- $item = UserForum::where('id',$first_id)->where('status',1)->where('is_deleted',0)->value('id');
- if(!$item) return 0;
- break;
- case 'reply':
- $item = ForumReply::where('id',$first_id)->where('is_deleted',0)->value('id');
- if(!$item) return 0;
- break;
- case 'recruit':
- $item = Recruit::where('id',$first_id)->where('status',1)->where('is_deleted',0)->find();
- if(!$item) return 0;
- /* $cate = RecruitCate::where('id','in',[$item->first_classify,$item->second_classify])
- ->where('status',1)->where('is_deleted',0)->count();
- if($cate != 2) return 0;*/
- break;
- case 'mall':
- $item = StoreGoods::where('id',$first_id)->where('status',1)->where('is_deleted',0)->find();
- if(!$item) return 0;
- /* $cate = GoodsCate::where('id','in',[$item->first_classify,$item->second_classify])
- ->where('status',1)->where('is_deleted',0)->count();
- if($cate != 2) return 0;*/
- break;
- case 'supplier':
- $item = SupplierGoods::where('id',$first_id)->where('status',1)->where('is_deleted',0)->find();
- if(!$item) return 0;
- /* $parent = Supplier::where('id',$item->supplier_id)->where('status',1)->where('is_deleted',0)->find();
- if(!$parent) return 0;
- $cate = SupplierCate::where('id','in',[$parent->first_classify,$parent->second_classify,$parent->third_classify])
- ->where('status',1)->where('is_deleted',0)->count();
- if($cate != 3) return 0;*/
- break;
- case 'demand':
- $item = PlatformDemand::where('id',$first_id)->where('status',1)->where('is_deleted',0)->find();
- if(!$item) return 0;
- break ;
- case 'activity':
- $item = \app\common\model\Activity::where('id',$first_id)->where('status',1)->where('is_deleted',0)->find();
- if(!$item) return 0;
- break;
- }
- return $check_val;
- }
- // 检查各个模块是否能跳转
- public static function checkItemPower($first_id,$second_id,$module)
- {
- }
- }
|