UserSynth.php 62 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180
  1. <?php
  2. namespace app\common\service;
  3. use AlibabaCloud\Client\AlibabaCloud;
  4. use AlibabaCloud\Client\Exception\ClientException;
  5. use AlibabaCloud\Client\Exception\ServerException;
  6. use app\common\model\ActivityApply;
  7. use app\common\model\ActivityApplyItem;
  8. use app\common\model\ActivitySponsor;
  9. use app\common\model\ArticleIntro;
  10. use app\common\model\ArticleItem;
  11. use app\common\model\ArticleLike;
  12. use app\common\model\BillApply;
  13. use app\common\model\BillHeader;
  14. use app\common\model\DatumIntro;
  15. use app\common\model\DatumUrl;
  16. use app\common\model\DeliveryAddress;
  17. use app\common\model\ForumReply;
  18. use app\common\model\PlatformDemand;
  19. use app\common\model\PlatformLike;
  20. use app\common\model\PlatformSwitch;
  21. use app\common\model\Press;
  22. use app\common\model\PressComment;
  23. use app\common\model\Recruit;
  24. use app\common\model\StoreGoods;
  25. use app\common\model\StoreGoodsItem;
  26. use app\common\model\GoodsCate;
  27. use app\common\model\SupplierGoods;
  28. use app\common\model\TopSearch;
  29. use app\common\model\User;
  30. use app\common\model\UserCollect;
  31. use app\common\model\UserForum;
  32. use app\common\model\UserLearn;
  33. use app\common\model\UserLevelRank;
  34. use app\common\model\UserSearch;
  35. use app\common\model\UserVitality;
  36. use app\common\model\VideoIntro;
  37. use app\common\model\VideoUrl;
  38. use app\common\model\RecruitCate;
  39. use think\cache\driver\Redis;
  40. use think\Db;
  41. use Dm\Request\V20151123 as Dm;
  42. /**
  43. * 会员身综合管理
  44. * Class UserIdentity
  45. */
  46. class UserSynth extends SerBase
  47. {
  48. public static $ret_val = ['code' => 200 , 'msg'=>'ok','extend'=>''];
  49. // 会员活跃度
  50. public static function vitality($user_id,$type)
  51. {
  52. if($type === false) return false;
  53. $type++;
  54. $redis = new Redis();
  55. $check_key = date('Y-m-d').'_'.$user_id;
  56. // 当天是否登录
  57. if(!$redis->get($check_key)) {
  58. $redis->set($check_key,86400);
  59. $year = date('Y');
  60. $month = date('m');
  61. $day = date('d');
  62. $vitality_info= [
  63. 'user_id'=>$user_id,
  64. 'year'=>$year,
  65. 'month'=>$month,
  66. 'day'=>$day,
  67. 'day_time'=>date('Y-m-d'),
  68. 'create_at'=>date('Y-m-d H:i:s'),
  69. 'type'=>$type
  70. ];
  71. UserVitality::create($vitality_info);
  72. }
  73. }
  74. /**
  75. * 创建申请发票申请记录【申请开票】
  76. * @param $user_id
  77. * @param $order_id
  78. * @param $order_type 订单类型
  79. * @param $bill_info 发票抬头id||发票详情
  80. * @param $add_id 售货地址id
  81. * @param $send_type 物流类型1点子发票2纸质发票
  82. * @param $remark 备注
  83. * @param $order_pay 订单是否完成支付
  84. * @return array
  85. */
  86. public static function buildBillApply($user_id, $order_id, $order_type,$bill_info,$add_id,$send_type,$remark,$order_pay = 1)
  87. {
  88. $order_table = [
  89. 1=>'level_order',// 会员订单
  90. 2=>'store_order',// 商品订单
  91. 3=>'activity_apply',// 活动订单
  92. ];
  93. Db::startTrans();
  94. try {
  95. $apply_info = [
  96. 'order_id' => $order_id,
  97. 'table_name' => $order_table[$order_type],
  98. 'user_id' => $user_id,
  99. 'remark' => $remark,
  100. 'send_type' => $send_type,
  101. 'order_type' => $order_type,
  102. 'create_at' => date("Y-m-d H:i:s"),
  103. 'order_pay' => $order_pay,
  104. ];
  105. if($add_id) {
  106. $add_info = DeliveryAddress::field('id,pro_name,city_name,county_name,mer_name,detail,phone,name')->where('user_id',$user_id)->where('id',$add_id)->find();
  107. $apply_info['address_info'] = json_encode($add_info->toArray());
  108. }
  109. if(is_array($bill_info)){
  110. $apply_info['header'] = $bill_info['header'];
  111. $apply_info['type'] = $bill_info['type'];
  112. $apply_info['email'] =$bill_info['email'];
  113. // $apply_info['bank'] = $bill_info['bank'];
  114. // $apply_info['card_no'] = $bill_info['card_no'];
  115. // $apply_info['phone'] = $bill_info['phone'];
  116. $apply_info['identify_number'] = $bill_info['identify_number'];
  117. // $apply_info['address'] = $bill_info['address'];
  118. }else if($bill_info){
  119. $bill_header = BillHeader::where('id',$bill_info) ->where('user_id',$user_id)->find();
  120. if(empty($bill_header)) self::exception('发票抬头有误');
  121. $apply_info['header'] = $bill_header->header;
  122. $apply_info['email'] = $bill_header->email;
  123. $apply_info['type'] = $bill_header->type;
  124. $apply_info['identify_number'] = $bill_header->identify_number;
  125. }
  126. $order_info = Db::name($order_table[$order_type])
  127. ->where('user_id',$user_id)
  128. ->where('pay_state',1)
  129. ->where('id',$order_id)
  130. ->find();
  131. if(empty($order_info) && !in_array($order_type ,[2,3]))self::exception('订单有误');
  132. $check_info = BillApply::where('user_id',$user_id)
  133. ->where('order_id',$order_id)
  134. ->where('is_deleted',0)
  135. ->where('table_name',$order_table[$order_type])
  136. ->find();
  137. if(!empty($check_info) && $check_info->status == 1) self::exception('已开票');
  138. $apply_info = BillApply::create($apply_info);
  139. static::$ret_val['extend'] = $apply_info->id ;
  140. Db::commit();
  141. }catch (\Exception $e) {
  142. Db::rollback();
  143. static::$ret_val['code'] = 201 ;
  144. static::$ret_val['msg'] = $e->getMessage();
  145. }
  146. return static::$ret_val;
  147. }
  148. // 获取所有模块设置
  149. public static function getAllModuleTitle()
  150. {
  151. // 视频
  152. $video = VideoIntro::field('id,title,IF(id,\'video\',0) module')->with(['videoArr'=>function($query){
  153. return $query->where('status',1)->field('id,title,video_id');
  154. }])->where(['is_deleted'=>0])->where('status',1)->order('id desc')->select()->toArray();
  155. array_walk($video,function (&$v){
  156. $v['children'] = $v['video_arr'];
  157. unset($v['video_arr']);
  158. });
  159. // 资料
  160. $datum = DatumIntro::with(['urlArr'=>function($query){
  161. return $query->field('id,title,datum_id');
  162. }])->where(['is_deleted'=>0])->field('id,title,IF(id,\'datum\',0) module')->order('id desc')->select()->toArray();
  163. array_walk($datum,function (&$v){
  164. $v['children'] = $v['url_arr'];
  165. unset($v['url_arr']);
  166. });
  167. // 图文
  168. $article = ArticleIntro::with(['itemChildren'=>function($query){
  169. return $query->field('id,title,article_id');
  170. }])->field('id,title,IF(id,\'article\',0) module')->where(['is_deleted'=>0])->order('id asc')->select()->toArray();
  171. array_walk($article,function (&$v){
  172. $v['children'] = $v['item_children'];
  173. unset($v['item_children']);
  174. });
  175. // $supplier_goods = SupplierGoods::alias('g')->field('g.id,g.supplier_id,g.name title,IF(g.id,\'supplier\',0) module')->where(['g.is_deleted'=>0])
  176. // ->leftJoin('Supplier s', 's.id = g.supplier_id')->select()->toArray();
  177. $supplier_goods = Db::name('supplier')->alias('g')->field('g.id,g.title,IF(g.id,\'supplier\',0) module')->where(['g.is_deleted'=>0])
  178. ->where('status',1)->select();
  179. foreach ($supplier_goods as $k => $v){
  180. $supplier_goods[$k]['children'] = SupplierGoods::alias('g')->field('g.id,g.supplier_id,g.name title,IF(g.id,\'supplier\',0) module')->where(['g.is_deleted'=>0])->where('supplier_id',$v['id'])->where('g.status',1)->select()->toArray();
  181. }
  182. // 新闻
  183. $press = Press::field('id,title,IF(id,\'press\',0) module')->where('status',1)->where('is_deleted',0)->select()->toArray();
  184. // 活动
  185. $activity = \app\common\model\Activity::field('id,title,IF(id,\'activity\',0) module')->where('status',1)->where('is_deleted',0)->select()->toArray();
  186. // 问答
  187. $forum = UserForum::field('id,title,IF(id,\'forum\',0) module')->where('status',1)->where('is_deleted',0)->select()->toArray();
  188. //需求
  189. $demand = PlatformDemand::field('id,title,IF(id,\'demand\',0) module')->where('status',1)->where('is_deleted',0)->where('is_over','<>',1)->select()->toArray();
  190. //招聘
  191. $recruit = RecruitCate::field('id,title,IF(id,\'recruit\',0) module')->where('status',1)->where('is_deleted',0)->where('lev',3)->select()->toArray();
  192. foreach ($recruit as $k => $v){
  193. $recruit[$k]['children'] = Recruit::field('id,title,IF(id,\'recruit\',0) module')->where('status',1)->where('is_deleted',0)->where('third_classify',$v['id'])->select()->toArray();
  194. }
  195. //商品
  196. $mall = GoodsCate::field('id,title,IF(id,\'mall\',0) module')->where('status',1)->where('is_deleted',0)->where('lev',3)->select()->toArray();
  197. foreach ($mall as $k => $v){
  198. $mall[$k]['children'] = StoreGoods::field('id,name as title,IF(id,\'mall\',0) module')->where('status',1)->where('is_deleted',0)->where('third_classify',$v['id'])->select()->toArray();
  199. }
  200. //热搜
  201. // $top_search = TopSearch::field('id,title,IF(id,\'top_search\',0) module')->where('status',1)->where('is_deleted',0)->select()->toArray();
  202. // var_dump($top_search);die;
  203. $top_search = [
  204. ['id'=>1 , 'title' => '全部' ,'module'=>'top_search'],
  205. ['id'=>2 , 'title' => '问答','module'=>'top_search'],
  206. ['id'=>3 , 'title' => '视频','module'=>'top_search'],
  207. ['id'=>4 , 'title' => '图文','module'=>'top_search'],
  208. ['id'=>5 , 'title' => '资料','module'=>'top_search'],
  209. ['id'=>6 , 'title' => '新闻','module'=>'top_search'],
  210. ['id'=>7 , 'title' => '供应商','module'=>'top_search'],
  211. ['id'=>8 , 'title' => '需求','module'=>'top_search'],
  212. ['id'=>9 , 'title' => '招聘','module'=>'top_search'],
  213. ['id'=>10 , 'title' => '活动','module'=>'top_search'],
  214. ['id'=>11 , 'title' => '商品','module'=>'top_search'],
  215. ];
  216. return array_merge($video,$datum,$article,$supplier_goods,$press,$forum,$activity,$demand,$recruit,$mall,$top_search);
  217. // return compact(['video','datum','article','supplier_goods']);
  218. }
  219. // 推荐
  220. public static function getRecommendList($user_id,$module,$page,$page_num,$where_param =[],$sort_type= 0)
  221. {
  222. if(!$user_id) return['code'=>201,'msg'=>'会员id不能为空'];
  223. $redis = new Redis();
  224. $redis_time= 86400;
  225. $redis_set = [
  226. '0' => $module.'_'.$user_id.'_recommend_ids',// 全部推荐的id
  227. '1' => $module.'_'.$user_id.'_selected_recommend_ids',// 已查询过的推挤id
  228. '2' => $module.'_'.$user_id.'_un_recommend',// 非推荐的id
  229. '3' => $module.'_'.$user_id.'_selected_un_recommend',// 已查询过的非推荐的id
  230. '4' => $module.'_'.$user_id.'_total_num',// 总数量
  231. '5' => $module.'_'.$user_id.'_switch',// 时间段内是否是已经查询 【1已查询过】
  232. ];
  233. $switch = $redis->get($redis_set[5]);
  234. if(!$switch) $redis->set($redis_set[5],1,$redis_time);// 设置已查询状态
  235. // 第一页且没查询过数据
  236. if(!$switch) {
  237. $redis->set($redis_set[0],'',$redis_time);
  238. $redis->set($redis_set[1],'',$redis_time);
  239. $redis->set($redis_set[2],'',$redis_time);
  240. $redis->set($redis_set[3],'',$redis_time);
  241. $redis->set($redis_set[4],0,$redis_time);
  242. }
  243. $module_set = [
  244. 'video'=>[
  245. 'type'=> 1,
  246. 'table'=>'dd_video_url',
  247. 'index_field'=>'title',
  248. 'select_field'=>' a.id,a.title,a.cover,a.user_id,a.is_vip,a.create_at,a.ali_vid,a.video_id,a.duration ,a.release_time,a.read_num',
  249. ],
  250. 'Intro'=>[
  251. 'type'=> 1,
  252. 'table'=>'dd_datum_intro',
  253. 'index_field'=>'title',
  254. 'select_field'=>' *',
  255. ],
  256. 'article'=>[
  257. 'type'=> 2,
  258. 'table'=>'dd_article_item',
  259. 'index_field'=>'title',
  260. 'select_field'=>' a.id,a.title,a.cover,a.content_type,a.pdf,a.images,a.create_at,a.user_id,a.is_vip,a.read_num,a.article_id ,a.author,a.release_time,a.desc ',
  261. ],
  262. 'datum'=>[
  263. 'type'=> 3,
  264. 'table'=>'dd_datum_url',
  265. 'index_field'=>'title',
  266. 'select_field'=>' a.id,a.title,a.user_id,a.create_at,a.down_num,a.read_num,a.is_vip,a.datum_id,a.url ,a.is_encrypt,a.pdf_clear ,a.release_time ',
  267. ],
  268. 'forum'=>[
  269. 'type'=> 6,
  270. 'table'=>'dd_user_forum',
  271. 'index_field'=>'title',
  272. 'select_field'=>' a.id,a.title,a.content,a.label,a.level,a.browse_num,a.sort,a.create_at,u.name,u.headimg ,a.release_time',
  273. ],
  274. 'activity'=>[
  275. 'type'=> 11,
  276. 'table'=>'dd_activity',
  277. 'index_field'=>'title',
  278. 'select_field'=>' a.id,cover,a.user_id,a.province,a.city,a.county,a.address,title,a.status,address,a.read_num,a.label,a.start_time,a.end_time,a.release_time,u.name,u.headimg',
  279. ],
  280. 'demand'=>[
  281. 'type'=> 5,
  282. 'table'=>'dd_platform_demand',
  283. 'index_field'=>'title',
  284. 'select_field'=>' a.id,a.cover,a.money,a.user_id,a.label,a.title,a.read_num,a.is_over,a.content ,a.release_time,a.desc',
  285. ],
  286. 'press'=>[
  287. 'type'=> 4,
  288. 'table'=>'dd_press',
  289. 'index_field'=>'title',
  290. 'select_field'=>'a.id,a.title,a.label,a.images,a.read_num,a.transmit_num,a.user_id,a.create_at,a.release_time',
  291. ],
  292. 'recruit'=>[
  293. 'type'=> 8,
  294. 'table'=>'dd_recruit',
  295. 'index_field'=>'title',
  296. 'select_field'=>'a.id,title,a.work_hours,a.user_id,label,salary,principal,hr_headimg,address,price_min,price_max,company,education,experience_min,experience_max,welfare,province,city,county ,a.release_time,a.company_intro,a.is_ss,a.scale',
  297. ],
  298. "supplier"=>[
  299. 'type'=> 11,
  300. 'table'=>'dd_supplier_goods',
  301. 'index_field'=>'name',
  302. 'select_field'=>'a.id,a.supplier_id,a.name,a.label,a.cover,a.read_num,k.title supplier_name,k.logo supplier_logo,a.release_time',
  303. ],
  304. 'goods'=>[
  305. 'type'=> 7,
  306. 'table'=>'dd_store_goods',
  307. 'index_field'=>'name',
  308. 'select_field'=>'a.id,name,cover,low_price,a.label,a.release_time,sale_num,a.user_id,specs',
  309. ]
  310. ];
  311. $search_log = UserSearch::getSearchTitle($user_id,$module_set[$module]['type']);
  312. $search_arr = [];
  313. $where_str = 'b.id > 0';
  314. foreach ($search_log as $t){
  315. $search_arr[] = " b.".$module_set[$module]["index_field"]." like '".'%'.$t."%'" .' ';
  316. $search_arr[] = " b.label like '".'%'.$t."%'" .' ';
  317. }
  318. if(!empty($search_arr)) $where_str = implode(' OR ',$search_arr);
  319. $time_str = date("Y-m-d H:i:s");
  320. switch ($module) {
  321. case 'video':
  322. // 第一页查询 安排redis
  323. if(!$switch) {
  324. // 查询推荐id sql
  325. $recommend_query = "SELECT a.id FROM " .$module_set[$module]['table'] . " a LEFT JOIN ( SELECT id,IF(id,1,1) is_recommend FROM ".$module_set[$module]['table']." b WHERE ( $where_str )) AS c ON c.id = a.id Left JOIN dd_video_intro as k ON a.video_id = k.id WHERE a.is_deleted = 0 AND a.release_time < '".$time_str."' AND a.status =1 AND k.is_deleted = 0 AND k.status = 1 ";
  326. $all_recommend = Db::query($recommend_query);
  327. //return $recommend_query;
  328. $recommend_ids = array_column($all_recommend,'id');// 推荐的
  329. $un_recommend = VideoUrl::where([['a.status','=',1],['a.is_deleted','=',0],['a.id','not in',$recommend_ids],['a.release_time','< time',$time_str]])
  330. ->where(['k.status'=>1,'k.is_deleted'=>0])
  331. ->alias('a')
  332. ->leftJoin('video_intro k','k.id = a.video_id')
  333. ->column('a.id');
  334. $redis->set($redis_set[0],implode(',',$recommend_ids),$redis_time);
  335. $redis->set($redis_set[2],implode(',',$un_recommend),$redis_time);
  336. $redis->set($redis_set[4],count($recommend_ids) + count($un_recommend),$redis_time);
  337. }else{
  338. $recommend_ids = $redis->get($redis_set[0]);// 所有推荐的id
  339. $recommend_ids = $recommend_ids ? explode(',',$recommend_ids) : [];
  340. $un_recommend = $redis->get($redis_set[2]);// 所有非推荐的id
  341. $un_recommend = $un_recommend ? explode(',',$un_recommend) : [];
  342. }
  343. $list1 = VideoUrl::field($module_set[$module]['select_field'])->alias('a')->where('id','in',$recommend_ids)->orderRand('rand()')->limit($page_num)->select()->toArray();
  344. $num2 = $page_num - count($list1);
  345. $list2 = $num2 <=0 ? [] : VideoUrl::field($module_set[$module]['select_field'])->alias('a')->where('id','in',$un_recommend)->orderRand('rand()')->limit($num2)->select()->toArray();
  346. $list = array_merge($list1,$list2);
  347. array_walk($list,function (&$v,$k){
  348. $v['cover_type'] = $k%7 ? 0 : 1;
  349. $v['create_at'] = substr($v['create_at'],0,10);
  350. $info_auth = VideoUrl::getVideoAuth($v['user_id'],APPNAME,APPLOGO);
  351. $v['app_name'] = $info_auth['app_name'];
  352. $v['app_logo'] = $info_auth['app_logo'];
  353. $v['read_num'] = numTransform($v['read_num']);
  354. });
  355. break;
  356. case 'Intro':
  357. // 第一页查询 安排redis
  358. $where_str = 'id > 0';
  359. foreach ($search_log as $t){
  360. $search_arr[] = $module_set[$module]["index_field"]." like '".'%'.$t."%'" .' ';
  361. $search_arr[] = "label like '".'%'.$t."%'" .' ';
  362. }
  363. // return $search_log;
  364. if($page == 1) {
  365. // 查询推荐id sql
  366. switch ($sort_type) {
  367. case 1:
  368. $order = ['sort'=>'desc','read_num'=>'desc'];
  369. break;
  370. case 2:
  371. $order = ['id'=>'asc','sort'=>'desc'];
  372. break;
  373. case 3:
  374. $order = ['id'=>'desc','sort'=>'desc'];
  375. break;
  376. }
  377. if(!empty($search_arr)) $where_str = implode(' OR ',$search_arr);
  378. $recommend_query = "SELECT a.id FROM " .$module_set[$module]['table'] . " a LEFT JOIN ( SELECT id,IF(id,1,1) is_recommend FROM ".$module_set[$module]['table']." b WHERE ( $where_str )) AS c ON c.id = a.id WHERE a.is_deleted = 0 AND a.status =1";
  379. $all_recommend = Db::query($recommend_query);
  380. // $all_recommend = DatumIntro::where($where_param)
  381. // ->alias('b')
  382. // ->where($where_str)
  383. // ->order($order)
  384. // ->column('id');
  385. // return $all_recommend;
  386. $recommend_ids = array_column($all_recommend,'id');// 推荐的
  387. $un_recommend = DatumIntro::where($where_param)->with('urlArr')
  388. // ->alias('b')
  389. ->where([['status','=',1],['is_deleted','=',0],['id','not in',$recommend_ids]])
  390. // ->where(['status'=>1,'is_deleted'=>0])
  391. // ->where($where_str)
  392. ->order($order)
  393. ->column('id');
  394. // $un_recommend = VideoUrl::where([['a.status','=',1],['a.is_deleted','=',0],['a.id','not in',$recommend_ids],['a.release_time','< time',$time_str]])
  395. // ->where(['k.status'=>1,'k.is_deleted'=>0])
  396. // ->alias('a')
  397. // ->leftJoin('video_intro k','k.id = a.video_id')
  398. // ->column('a.id');
  399. $redis->set($redis_set[0],implode(',',$recommend_ids),$redis_time);
  400. $redis->set($redis_set[2],implode(',',$un_recommend),$redis_time);
  401. $redis->set($redis_set[4],count($recommend_ids) + count($un_recommend),$redis_time);
  402. }else{
  403. $recommend_ids = $redis->get($redis_set[0]);// 所有推荐的id
  404. $recommend_ids = $recommend_ids ? explode(',',$recommend_ids) : [];
  405. $un_recommend = $redis->get($redis_set[2]);// 所有非推荐的id
  406. $un_recommend = $un_recommend ? explode(',',$un_recommend) : [];
  407. }
  408. $list1 = DatumIntro::field($module_set[$module]['select_field'])->alias('a')->where('id','in',$recommend_ids)->orderRand('rand()')->limit($page_num)->where('a.is_deleted',0)->where('a.status',1)->select()->toArray();
  409. $num2 = $page_num - count($list1);
  410. $list2 = $num2 <=0 ? [] : DatumIntro::field($module_set[$module]['select_field'])->alias('a')->where('id','in',$un_recommend)->orderRand('rand()')->limit($num2)->where('a.is_deleted',0)->where('a.status',1)->select()->toArray();
  411. $list = array_merge($list1,$list2);
  412. // array_walk($list,function (&$v,$k){
  413. // $v['cover_type'] = $k%7 ? 0 : 1;
  414. // $v['create_at'] = substr($v['create_at'],0,10);
  415. // $info_auth = VideoUrl::getVideoAuth($v['user_id'],APPNAME,APPLOGO);
  416. // $v['app_name'] = $info_auth['app_name'];
  417. // $v['app_logo'] = $info_auth['app_logo'];
  418. // $v['read_num'] = numTransform($v['read_num']);
  419. // });
  420. break;
  421. case "article":
  422. if($page == 1) {
  423. // 查询推荐id sql
  424. $recommend_query = "SELECT a.id FROM " .$module_set[$module]['table'] . " a LEFT JOIN ( SELECT id,IF(id,1,1) is_recommend FROM ".$module_set[$module]['table']." b WHERE ( $where_str )) AS c ON c.id = a.id Left JOIN dd_article_intro as k ON k.id = a.article_id WHERE a.is_deleted = 0 AND a.release_time < '".$time_str."' AND a.status =1 AND k.status = 1 AND k.is_deleted = 0 ";
  425. $all_recommend = Db::query($recommend_query);
  426. $recommend_ids = array_column($all_recommend,'id');// 推荐的
  427. $un_recommend = ArticleItem::where([['a.status','=',1],['a.is_deleted','=',0],['a.id','not in',$recommend_ids],['a.release_time','< time',$time_str]])
  428. ->where(['k.status'=>1,'k.is_deleted'=>0])
  429. ->alias('a')
  430. ->leftJoin('article_intro k','k.id = a.article_id')->column('a.id');
  431. $redis->set($redis_set[0],implode(',',$recommend_ids),$redis_time);
  432. $redis->set($redis_set[2],implode(',',$un_recommend),$redis_time);
  433. $redis->set($redis_set[4],count($recommend_ids) + count($un_recommend),$redis_time);
  434. }else{
  435. $recommend_ids = $redis->get($redis_set[0]);// 所有推荐的id
  436. $recommend_ids = $recommend_ids ? explode(',',$recommend_ids) : [];
  437. $un_recommend = $redis->get($redis_set[2]);// 所有非推荐的id
  438. $un_recommend = $un_recommend ? explode(',',$un_recommend) : [];
  439. }
  440. $list1 = ArticleItem::field($module_set[$module]['select_field'])->alias('a')->where('id','in',$recommend_ids)->orderRand('rand()')->limit($page_num)->select()->toArray();
  441. $num2 = $page_num - count($list1);
  442. $list2 = $num2 <=0 ? [] : ArticleItem::field($module_set[$module]['select_field'])->alias('a')->where('id','in',$un_recommend)->orderRand('rand()')->limit($num2)->select()->toArray();
  443. $list = array_merge($list1,$list2);
  444. array_walk($list,function (&$v,$k)use ($user_id){
  445. $v['read_num'] = numTransform($v['read_num']);
  446. $article_auth = ArticleItem::getArticleAuth($v['user_id'],APPNAME,APPLOGO);
  447. $v['app_name'] = $article_auth['app_name'];
  448. $v['app_logo'] = $article_auth['app_logo'];
  449. $v['images_arr'] = $v['images'] ? explode('|',$v['images']):null;
  450. $v['create_at'] = substr($v['create_at'],0,10);
  451. $v['is_release'] = UserLearn::checkRelease($user_id,3,$v['id']);
  452. $v['is_collect']= UserCollect::checkCollectByType($user_id,3,$v['article_id'],$v['id']);
  453. $v['is_like'] = ArticleLike::where(['user_id'=>$user_id,'article_id'=>$v['article_id'],'item_id'=>$v['id']])->count();
  454. $v['like_num'] = ArticleLike::where(['article_id'=>$v['article_id'],'item_id'=>$v['id']])->count();
  455. $v['collect_num'] = UserCollect::getCollectNum(3,$v['article_id'],$v['id']);
  456. });
  457. break;
  458. case "datum":
  459. if($page == 1) {
  460. // 查询推荐id sql
  461. $recommend_query = "SELECT a.id FROM " .$module_set[$module]['table'] . " a LEFT JOIN ( SELECT id,IF(id,1,1) is_recommend FROM ".$module_set[$module]['table']." b WHERE ( $where_str )) AS c ON c.id = a.id Left JOIN dd_datum_intro as k ON k.id = a.datum_id WHERE a.is_deleted = 0 AND a.release_time < '".$time_str."' AND a.status =1 AND k.status = 1 AND k.is_deleted = 0 ";
  462. $all_recommend = Db::query($recommend_query);
  463. $recommend_ids = array_column($all_recommend,'id');// 推荐的
  464. $un_recommend = DatumUrl::where([['a.status','=',1],['a.is_deleted','=',0],['a.id','not in',$recommend_ids],['a.release_time','< time',$time_str]])
  465. ->where(['k.status'=>1,'k.is_deleted'=>0])
  466. ->alias('a')
  467. ->leftJoin('datum_intro k','k.id = a.datum_id')->column('a.id');
  468. $redis->set($redis_set[0],implode(',',$recommend_ids),$redis_time);
  469. $redis->set($redis_set[2],implode(',',$un_recommend),$redis_time);
  470. $redis->set($redis_set[4],count($recommend_ids) + count($un_recommend),$redis_time);
  471. }else{
  472. $recommend_ids = $redis->get($redis_set[0]);// 所有推荐的id
  473. $recommend_ids = $recommend_ids ? explode(',',$recommend_ids) : [];
  474. $un_recommend = $redis->get($redis_set[2]);// 所有非推荐的id
  475. $un_recommend = $un_recommend ? explode(',',$un_recommend) : [];
  476. }
  477. $list1 = DatumUrl::field($module_set[$module]['select_field'])->alias('a')->where('id','in',$recommend_ids)->orderRand('rand()')->limit($page_num)->select()->toArray();
  478. $num2 = $page_num - count($list1);
  479. $list2 = $num2 <=0 ? [] : DatumUrl::field($module_set[$module]['select_field'])->alias('a')->where('id','in',$un_recommend)->orderRand('rand()')->limit($num2)->select()->toArray();
  480. $list = array_merge($list1,$list2);
  481. array_walk($list,function (&$v,$k)use ($user_id){
  482. $v['down_num'] = numTransform($v['down_num']);
  483. $v['read_num'] = numTransform($v['read_num']);
  484. $datum_auth = ArticleItem::getArticleAuth($v['user_id'],APPNAME,APPLOGO);
  485. $v['app_name'] = $datum_auth['app_name'];
  486. $v['app_logo'] = $datum_auth['app_logo'];
  487. $v['create_at'] = substr($v['create_at'],0,10);
  488. $v['is_release'] = UserLearn::checkRelease($user_id,2,$v['id']);
  489. });
  490. break;
  491. case "forum":
  492. if($page == 1) {
  493. // 查询推荐id sql
  494. $recommend_query = "SELECT a.id FROM " .$module_set[$module]['table'] . " a LEFT JOIN ( SELECT id,IF(id,1,1) is_recommend FROM ".$module_set[$module]['table']." b WHERE ( $where_str )) AS c ON c.id = a.id WHERE a.is_deleted = 0 AND a.status = 1 AND is_recommend = 1 AND a.release_time < '".$time_str."'";
  495. $all_recommend = Db::query($recommend_query);
  496. $recommend_ids = array_column($all_recommend,'id');// 推荐的
  497. $un_recommend = UserForum::where([['status','=',1],['is_deleted','=',0],['id','not in',$recommend_ids],['release_time','< time',$time_str]])->column('id');
  498. $redis->set($redis_set[0],implode(',',$recommend_ids),$redis_time);
  499. $redis->set($redis_set[2],implode(',',$un_recommend),$redis_time);
  500. $redis->set($redis_set[4],count($recommend_ids) + count($un_recommend),$redis_time);
  501. }else{
  502. $recommend_ids = $redis->get($redis_set[0]);// 所有推荐的id
  503. $recommend_ids = $recommend_ids ? explode(',',$recommend_ids) : [];
  504. $un_recommend = $redis->get($redis_set[2]);// 所有非推荐的id
  505. $un_recommend = $un_recommend ? explode(',',$un_recommend) : [];
  506. }
  507. $list1 = UserForum::field($module_set[$module]['select_field'])->alias('a')->where('a.id','in',$recommend_ids)->leftJoin('store_member u','u.id = a.user_id')->orderRand('rand()')->limit($page_num)->select()->toArray();
  508. $num2 = $page_num - count($list1);
  509. $list2 = $num2 <=0 ? [] : UserForum::field($module_set[$module]['select_field'])->alias('a')->where('a.id','in',$un_recommend)->leftJoin('store_member u','u.id = a.user_id')->orderRand('rand()')->limit($num2)->select()->toArray();
  510. $list = array_merge($list1,$list2);
  511. $user_level = UserLevelRank::getUserVip($user_id);
  512. array_walk($list, function (&$v, $k) use ($user_level) {
  513. $v['label_name'] = $v['label'] ? explode(',', trim($v['label'], ',')) : null;
  514. $reply_num = ForumReply::where(['forum_id' => $v['id']])->where('is_deleted', 0)->count();
  515. $v['reply_num'] = numTransform($reply_num);
  516. $v['browse_num'] = numTransform($v['browse_num']);
  517. if (!$v['name']) $v['name'] = APPNAME;
  518. if (!$v['headimg']) $v['headimg'] = APPLOGO;
  519. $v['open_vip'] = !$user_level && $v['level'] ? 1 : 0;
  520. });
  521. break;
  522. case "activity":
  523. if($page == 1) {
  524. // 查询推荐id sql
  525. $recommend_query = "SELECT a.id FROM " .$module_set[$module]['table'] . " a LEFT JOIN ( SELECT id,IF(id,1,1) is_recommend FROM ".$module_set[$module]['table']." b WHERE ( $where_str )) AS c ON c.id = a.id WHERE a.is_deleted = 0 AND a.status = 1 AND is_recommend = 1 AND a.release_time < '".$time_str."'";
  526. $all_recommend = Db::query($recommend_query);
  527. $recommend_ids = array_column($all_recommend,'id');// 推荐的
  528. $un_recommend = \app\common\model\Activity::where([['status','=',1],['is_deleted','=',0],['id','not in',$recommend_ids],['release_time','< time',$time_str]])->column('id');
  529. $redis->set($redis_set[0],implode(',',$recommend_ids),$redis_time);
  530. $redis->set($redis_set[2],implode(',',$un_recommend),$redis_time);
  531. $redis->set($redis_set[4],count($recommend_ids) + count($un_recommend),$redis_time);
  532. }else{
  533. $recommend_ids = $redis->get($redis_set[0]);// 所有推荐的id
  534. $recommend_ids = $recommend_ids ? explode(',',$recommend_ids) : [];
  535. $un_recommend = $redis->get($redis_set[2]);// 所有非推荐的id
  536. $un_recommend = $un_recommend ? explode(',',$un_recommend) : [];
  537. }
  538. $list1 = \app\common\model\Activity::field($module_set[$module]['select_field'])->alias('a')->where('a.id','in',$recommend_ids)->leftJoin('store_member u','u.id = a.user_id')->orderRand('rand()')->limit($page_num)->select()->toArray();
  539. $num2 = $page_num - count($list1);
  540. $list2 = $num2 <=0 ? [] : \app\common\model\Activity::field($module_set[$module]['select_field'])->alias('a')->where('a.id','in',$un_recommend)->leftJoin('store_member u','u.id = a.user_id')->orderRand('rand()')->limit($num2)->select()->toArray();
  541. $list = array_merge($list1,$list2);
  542. array_walk($list,function (&$v,$k)use ($user_id){
  543. $v['read_num'] = numTransform( $v['read_num']);
  544. $v['cover_arr'] = $v['cover'] ? explode('|',$v['cover']) : null;
  545. $v['cover'] = $v['cover_arr'] ? $v['cover_arr'][0]:null;
  546. $v['is_apply'] = ActivityApply::checkApply($user_id,$v['id']);
  547. $v['label_name'] = $v['label'] ? explode(',',trim($v['label'],',')): null;
  548. });
  549. break;
  550. case "demand":
  551. if($page == 1) {
  552. // 查询推荐id sql
  553. $recommend_query = "SELECT a.id FROM " .$module_set[$module]['table'] . " a LEFT JOIN ( SELECT id,IF(id,1,1) is_recommend FROM ".$module_set[$module]['table']." b WHERE ( $where_str )) AS c ON c.id = a.id WHERE a.is_deleted = 0 AND a.status = 1 AND is_recommend = 1 AND a.release_time < '".$time_str."'" . " AND is_over =" . $where_param['is_over'];
  554. $all_recommend = Db::query($recommend_query);
  555. $recommend_ids = array_column($all_recommend,'id');// 推荐的
  556. $un_recommend = PlatformDemand::where([['status','=',1],['is_deleted','=',0],['id','not in',$recommend_ids],['release_time','< time',$time_str],['is_over','=',$where_param['is_over']]])->column('id');
  557. $redis->set($redis_set[0],implode(',',$recommend_ids),$redis_time);
  558. $redis->set($redis_set[2],implode(',',$un_recommend),$redis_time);
  559. $redis->set($redis_set[4],count($recommend_ids) + count($un_recommend),$redis_time);
  560. }else{
  561. $recommend_ids = $redis->get($redis_set[0]);// 所有推荐的id
  562. $recommend_ids = $recommend_ids ? explode(',',$recommend_ids) : [];
  563. $un_recommend = $redis->get($redis_set[2]);// 所有非推荐的id
  564. $un_recommend = $un_recommend ? explode(',',$un_recommend) : [];
  565. }
  566. $list1 = PlatformDemand::field($module_set[$module]['select_field'])->alias('a')->where('id','in',$recommend_ids)->where('a.is_over',$where_param['is_over'])->orderRand('rand()')->limit($page_num)->select()->toArray();
  567. $num2 = $page_num - count($list1);
  568. $list2 = $num2 <=0 ? [] : PlatformDemand::field($module_set[$module]['select_field'])->alias('a')->where('id','in',$un_recommend)->where('a.is_over',$where_param['is_over'])->orderRand('rand()')->limit($num2)->select()->toArray();
  569. $list = array_merge($list1,$list2);
  570. array_walk($list,function (&$v,$k){
  571. $info_auth = PlatformDemand::getAuth($v['user_id'],APPNAME,APPLOGO);
  572. $v['app_name'] = $info_auth['app_name'];
  573. $v['app_logo'] = $info_auth['app_logo'];
  574. $v['label_name'] = $v['label']? explode(',',trim($v['label'],',')) : null;
  575. $v['cover_arr'] = explode('|',trim($v['cover'],'|'));
  576. $v['read_num'] = numTransform($v['read_num']);
  577. });
  578. break;
  579. case "press":
  580. // 第一页查询 安排redis
  581. if($page == 1) {
  582. // 查询推荐id sql
  583. $recommend_query = "SELECT a.id FROM " .$module_set[$module]['table'] . " a LEFT JOIN ( SELECT id,IF(id,1,1) is_recommend FROM ".$module_set[$module]['table']." b WHERE ( $where_str )) AS c ON c.id = a.id WHERE a.is_deleted = 0 AND a.status = 1 AND is_recommend = 1 AND a.release_time < '".$time_str."'";
  584. $all_recommend = Db::query($recommend_query);
  585. $recommend_ids = array_column($all_recommend,'id');// 推荐的
  586. $un_recommend = Press::where([['status','=',1],['is_deleted','=',0],['id','not in',$recommend_ids],['release_time','< time',$time_str]])->column('id');
  587. $redis->set($redis_set[0],implode(',',$recommend_ids),$redis_time);
  588. $redis->set($redis_set[2],implode(',',$un_recommend),$redis_time);
  589. $redis->set($redis_set[4],count($recommend_ids) + count($un_recommend),$redis_time);
  590. }else{
  591. $recommend_ids = $redis->get($redis_set[0]);// 所有推荐的id
  592. $recommend_ids = $recommend_ids ? explode(',',$recommend_ids) : [];
  593. $un_recommend = $redis->get($redis_set[2]);// 所有非推荐的id
  594. $un_recommend = $un_recommend ? explode(',',$un_recommend) : [];
  595. }
  596. $list1 = Press::field($module_set[$module]['select_field'])->alias('a')->where('id','in',$recommend_ids)->orderRand('rand()')->limit($page_num)->select()->toArray();
  597. $num2 = $page_num - count($list1);
  598. $list2 = $num2 <=0 ? [] : Press::field($module_set[$module]['select_field'])->alias('a')->where('id','in',$un_recommend)->orderRand('rand()')->limit($num2)->select()->toArray();
  599. $list = array_merge($list1,$list2);
  600. array_walk($list,function (&$v,$k)use ($user_id){
  601. $v['read_num'] = numTransform($v['read_num']);
  602. $v['transmit_num'] = numTransform($v['transmit_num']);
  603. $v['label_name'] = $v['label']? explode(',',trim($v['label'],',')) : null;
  604. $v['images_arr'] = $v['images']? explode('|',trim($v['images'],'|')):null;
  605. $info_auth = \app\common\model\Press::getInfoAuth($v['user_id'],APPNAME,APPLOGO);
  606. $v['app_name'] = $info_auth['app_name'];
  607. $v['app_logo'] = $info_auth['app_logo'];
  608. $v['comment_num'] = PressComment::getCommentNum($v['id']);
  609. $v['is_collect'] = UserCollect::checkCollectByType($user_id,4,$v['id']);
  610. $v['collect_num'] = UserCollect::getCollectNum(4,$v['id']);
  611. $v['is_praise'] = PlatformLike::checkTags($user_id,$v['id'],1);
  612. $v['praise_num'] = PlatformLike::getPraiseNum($v['id'],1);
  613. $v['switch_open'] = PlatformSwitch::checkSwitch($user_id,$v['id'],10);
  614. });
  615. shuffle($list);
  616. break;
  617. case "recruit":
  618. if(!$switch) {
  619. // 查询推荐id sql
  620. $recommend_query = "SELECT a.id FROM " .$module_set[$module]['table'] . " a LEFT JOIN ( SELECT id,IF(id,1,1) is_recommend FROM ".$module_set[$module]['table']." b WHERE ( $where_str )) AS c ON c.id = a.id WHERE a.is_deleted = 0 AND a.status = 1 AND is_recommend = 1 AND a.release_time < '".$time_str."'";
  621. if(isset($where_param['city']) && $where_param['city']) $recommend_query .=" AND a.city LIKE '".'%'.$where_param['city']."%'" ;
  622. // if(isset($where_param['education']) && $where_param['education']) $recommend_query .=" AND a.education = ".$where_param['education'] ;
  623. $all_recommend = Db::query($recommend_query);
  624. $recommend_ids = array_column($all_recommend,'id');// 推荐的
  625. $un_recommend = Recruit::where([['status','=',1],['is_deleted','=',0],['id','not in',$recommend_ids],['release_time','< time',$time_str]])
  626. ->when($where_param,function ($query)use ($where_param){
  627. if(isset($where_param['city']) && $where_param['city']) $query->where('city','like','%'.$where_param['city'].'%');
  628. if(isset($where_param['education']) && $where_param['education']) $query->where('education','=',$where_param['education']);
  629. })
  630. ->column('id');
  631. $redis->set($redis_set[0],implode(',',$recommend_ids),$redis_time);
  632. $redis->set($redis_set[2],implode(',',$un_recommend),$redis_time);
  633. $redis->set($redis_set[4],count($recommend_ids) + count($un_recommend),$redis_time);
  634. }else{
  635. $recommend_ids = $redis->get($redis_set[0]);// 所有推荐的id
  636. $recommend_ids = $recommend_ids ? explode(',',$recommend_ids) : [];
  637. $un_recommend = $redis->get($redis_set[2]);// 所有非推荐的id
  638. $un_recommend = $un_recommend ? explode(',',$un_recommend) : [];
  639. }
  640. $list1 = Recruit::field($module_set[$module]['select_field'])->alias('a')->where('id','in',$recommend_ids)
  641. ->when($where_param,function ($query)use ($where_param){
  642. if(isset($where_param['city']) && $where_param['city']) $query->where('a.city','like','%'.$where_param['city'].'%');
  643. })
  644. ->orderRand('rand()')->limit($page_num)->select()->toArray();
  645. $num2 = $page_num - count($list1);
  646. $list2 = $num2 <=0 ? [] : Recruit::field($module_set[$module]['select_field'])->alias('a')
  647. ->when($where_param,function ($query)use ($where_param){
  648. if(isset($where_param['city']) && $where_param['city']) $query->where('a.city','like','%'.$where_param['city'].'%');
  649. })
  650. ->where('id','in',$un_recommend)->orderRand('rand()')->limit($num2)->select()->toArray();
  651. $list = array_merge($list1,$list2);
  652. array_walk($list,function (&$v,$k){
  653. $auth_info = \app\common\model\Recruit::getAuth($v['user_id'],APPNAME,APPLOGO);
  654. $v['app_name'] = $auth_info['app_name'];
  655. $v['app_logo'] = $auth_info['app_logo'];
  656. $v['label_name'] = $v['label']? explode(',',trim($v['label'],',')) : null;
  657. $v['welfare_arr'] = explode(',',trim($v['welfare'],','));
  658. });
  659. break;
  660. case "supplier":
  661. if($page == 1) {
  662. // 查询推荐id sql
  663. $recommend_query = "SELECT a.id FROM " .$module_set[$module]['table'] . " a LEFT JOIN ( SELECT id,IF(id,1,1) is_recommend FROM ".$module_set[$module]['table']." b WHERE ( $where_str )) AS c ON c.id = a.id LEFT JOIN dd_supplier as k ON a.supplier_id = k.id WHERE a.is_deleted = 0 AND a.status = 1 AND k.status =1 AND k.is_deleted = 0 AND a.release_time < '".$time_str."'";
  664. $all_recommend = Db::query($recommend_query);
  665. $recommend_ids = array_column($all_recommend,'id');// 推荐的
  666. $un_recommend = SupplierGoods::where([['a.status','=',1],['a.is_deleted','=',0],['a.id','not in',$recommend_ids],['a.release_time','< time',$time_str],['k.status','=',1],['k.is_deleted','=',0]])->leftJoin('Supplier k','k.id = a.supplier_id')->alias('a')->column('a.id');
  667. $redis->set($redis_set[0],implode(',',$recommend_ids),$redis_time);
  668. $redis->set($redis_set[2],implode(',',$un_recommend),$redis_time);
  669. $redis->set($redis_set[4],count($recommend_ids) + count($un_recommend),$redis_time);
  670. }else{
  671. $recommend_ids = $redis->get($redis_set[0]);// 所有推荐的id
  672. $recommend_ids = $recommend_ids ? explode(',',$recommend_ids) : [];
  673. $un_recommend = $redis->get($redis_set[2]);// 所有非推荐的id
  674. $un_recommend = $un_recommend ? explode(',',$un_recommend) : [];
  675. }
  676. switch ($sort_type) {
  677. case 1:
  678. $order = ['c.is_top'=>'desc','c.id'=>'desc','c.like_times'=>'desc'];
  679. break;
  680. case 2:
  681. $order = ['c.is_top'=>'desc','c.like_times'=>'desc','c.id'=>'asc'];
  682. break;
  683. }
  684. $list1 = SupplierGoods::field($module_set[$module]['select_field'])->alias('a')->where('a.id','in',$recommend_ids)->leftJoin('Supplier k','k.id = a.supplier_id')->orderRand('rand()')->limit($page_num)->select()->toArray();
  685. $num2 = $page_num - count($list1);
  686. $list2 = $num2 <=0 ? [] : SupplierGoods::field($module_set[$module]['select_field'])->alias('a')->where('a.id','in',$un_recommend)->leftJoin('Supplier k','k.id = a.supplier_id')->orderRand('rand()')->limit($num2)->select()->toArray();
  687. $list = array_merge($list1,$list2);
  688. array_walk($list,function (&$v,$k){
  689. $v['read_num'] = numTransform($v['read_num']);
  690. $v['label_name'] = $v['label']? explode(',',trim($v['label'],',')) : null;
  691. $v['cover_arr'] = $v['cover']? explode('|',trim($v['cover'],'|')):null;
  692. });
  693. break;
  694. case "goods":
  695. if($page == 1) {
  696. // 查询推荐id sql
  697. $recommend_query = "SELECT a.id FROM " .$module_set[$module]['table'] . " a LEFT JOIN ( SELECT id,IF(id,1,1) is_recommend FROM ".$module_set[$module]['table']." b WHERE ( $where_str )) AS c ON c.id = a.id WHERE a.is_deleted = 0 AND a.status = 1 AND is_recommend = 1 AND a.release_time < '".$time_str."'";
  698. $all_recommend = Db::query($recommend_query);
  699. $recommend_ids = array_column($all_recommend,'id');// 推荐的
  700. $un_recommend = \app\common\model\StoreGoods::where([['status','=',1],['is_deleted','=',0],['id','not in',$recommend_ids],['release_time','< time',$time_str]])->column('id');
  701. $redis->set($redis_set[0],implode(',',$recommend_ids),$redis_time);
  702. $redis->set($redis_set[2],implode(',',$un_recommend),$redis_time);
  703. $redis->set($redis_set[4],count($recommend_ids) + count($un_recommend),$redis_time);
  704. }else{
  705. $recommend_ids = $redis->get($redis_set[0]);// 所有推荐的id
  706. $recommend_ids = $recommend_ids ? explode(',',$recommend_ids) : [];
  707. $un_recommend = $redis->get($redis_set[2]);// 所有非推荐的id
  708. $un_recommend = $un_recommend ? explode(',',$un_recommend) : [];
  709. }
  710. $list1 = \app\common\model\StoreGoods::field($module_set[$module]['select_field'])->alias('a')->where('id','in',$recommend_ids)->orderRand('rand()')->limit($page_num)->select()->toArray();
  711. $num2 = $page_num - count($list1);
  712. $list2 = $num2 <=0 ? [] : \app\common\model\StoreGoods::field($module_set[$module]['select_field'])->alias('a')->where('id','in',$un_recommend)->orderRand('rand()')->limit($num2)->select()->toArray();
  713. $list = array_merge($list1,$list2);
  714. array_walk($list,function (&$v,$k)use ($user_id){
  715. $v['label_name'] = $v['label'] ? explode(',',trim($v['label'],',')): null;
  716. $v['specs'] = json_decode($v['specs'],true);
  717. $v['item_list'] = StoreGoodsItem::getGoodsSpec($v['id']);
  718. $v['min_price'] = empty($v['item_list']) ? 0 : min(array_column($v['item_list'],'sell_price'));
  719. $v['max_price'] = empty($v['item_list']) ? 0 : max(array_column($v['item_list'],'sell_price'));
  720. $v['virtual'] = StoreGoods::getVirtualNum($v['id']);
  721. });
  722. break;
  723. }
  724. if(!empty($list1)) {
  725. $select1 = array_column($list1,'id');// 本次查询出推荐的id
  726. $diff = array_diff($recommend_ids,$select1);
  727. $redis->set($redis_set[0],implode(',',$diff),$redis_time);// 更新推荐的redis缓存
  728. $has_sel_re = $redis->get($redis_set[1]);// 已查询过推荐的id
  729. $new_sel_re = array_merge($select1,explode(',',$has_sel_re));
  730. $redis->set($redis_set[1],implode(',',$new_sel_re),$redis_time);// 更新已经查询的推荐的id
  731. }
  732. if(!empty($list2)) {
  733. $select2 = array_column($list2,'id');// 本次查询出推荐的id
  734. $diff = array_diff($un_recommend,$select2);
  735. $redis->set($redis_set[2],implode(',',$diff),$redis_time);// 更新非推荐的redis缓存
  736. $has_sel_un = $redis->get($redis_set[3]);// 已查询过非推荐的id
  737. $new_sel_un = array_merge($select2,explode(',',$has_sel_un));
  738. $redis->set($redis_set[3],implode(',',$new_sel_un),$redis_time);// 更新已经查询的非推荐的id
  739. }
  740. // 查询数据不足
  741. if(count($list) < $page_num) {
  742. $redis->set($redis_set[5],0,$redis_time);// 设置已查询状态
  743. }else{
  744. $residue_recommend_ids = $redis->get($redis_set[0]);// 所有剩余推荐的id
  745. return $residue_recommend_ids;
  746. $residue_recommend_ids = $residue_recommend_ids ? explode(',',$residue_recommend_ids) : [];
  747. $residue_un_recommend = $redis->get($redis_set[2]);// 所有剩余非推荐的id
  748. $residue_un_recommend = $residue_un_recommend ? explode(',',$residue_un_recommend) : [];
  749. // 没有剩余数据
  750. if(count($residue_recommend_ids) + count($residue_un_recommend) == 0) {
  751. $redis->set($redis_set[5],0,$redis_time);// 设置已查询状态
  752. }
  753. }
  754. return ['code'=>200,'list'=>$list,'total_count'=>$redis->get($redis_set[4],0),'page_num'=>$page_num,'user_id'=>$user_id];
  755. }
  756. // 短信发送
  757. public static function phoneMessageSend($phone,$key,$data)
  758. {
  759. $mud_arr = [];
  760. $mud_arr[0] = [
  761. 'name'=> '会前1天',//模板名称
  762. 'tem_code'=> 'SMS_460985703',// 模板code
  763. 'param' => [
  764. 'ActivityName'=>isset($data['ActivityName']) ? $data['ActivityName'] : '' ,
  765. 'time'=>isset($data['time']) ? $data['time'] : '' ,
  766. 'adress'=>isset($data['adress']) ? $data['adress'] : '' ,
  767. 'url'=> isset($data['url']) ? $data['url'] : '' ,
  768. ]
  769. ];
  770. $mud_arr[1] = [
  771. 'name'=> '免费票有审核,审核成功',//模板名称
  772. 'tem_code'=> 'SMS_460970747',// 模板code
  773. 'param' => [
  774. 'ActivityName'=>isset($data['ActivityName']) ? $data['ActivityName'] : '' ,
  775. 'url'=> isset($data['url']) ? $data['url'] : '' ,
  776. ]
  777. ];
  778. $mud_arr[2] = [
  779. 'name'=> ' 后台主动修改时间地点短信短信通知',//模板名称
  780. 'tem_code'=> 'SMS_461030378',// 模板code
  781. 'param' => [
  782. 'ActivityName'=>isset($data['ActivityName']) ? $data['ActivityName'] : '' ,
  783. 'time'=>isset($data['time']) ? $data['time'] : '' ,
  784. 'adress'=>isset($data['adress']) ? $data['adress'] : '' ,
  785. ]
  786. ];
  787. AlibabaCloud::accessKeyClient('LTAI5tJ5p12drZegeWVG33xZ', '82UWAiY5e5wH8tSkRvMtqVoGO0h8SB')->regionId('cn-hangzhou')->asDefaultClient();
  788. try {
  789. $result = AlibabaCloud::rpc()
  790. ->product('Dysmsapi')
  791. ->version('2017-05-25')
  792. ->action('SendSms')
  793. ->method('POST')
  794. ->host('dysmsapi.aliyuncs.com')
  795. ->options([
  796. 'query' => [
  797. 'RegionId' => "cn-hangzhou",
  798. 'PhoneNumbers' => $phone,
  799. 'SignName' => "搞一下汽车电子",
  800. 'TemplateCode' => $mud_arr[$key]['tem_code'],
  801. 'TemplateParam' => json_encode($mud_arr[$key]['param']),
  802. ],
  803. ])->request();
  804. $result = $result->toArray();
  805. if($result['Code'] != "OK") return ['code'=>201,'msg'=>'发送失败'];
  806. } catch (ClientException $e) {
  807. return ['code'=>201,'msg'=>$e->getErrorMessage().PHP_EOL];
  808. } catch (ServerException $e) {
  809. return ['code'=>201,'msg'=>$e->getErrorMessage().PHP_EOL];
  810. }catch (\Exception $e){
  811. return ['code'=>201,'msg'=>$e->getMessage()];
  812. }
  813. return ['code'=>200,'msg'=>'发送成功'];
  814. }
  815. // 邮件推送
  816. public static function emailSend($email,$title)
  817. {
  818. if(!strpos($email,'@'))return ['code'=>201,'msg'=>'邮箱格式有误'];
  819. require_once env('root_path').'vendor/aliyunmail/aliyun-php-sdk-core/Config.php';
  820. $iClientProfile = \DefaultProfile::getProfile("cn-hangzhou", "LTAI5tJ5p12drZegeWVG33xZ", "82UWAiY5e5wH8tSkRvMtqVoGO0h8SB");
  821. $client = new \DefaultAcsClient($iClientProfile);
  822. $request = new Dm\SingleSendMailRequest();
  823. $request->setAccountName("gyx@yzm.gyxqcdz.com");
  824. $request->setFromAlias("活动提示");
  825. $request->setAddressType(1);
  826. $request->setTagName("activity");
  827. $request->setReplyToAddress("true");
  828. $request->setToAddress($email);
  829. $request->setSubject("活动提示");
  830. $html_body = '您报名的活动'.$title.'已发生变更。';
  831. $request->setHtmlBody($html_body);
  832. $send_res = $client->getAcsResponse($request);
  833. return ['code'=>200,'msg'=>'发送成功'];
  834. }
  835. //门票邮件推送
  836. public static function ticketSend($ticket_id)
  837. {
  838. $ticket_info = ActivityApplyItem::where('id',$ticket_id)->find()->toArray();
  839. if(!$ticket_info['email']) return ['code'=>201,'msg'=>'邮件为空'];
  840. if(!strpos($ticket_info['email'],'@'))return ['code'=>201,'msg'=>'邮箱格式有误'];
  841. $email = $ticket_info['email'];
  842. $act_info = \app\common\model\Activity::where('id',$ticket_info['act_id'])->find()->toArray();
  843. $sponsor_info = ActivitySponsor::where('id',$act_info['sponsor_id'])->find();
  844. require_once env('root_path').'vendor/aliyunmail/aliyun-php-sdk-core/Config.php';
  845. $iClientProfile = \DefaultProfile::getProfile("cn-hangzhou", "LTAI5tJ5p12drZegeWVG33xZ", "82UWAiY5e5wH8tSkRvMtqVoGO0h8SB");
  846. $client = new \DefaultAcsClient($iClientProfile);
  847. $request = new Dm\SingleSendMailRequest();
  848. $request->setAccountName("gyx@yzm.gyxqcdz.com");
  849. $request->setFromAlias("活动提示");
  850. $request->setAddressType(1);
  851. $request->setTagName("activity");
  852. $request->setReplyToAddress("true");
  853. $request->setToAddress($email);
  854. $request->setSubject("活动提示");
  855. $act_title = $act_info['title'];
  856. $user_name =$ticket_info['name'];
  857. $qr_code = $ticket_info['qr_code'];
  858. $qr_content= $ticket_info['qr_content'];
  859. $server_url1= 'https://'.$_SERVER['SERVER_NAME'].'/static/t1.png';
  860. $server_url2= 'https://'.$_SERVER['SERVER_NAME'].'/static/t2.png';
  861. $server_url3= 'https://'.$_SERVER['SERVER_NAME'].'/static/t3.png';
  862. $sponsor_name = $sponsor_info ? $sponsor_info->title : '官方主办';
  863. $time = $act_info['start_time'].'-'.$act_info['end_time'];
  864. $address = $act_info['province'].$act_info['city'].$act_info['county'].$act_info['address'];
  865. $html_body = "<html lang=\"en\">
  866. <head>
  867. <meta charset=\"UTF-8\">
  868. <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">
  869. <title></title>
  870. <style>
  871. *{
  872. padding: 0;
  873. margin: 0;
  874. }
  875. .imgBox {
  876. text-align: center;
  877. position: relative;
  878. }
  879. .bottomInfo {
  880. background-color: #fff;
  881. padding: 20px 10px;
  882. }
  883. .bottomInfo .content {
  884. display: flex;
  885. align-items: center;
  886. line-height: 36px;
  887. font-size: 13px;
  888. }
  889. .bottomInfo .content img {
  890. width: 20px;
  891. height: 20px;
  892. margin-right: 10px;
  893. }
  894. .bottom {
  895. font-size: 13px;
  896. text-align: center;
  897. margin-top: 18px;
  898. }
  899. .signInfo {
  900. background-color: #fff;
  901. border-bottom: 1px dotted #222;
  902. padding: 20px 10px;
  903. }
  904. .signInfo .qrBox {
  905. display: flex;
  906. flex-direction: column;
  907. justify-content: center;
  908. align-items: center;
  909. }
  910. .signInfo .qrTitle {
  911. font-size: 16px;
  912. font-weight: bold;
  913. margin-bottom: 12px;
  914. }
  915. .signInfo .qrCode {
  916. width: 211px;
  917. height: 211px;
  918. }
  919. .signInfo .warn {
  920. font-size: 12px;
  921. color: #666666;
  922. }
  923. .signInfo .code {
  924. width: 151px;
  925. height: 40px;
  926. line-height: 40px;
  927. text-align: center;
  928. border-radius: 6px;
  929. border: 1px solid #2A63F3;
  930. font-size: 14px;
  931. color: #2A63F3;
  932. margin: 16px 0 16px;
  933. }
  934. .titleBox {
  935. margin: 10px 0;
  936. padding: 0 10px;
  937. line-height: 39px;
  938. background: #FFFFFF;
  939. border-radius: 10px;
  940. }
  941. .titleBox .title {
  942. font-size: 15px;
  943. font-weight: bold;
  944. }
  945. .tips img {
  946. width: 14px;
  947. height: 14px;
  948. margin-right: 2px;
  949. }
  950. button {
  951. font-size: 18px;
  952. color: #fff;
  953. font-weight: bold;
  954. position: fixed;
  955. bottom: 34px;
  956. left: 50%;
  957. transform: translateX(-50%);
  958. width: 351px;
  959. height: 48px;
  960. line-height: 48px;
  961. text-align: center;
  962. background: #2A63F3;
  963. border-radius: 24px;
  964. }
  965. .info {
  966. padding: 0 12px;
  967. }
  968. .wrap {
  969. width: 700px;
  970. min-height: 100vh;
  971. display: flex;
  972. flex-direction: column;
  973. /* padding: 44px 0 83px; */
  974. box-sizing: border-box;
  975. background-color: #f4f4f4;
  976. }
  977. /* 头部样式 */
  978. .header-wrap {
  979. width: 100%;
  980. height: 44px;
  981. display: flex;
  982. flex-direction: column;
  983. position: fixed;
  984. top: 0;
  985. left: 0;
  986. z-index: 500;
  987. background-color: #ffffff;
  988. }
  989. .header {
  990. width: 100%;
  991. height: 44px;
  992. display: flex;
  993. align-items: center;
  994. justify-content: center;
  995. background-color: #ffffff;
  996. z-index: 999;
  997. padding: 0 15px;
  998. position: relative;
  999. box-sizing: border-box;
  1000. }
  1001. .return-img {
  1002. position: absolute;
  1003. left: 15px;
  1004. top: 50%;
  1005. transform: translate(0, -50%);
  1006. width: 20px;
  1007. height: 20px;
  1008. }
  1009. .header-title {
  1010. /* flex: 1; */
  1011. display: -webkit-box;
  1012. -webkit-line-clamp: 1;
  1013. overflow: hidden;
  1014. text-overflow: ellipsis;
  1015. -webkit-box-orient: vertical;
  1016. color: #333333;
  1017. font-size: 18px;
  1018. font-weight: bold;
  1019. box-sizing: border-box;
  1020. }
  1021. .header-btn-box {
  1022. display: flex;
  1023. align-items: center;
  1024. position: absolute;
  1025. right: 12px;
  1026. top: 50%;
  1027. transform: translate(0, -50%);
  1028. }
  1029. .header-btn-box>button {
  1030. margin-right: 10px;
  1031. }
  1032. .header-btn-box>button:last-child {
  1033. margin-right: 0;
  1034. }
  1035. .header-btn-box>button>img {
  1036. height: 24px;
  1037. }
  1038. </style>
  1039. </head>
  1040. <body>
  1041. <div class=\"wrap\">
  1042. <div class=\"info\">
  1043. <div class=\"titleBox\">
  1044. <div class=\"title\">
  1045. $act_title
  1046. </div>
  1047. <div class=\"person\">
  1048. 参会者:$user_name
  1049. </div>
  1050. </div>
  1051. <div class=\"signInfo\">
  1052. <div class=\"qrBox\">
  1053. <div class=\"qrTitle\">
  1054. 签到码-用于现场签到
  1055. </div>
  1056. <div class=\"imgBox\">
  1057. <img class=\"qrCode\" src=\"$qr_code\" alt=\"\">
  1058. </div>
  1059. <div class=\"code\">
  1060. 签到码:$qr_content
  1061. </div>
  1062. <div class=\"warn\">
  1063. 仅限本人使用
  1064. </div>
  1065. </div>
  1066. </div>
  1067. <div>
  1068. <div class=\"bottomInfo\">
  1069. <div class=\"content\">
  1070. <img src=\"$server_url1\" alt=\"\">
  1071. $sponsor_name
  1072. </div>
  1073. <div class=\"content\">
  1074. <img src=\"$server_url2\" alt=\"\">
  1075. $time
  1076. </div>
  1077. <div class=\"content\">
  1078. <img src=\"$server_url3\" alt=\"\">
  1079. $address
  1080. </div>
  1081. </div>
  1082. </div>
  1083. </div>
  1084. <div class=\"bottom\">
  1085. 此二维码用于现场签到,请携带至会场
  1086. </div>
  1087. </div>
  1088. </body>
  1089. </html>";
  1090. $request->setHtmlBody($html_body);
  1091. $send_res = $client->getAcsResponse($request);
  1092. return ['code'=>200,'msg'=>'发送成功'];
  1093. }
  1094. }