123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2022 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- namespace app\wap\model\special;
- use app\wap\model\user\User;
- use basic\ModelBasic;
- use traits\ModelTrait;
- /**专题关联素材
- * Class SpecialCourse
- * @package app\wap\model\special
- */
- class SpecialCourse extends ModelBasic
- {
- use ModelTrait;
- /**
- * @param $special_id
- * @param int $limit
- * @param int $page
- * @param int $uid
- * @param $is_member
- * @return array
- * @throws \think\Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public static function getSpecialSourceList($special_id, $limit = 10, $page = 1, $uid = 0, $is_member)
- {
- $list = [];
- $special = Special::PreWhere()->where('id', $special_id)->find();
- if (!$special) return compact('page', 'list');
- //获得专栏下面的专题
- $cloumnSource = SpecialSource::get_special_source_list($special_id, $is_member, $special['type'], $limit, $page, $special['sort_order']);
- if (!$cloumnSource) return compact('page', 'list');
- foreach ($cloumnSource as $k => $v) {
- if ($special['type'] == SPECIAL_COLUMN) {
- $cloumnTask = Special::PreWhere()->where('id', $v['source_id'])
- ->field('id,is_del,is_light,is_mer_visible,is_show,light_type,title,type,sort_order')->find();
- if (!$cloumnTask) continue;
- $cloumnTask = $cloumnTask ? $cloumnTask->toArray() : [];
- if (!$is_member && $cloumnTask['is_mer_visible'] == 1) continue;
- //获得专题下面的素材
- $specialTask = array();
- $specialSource = SpecialSource::getSpecialSource($v['source_id'], false, false, false, $cloumnTask['sort_order']);
- if (count($specialSource) > 0) {
- foreach ($specialSource as $sk => $sv) {
- $task = SpecialTask::defaultWhere()->where('id', $sv['source_id'])->field('id,special_id,title,type,is_pay,sort,is_show,live_id,is_try,try_time,try_content')->find();
- if (!$task) continue;
- $task = $task->toArray();
- $task['special_id'] = $sv['special_id'];
- $task['is_free'] = $sv['pay_status'];
- $task['pay_status'] = $sv['pay_status'];
- $taskSpecialIsPay = self::specialIsPay($special_id, $uid);
- if (!$taskSpecialIsPay) {//如果整个专题免费,那么里面素材都免非,否则就默认素材本身的状态
- $task['pay_status'] = $taskSpecialIsPay;
- }
- $task['watch'] = SpecialWatch::whetherWatch($uid, $sv['special_id'], $sv['source_id']);
- $specialTask[] = $task;
- }
- }
- if ($cloumnTask['type'] != 6 && $cloumnTask['is_light'] == 0) {
- $cloumnTask['special_task'] = $specialTask;
- } else {
- $watch = SpecialWatch::whetherWatch($uid, $cloumnTask['id'], 0);
- $cloumnTask['special_task'][0] = $cloumnTask;
- $cloumnTask['special_task'][0]['watch'] = $watch;
- }
- $cloumnTask['pay_status'] = $v['pay_status'];//付费,先默认素材本身的付费状态
- $cloumnTask['is_free'] = $v['pay_status'];
- $specialIsPay = self::specialIsPay($v['source_id'], $uid);
- if (!$specialIsPay) {//如果整个专题免费,那么里面素材都免非,否则就默认素材本身的状态
- $cloumnTask['pay_status'] = $specialIsPay;
- }
- $cloumnTask['cloumn_special_id'] = $special_id;
- if ($cloumnTask['is_show'] == 1) {
- $list[] = $cloumnTask;
- }
- } else {
- $task = SpecialTask::getSpecialTaskOne($v['source_id']);
- if (!$task) continue;
- $task = $task->toArray();
- $task['pay_status'] = $v['pay_status'];//付费
- $task['is_free'] = $v['pay_status'];
- $specialIsPay = self::specialIsPay($special_id, $uid);
- if (!$specialIsPay) {//如果整个专题免费,那么里面素材都免非,否则就默认素材本身的状态
- $task['pay_status'] = $specialIsPay;
- }
- $task['special_id'] = $special_id;
- if ($task['is_show'] == 1 && $special['is_show'] == 1) {
- $list[] = $task;
- }
- }
- }
- $page++;
- return compact('page', 'list');
- }
- /**获取专栏下的专题
- * @param $special_id
- * @param bool $source_id
- * @param int $limit
- * @param int $page
- * @param int $uid
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public static function get_cloumn_special($special_id, $source_id = 0, $limit = 10, $page = 1, $uid = 0, $is_member)
- {
- $list = [];
- $special = Special::PreWhere()->where('id', $special_id)->find();
- if (!$special) return compact('page', 'list');
- $cloumn_source = SpecialSource::get_special_source_list($special_id, $is_member, $special['type'], $limit, $page, $special['sort_order']);
- if (!$cloumn_source) return compact('page', 'list');
- foreach ($cloumn_source as $k => $v) {
- $task_special = Special::PreWhere()->where('id', $v['source_id'])->find();
- if (!$task_special) continue;
- if (!$is_member && $task_special['is_mer_visible'] == 1) continue;
- $specialIsPay = self::specialIsPay($v['special_id'], $uid);
- $task_special['is_free'] = $v['pay_status'];
- $task_special['pay_status'] = $specialIsPay;
- if ($task_special['is_show'] == 1) {
- $list[] = $task_special;
- }
- }
- $page++;
- return compact('page', 'list');
- }
- /**专题是否需要付费
- * @param $special_id
- * @return int
- * @throws \think\exception\DbException
- */
- public static function specialIsPay($special_id, $uid)
- {
- if (!$special_id) return false;
- $special = Special::PreWhere()->where(['id'=>$special_id])->find();
- if (!$special) return false;
- $specialIsPay = 1;//收费
- if (!$uid) return $specialIsPay;
- $uid = User::getActiveUid();
- $isMember = User::getUserData($uid);
- $isPay = SpecialBuy::PaySpecial($special['id'], $uid);
- if ($special['pay_type'] == 0) {//专栏里面整个专题免费
- $specialIsPay = 0;//免费
- }
- if ($isPay === false && $special['pay_type'] == 0 && $special['is_pink'] == 0) {//没有购买,
- $specialIsPay = 0;//免费
- }
- if ($isMember && $isMember['level'] > 0 && $special['member_pay_type'] == 0) {//会员,
- $specialIsPay = 0;//免费
- }
- if ($isPay) {//购买过,
- $specialIsPay = 0;//免费
- }
- return $specialIsPay;
- }
- }
|