UserSynth.php 62 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182
  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. $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) 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."'";
  496. // return $recommend_query;
  497. $all_recommend = Db::query($recommend_query);
  498. $recommend_ids = array_column($all_recommend,'id');// 推荐的
  499. $un_recommend = UserForum::where([['status','=',1],['is_deleted','=',0],['id','not in',$recommend_ids],['release_time','< time',$time_str]])->column('id');
  500. $redis->set($redis_set[0],implode(',',$recommend_ids),$redis_time);
  501. $redis->set($redis_set[2],implode(',',$un_recommend),$redis_time);
  502. $redis->set($redis_set[4],count($recommend_ids) + count($un_recommend),$redis_time);
  503. }else{
  504. $recommend_ids = $redis->get($redis_set[0]);// 所有推荐的id
  505. $recommend_ids = $recommend_ids ? explode(',',$recommend_ids) : [];
  506. $un_recommend = $redis->get($redis_set[2]);// 所有非推荐的id
  507. $un_recommend = $un_recommend ? explode(',',$un_recommend) : [];
  508. }
  509. $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();
  510. $num2 = $page_num - count($list1);
  511. $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();
  512. $list = array_merge($list1,$list2);
  513. $user_level = UserLevelRank::getUserVip($user_id);
  514. array_walk($list, function (&$v, $k) use ($user_level) {
  515. $v['label_name'] = $v['label'] ? explode(',', trim($v['label'], ',')) : null;
  516. $reply_num = ForumReply::where(['forum_id' => $v['id']])->where('is_deleted', 0)->count();
  517. $v['reply_num'] = numTransform($reply_num);
  518. $v['browse_num'] = numTransform($v['browse_num']);
  519. if (!$v['name']) $v['name'] = APPNAME;
  520. if (!$v['headimg']) $v['headimg'] = APPLOGO;
  521. $v['open_vip'] = !$user_level && $v['level'] ? 1 : 0;
  522. });
  523. break;
  524. case "activity":
  525. if($page == 1) {
  526. // 查询推荐id sql
  527. $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."'";
  528. $all_recommend = Db::query($recommend_query);
  529. $recommend_ids = array_column($all_recommend,'id');// 推荐的
  530. $un_recommend = \app\common\model\Activity::where([['status','=',1],['is_deleted','=',0],['id','not in',$recommend_ids],['release_time','< time',$time_str]])->column('id');
  531. $redis->set($redis_set[0],implode(',',$recommend_ids),$redis_time);
  532. $redis->set($redis_set[2],implode(',',$un_recommend),$redis_time);
  533. $redis->set($redis_set[4],count($recommend_ids) + count($un_recommend),$redis_time);
  534. }else{
  535. $recommend_ids = $redis->get($redis_set[0]);// 所有推荐的id
  536. $recommend_ids = $recommend_ids ? explode(',',$recommend_ids) : [];
  537. $un_recommend = $redis->get($redis_set[2]);// 所有非推荐的id
  538. $un_recommend = $un_recommend ? explode(',',$un_recommend) : [];
  539. }
  540. $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();
  541. $num2 = $page_num - count($list1);
  542. $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();
  543. $list = array_merge($list1,$list2);
  544. array_walk($list,function (&$v,$k)use ($user_id){
  545. $v['read_num'] = numTransform( $v['read_num']);
  546. $v['cover_arr'] = $v['cover'] ? explode('|',$v['cover']) : null;
  547. $v['cover'] = $v['cover_arr'] ? $v['cover_arr'][0]:null;
  548. $v['is_apply'] = ActivityApply::checkApply($user_id,$v['id']);
  549. $v['label_name'] = $v['label'] ? explode(',',trim($v['label'],',')): null;
  550. });
  551. break;
  552. case "demand":
  553. if($page == 1) {
  554. // 查询推荐id sql
  555. $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'];
  556. $all_recommend = Db::query($recommend_query);
  557. $recommend_ids = array_column($all_recommend,'id');// 推荐的
  558. $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');
  559. $redis->set($redis_set[0],implode(',',$recommend_ids),$redis_time);
  560. $redis->set($redis_set[2],implode(',',$un_recommend),$redis_time);
  561. $redis->set($redis_set[4],count($recommend_ids) + count($un_recommend),$redis_time);
  562. }else{
  563. $recommend_ids = $redis->get($redis_set[0]);// 所有推荐的id
  564. $recommend_ids = $recommend_ids ? explode(',',$recommend_ids) : [];
  565. $un_recommend = $redis->get($redis_set[2]);// 所有非推荐的id
  566. $un_recommend = $un_recommend ? explode(',',$un_recommend) : [];
  567. }
  568. $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();
  569. $num2 = $page_num - count($list1);
  570. $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();
  571. $list = array_merge($list1,$list2);
  572. array_walk($list,function (&$v,$k){
  573. $info_auth = PlatformDemand::getAuth($v['user_id'],APPNAME,APPLOGO);
  574. $v['app_name'] = $info_auth['app_name'];
  575. $v['app_logo'] = $info_auth['app_logo'];
  576. $v['label_name'] = $v['label']? explode(',',trim($v['label'],',')) : null;
  577. $v['cover_arr'] = explode('|',trim($v['cover'],'|'));
  578. $v['read_num'] = numTransform($v['read_num']);
  579. });
  580. break;
  581. case "press":
  582. // 第一页查询 安排redis
  583. if($page == 1) {
  584. // 查询推荐id sql
  585. $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."'";
  586. $all_recommend = Db::query($recommend_query);
  587. $recommend_ids = array_column($all_recommend,'id');// 推荐的
  588. $un_recommend = Press::where([['status','=',1],['is_deleted','=',0],['id','not in',$recommend_ids],['release_time','< time',$time_str]])->column('id');
  589. $redis->set($redis_set[0],implode(',',$recommend_ids),$redis_time);
  590. $redis->set($redis_set[2],implode(',',$un_recommend),$redis_time);
  591. $redis->set($redis_set[4],count($recommend_ids) + count($un_recommend),$redis_time);
  592. }else{
  593. $recommend_ids = $redis->get($redis_set[0]);// 所有推荐的id
  594. $recommend_ids = $recommend_ids ? explode(',',$recommend_ids) : [];
  595. $un_recommend = $redis->get($redis_set[2]);// 所有非推荐的id
  596. $un_recommend = $un_recommend ? explode(',',$un_recommend) : [];
  597. }
  598. $list1 = Press::field($module_set[$module]['select_field'])->alias('a')->where('id','in',$recommend_ids)->orderRand('rand()')->limit($page_num)->select()->toArray();
  599. $num2 = $page_num - count($list1);
  600. $list2 = $num2 <=0 ? [] : Press::field($module_set[$module]['select_field'])->alias('a')->where('id','in',$un_recommend)->orderRand('rand()')->limit($num2)->select()->toArray();
  601. $list = array_merge($list1,$list2);
  602. array_walk($list,function (&$v,$k)use ($user_id){
  603. $v['read_num'] = numTransform($v['read_num']);
  604. $v['transmit_num'] = numTransform($v['transmit_num']);
  605. $v['label_name'] = $v['label']? explode(',',trim($v['label'],',')) : null;
  606. $v['images_arr'] = $v['images']? explode('|',trim($v['images'],'|')):null;
  607. $info_auth = \app\common\model\Press::getInfoAuth($v['user_id'],APPNAME,APPLOGO);
  608. $v['app_name'] = $info_auth['app_name'];
  609. $v['app_logo'] = $info_auth['app_logo'];
  610. $v['comment_num'] = PressComment::getCommentNum($v['id']);
  611. $v['is_collect'] = UserCollect::checkCollectByType($user_id,4,$v['id']);
  612. $v['collect_num'] = UserCollect::getCollectNum(4,$v['id']);
  613. $v['is_praise'] = PlatformLike::checkTags($user_id,$v['id'],1);
  614. $v['praise_num'] = PlatformLike::getPraiseNum($v['id'],1);
  615. $v['switch_open'] = PlatformSwitch::checkSwitch($user_id,$v['id'],10);
  616. });
  617. shuffle($list);
  618. break;
  619. case "recruit":
  620. if(!$switch) {
  621. // 查询推荐id sql
  622. $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."'";
  623. if(isset($where_param['city']) && $where_param['city']) $recommend_query .=" AND a.city LIKE '".'%'.$where_param['city']."%'" ;
  624. // if(isset($where_param['education']) && $where_param['education']) $recommend_query .=" AND a.education = ".$where_param['education'] ;
  625. $all_recommend = Db::query($recommend_query);
  626. $recommend_ids = array_column($all_recommend,'id');// 推荐的
  627. $un_recommend = Recruit::where([['status','=',1],['is_deleted','=',0],['id','not in',$recommend_ids],['release_time','< time',$time_str]])
  628. ->when($where_param,function ($query)use ($where_param){
  629. if(isset($where_param['city']) && $where_param['city']) $query->where('city','like','%'.$where_param['city'].'%');
  630. if(isset($where_param['education']) && $where_param['education']) $query->where('education','=',$where_param['education']);
  631. })
  632. ->column('id');
  633. $redis->set($redis_set[0],implode(',',$recommend_ids),$redis_time);
  634. $redis->set($redis_set[2],implode(',',$un_recommend),$redis_time);
  635. $redis->set($redis_set[4],count($recommend_ids) + count($un_recommend),$redis_time);
  636. }else{
  637. $recommend_ids = $redis->get($redis_set[0]);// 所有推荐的id
  638. $recommend_ids = $recommend_ids ? explode(',',$recommend_ids) : [];
  639. $un_recommend = $redis->get($redis_set[2]);// 所有非推荐的id
  640. $un_recommend = $un_recommend ? explode(',',$un_recommend) : [];
  641. }
  642. $list1 = Recruit::field($module_set[$module]['select_field'])->alias('a')->where('id','in',$recommend_ids)
  643. ->when($where_param,function ($query)use ($where_param){
  644. if(isset($where_param['city']) && $where_param['city']) $query->where('a.city','like','%'.$where_param['city'].'%');
  645. })
  646. ->orderRand('rand()')->limit($page_num)->select()->toArray();
  647. $num2 = $page_num - count($list1);
  648. $list2 = $num2 <=0 ? [] : Recruit::field($module_set[$module]['select_field'])->alias('a')
  649. ->when($where_param,function ($query)use ($where_param){
  650. if(isset($where_param['city']) && $where_param['city']) $query->where('a.city','like','%'.$where_param['city'].'%');
  651. })
  652. ->where('id','in',$un_recommend)->orderRand('rand()')->limit($num2)->select()->toArray();
  653. $list = array_merge($list1,$list2);
  654. array_walk($list,function (&$v,$k){
  655. $auth_info = \app\common\model\Recruit::getAuth($v['user_id'],APPNAME,APPLOGO);
  656. $v['app_name'] = $auth_info['app_name'];
  657. $v['app_logo'] = $auth_info['app_logo'];
  658. $v['label_name'] = $v['label']? explode(',',trim($v['label'],',')) : null;
  659. $v['welfare_arr'] = explode(',',trim($v['welfare'],','));
  660. });
  661. break;
  662. case "supplier":
  663. if($page == 1) {
  664. // 查询推荐id sql
  665. $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."'";
  666. $all_recommend = Db::query($recommend_query);
  667. $recommend_ids = array_column($all_recommend,'id');// 推荐的
  668. $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');
  669. $redis->set($redis_set[0],implode(',',$recommend_ids),$redis_time);
  670. $redis->set($redis_set[2],implode(',',$un_recommend),$redis_time);
  671. $redis->set($redis_set[4],count($recommend_ids) + count($un_recommend),$redis_time);
  672. }else{
  673. $recommend_ids = $redis->get($redis_set[0]);// 所有推荐的id
  674. $recommend_ids = $recommend_ids ? explode(',',$recommend_ids) : [];
  675. $un_recommend = $redis->get($redis_set[2]);// 所有非推荐的id
  676. $un_recommend = $un_recommend ? explode(',',$un_recommend) : [];
  677. }
  678. switch ($sort_type) {
  679. case 1:
  680. $order = ['c.is_top'=>'desc','c.id'=>'desc','c.like_times'=>'desc'];
  681. break;
  682. case 2:
  683. $order = ['c.is_top'=>'desc','c.like_times'=>'desc','c.id'=>'asc'];
  684. break;
  685. }
  686. $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();
  687. $num2 = $page_num - count($list1);
  688. $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();
  689. $list = array_merge($list1,$list2);
  690. array_walk($list,function (&$v,$k){
  691. $v['read_num'] = numTransform($v['read_num']);
  692. $v['label_name'] = $v['label']? explode(',',trim($v['label'],',')) : null;
  693. $v['cover_arr'] = $v['cover']? explode('|',trim($v['cover'],'|')):null;
  694. });
  695. break;
  696. case "goods":
  697. if($page == 1) {
  698. // 查询推荐id sql
  699. $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."'";
  700. $all_recommend = Db::query($recommend_query);
  701. $recommend_ids = array_column($all_recommend,'id');// 推荐的
  702. $un_recommend = \app\common\model\StoreGoods::where([['status','=',1],['is_deleted','=',0],['id','not in',$recommend_ids],['release_time','< time',$time_str]])->column('id');
  703. $redis->set($redis_set[0],implode(',',$recommend_ids),$redis_time);
  704. $redis->set($redis_set[2],implode(',',$un_recommend),$redis_time);
  705. $redis->set($redis_set[4],count($recommend_ids) + count($un_recommend),$redis_time);
  706. }else{
  707. $recommend_ids = $redis->get($redis_set[0]);// 所有推荐的id
  708. $recommend_ids = $recommend_ids ? explode(',',$recommend_ids) : [];
  709. $un_recommend = $redis->get($redis_set[2]);// 所有非推荐的id
  710. $un_recommend = $un_recommend ? explode(',',$un_recommend) : [];
  711. }
  712. $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();
  713. $num2 = $page_num - count($list1);
  714. $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();
  715. $list = array_merge($list1,$list2);
  716. array_walk($list,function (&$v,$k)use ($user_id){
  717. $v['label_name'] = $v['label'] ? explode(',',trim($v['label'],',')): null;
  718. $v['specs'] = json_decode($v['specs'],true);
  719. $v['item_list'] = StoreGoodsItem::getGoodsSpec($v['id']);
  720. $v['min_price'] = empty($v['item_list']) ? 0 : min(array_column($v['item_list'],'sell_price'));
  721. $v['max_price'] = empty($v['item_list']) ? 0 : max(array_column($v['item_list'],'sell_price'));
  722. $v['virtual'] = StoreGoods::getVirtualNum($v['id']);
  723. });
  724. break;
  725. }
  726. if(!empty($list1)) {
  727. $select1 = array_column($list1,'id');// 本次查询出推荐的id
  728. $diff = array_diff($recommend_ids,$select1);
  729. $redis->set($redis_set[0],implode(',',$diff),$redis_time);// 更新推荐的redis缓存
  730. $has_sel_re = $redis->get($redis_set[1]);// 已查询过推荐的id
  731. $new_sel_re = array_merge($select1,explode(',',$has_sel_re));
  732. $redis->set($redis_set[1],implode(',',$new_sel_re),$redis_time);// 更新已经查询的推荐的id
  733. }
  734. if(!empty($list2)) {
  735. $select2 = array_column($list2,'id');// 本次查询出推荐的id
  736. $diff = array_diff($un_recommend,$select2);
  737. $redis->set($redis_set[2],implode(',',$diff),$redis_time);// 更新非推荐的redis缓存
  738. $has_sel_un = $redis->get($redis_set[3]);// 已查询过非推荐的id
  739. $new_sel_un = array_merge($select2,explode(',',$has_sel_un));
  740. $redis->set($redis_set[3],implode(',',$new_sel_un),$redis_time);// 更新已经查询的非推荐的id
  741. }
  742. // 查询数据不足
  743. if(count($list) < $page_num) {
  744. $redis->set($redis_set[5],0,$redis_time);// 设置已查询状态
  745. }else{
  746. $residue_recommend_ids = $redis->get($redis_set[0]);// 所有剩余推荐的id
  747. // return $residue_recommend_ids;
  748. $residue_recommend_ids = $residue_recommend_ids ? explode(',',$residue_recommend_ids) : [];
  749. $residue_un_recommend = $redis->get($redis_set[2]);// 所有剩余非推荐的id
  750. $residue_un_recommend = $residue_un_recommend ? explode(',',$residue_un_recommend) : [];
  751. // 没有剩余数据
  752. if(count($residue_recommend_ids) + count($residue_un_recommend) == 0) {
  753. $redis->set($redis_set[5],0,$redis_time);// 设置已查询状态
  754. }
  755. }
  756. return ['code'=>200,'list'=>$list,'total_count'=>$redis->get($redis_set[4],0),'page_num'=>$page_num,'user_id'=>$user_id];
  757. }
  758. // 短信发送
  759. public static function phoneMessageSend($phone,$key,$data)
  760. {
  761. $mud_arr = [];
  762. $mud_arr[0] = [
  763. 'name'=> '会前1天',//模板名称
  764. 'tem_code'=> 'SMS_460985703',// 模板code
  765. 'param' => [
  766. 'ActivityName'=>isset($data['ActivityName']) ? $data['ActivityName'] : '' ,
  767. 'time'=>isset($data['time']) ? $data['time'] : '' ,
  768. 'adress'=>isset($data['adress']) ? $data['adress'] : '' ,
  769. 'url'=> isset($data['url']) ? $data['url'] : '' ,
  770. ]
  771. ];
  772. $mud_arr[1] = [
  773. 'name'=> '免费票有审核,审核成功',//模板名称
  774. 'tem_code'=> 'SMS_460970747',// 模板code
  775. 'param' => [
  776. 'ActivityName'=>isset($data['ActivityName']) ? $data['ActivityName'] : '' ,
  777. 'url'=> isset($data['url']) ? $data['url'] : '' ,
  778. ]
  779. ];
  780. $mud_arr[2] = [
  781. 'name'=> ' 后台主动修改时间地点短信短信通知',//模板名称
  782. 'tem_code'=> 'SMS_461030378',// 模板code
  783. 'param' => [
  784. 'ActivityName'=>isset($data['ActivityName']) ? $data['ActivityName'] : '' ,
  785. 'time'=>isset($data['time']) ? $data['time'] : '' ,
  786. 'adress'=>isset($data['adress']) ? $data['adress'] : '' ,
  787. ]
  788. ];
  789. AlibabaCloud::accessKeyClient('LTAI5tJ5p12drZegeWVG33xZ', '82UWAiY5e5wH8tSkRvMtqVoGO0h8SB')->regionId('cn-hangzhou')->asDefaultClient();
  790. try {
  791. $result = AlibabaCloud::rpc()
  792. ->product('Dysmsapi')
  793. ->version('2017-05-25')
  794. ->action('SendSms')
  795. ->method('POST')
  796. ->host('dysmsapi.aliyuncs.com')
  797. ->options([
  798. 'query' => [
  799. 'RegionId' => "cn-hangzhou",
  800. 'PhoneNumbers' => $phone,
  801. 'SignName' => "搞一下汽车电子",
  802. 'TemplateCode' => $mud_arr[$key]['tem_code'],
  803. 'TemplateParam' => json_encode($mud_arr[$key]['param']),
  804. ],
  805. ])->request();
  806. $result = $result->toArray();
  807. if($result['Code'] != "OK") return ['code'=>201,'msg'=>'发送失败'];
  808. } catch (ClientException $e) {
  809. return ['code'=>201,'msg'=>$e->getErrorMessage().PHP_EOL];
  810. } catch (ServerException $e) {
  811. return ['code'=>201,'msg'=>$e->getErrorMessage().PHP_EOL];
  812. }catch (\Exception $e){
  813. return ['code'=>201,'msg'=>$e->getMessage()];
  814. }
  815. return ['code'=>200,'msg'=>'发送成功'];
  816. }
  817. // 邮件推送
  818. public static function emailSend($email,$title)
  819. {
  820. if(!strpos($email,'@'))return ['code'=>201,'msg'=>'邮箱格式有误'];
  821. require_once env('root_path').'vendor/aliyunmail/aliyun-php-sdk-core/Config.php';
  822. $iClientProfile = \DefaultProfile::getProfile("cn-hangzhou", "LTAI5tJ5p12drZegeWVG33xZ", "82UWAiY5e5wH8tSkRvMtqVoGO0h8SB");
  823. $client = new \DefaultAcsClient($iClientProfile);
  824. $request = new Dm\SingleSendMailRequest();
  825. $request->setAccountName("gyx@yzm.gyxqcdz.com");
  826. $request->setFromAlias("活动提示");
  827. $request->setAddressType(1);
  828. $request->setTagName("activity");
  829. $request->setReplyToAddress("true");
  830. $request->setToAddress($email);
  831. $request->setSubject("活动提示");
  832. $html_body = '您报名的活动'.$title.'已发生变更。';
  833. $request->setHtmlBody($html_body);
  834. $send_res = $client->getAcsResponse($request);
  835. return ['code'=>200,'msg'=>'发送成功'];
  836. }
  837. //门票邮件推送
  838. public static function ticketSend($ticket_id)
  839. {
  840. $ticket_info = ActivityApplyItem::where('id',$ticket_id)->find()->toArray();
  841. if(!$ticket_info['email']) return ['code'=>201,'msg'=>'邮件为空'];
  842. if(!strpos($ticket_info['email'],'@'))return ['code'=>201,'msg'=>'邮箱格式有误'];
  843. $email = $ticket_info['email'];
  844. $act_info = \app\common\model\Activity::where('id',$ticket_info['act_id'])->find()->toArray();
  845. $sponsor_info = ActivitySponsor::where('id',$act_info['sponsor_id'])->find();
  846. require_once env('root_path').'vendor/aliyunmail/aliyun-php-sdk-core/Config.php';
  847. $iClientProfile = \DefaultProfile::getProfile("cn-hangzhou", "LTAI5tJ5p12drZegeWVG33xZ", "82UWAiY5e5wH8tSkRvMtqVoGO0h8SB");
  848. $client = new \DefaultAcsClient($iClientProfile);
  849. $request = new Dm\SingleSendMailRequest();
  850. $request->setAccountName("gyx@yzm.gyxqcdz.com");
  851. $request->setFromAlias("活动提示");
  852. $request->setAddressType(1);
  853. $request->setTagName("activity");
  854. $request->setReplyToAddress("true");
  855. $request->setToAddress($email);
  856. $request->setSubject("活动提示");
  857. $act_title = $act_info['title'];
  858. $user_name =$ticket_info['name'];
  859. $qr_code = $ticket_info['qr_code'];
  860. $qr_content= $ticket_info['qr_content'];
  861. $server_url1= 'https://'.$_SERVER['SERVER_NAME'].'/static/t1.png';
  862. $server_url2= 'https://'.$_SERVER['SERVER_NAME'].'/static/t2.png';
  863. $server_url3= 'https://'.$_SERVER['SERVER_NAME'].'/static/t3.png';
  864. $sponsor_name = $sponsor_info ? $sponsor_info->title : '官方主办';
  865. $time = $act_info['start_time'].'-'.$act_info['end_time'];
  866. $address = $act_info['province'].$act_info['city'].$act_info['county'].$act_info['address'];
  867. $html_body = "<html lang=\"en\">
  868. <head>
  869. <meta charset=\"UTF-8\">
  870. <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">
  871. <title></title>
  872. <style>
  873. *{
  874. padding: 0;
  875. margin: 0;
  876. }
  877. .imgBox {
  878. text-align: center;
  879. position: relative;
  880. }
  881. .bottomInfo {
  882. background-color: #fff;
  883. padding: 20px 10px;
  884. }
  885. .bottomInfo .content {
  886. display: flex;
  887. align-items: center;
  888. line-height: 36px;
  889. font-size: 13px;
  890. }
  891. .bottomInfo .content img {
  892. width: 20px;
  893. height: 20px;
  894. margin-right: 10px;
  895. }
  896. .bottom {
  897. font-size: 13px;
  898. text-align: center;
  899. margin-top: 18px;
  900. }
  901. .signInfo {
  902. background-color: #fff;
  903. border-bottom: 1px dotted #222;
  904. padding: 20px 10px;
  905. }
  906. .signInfo .qrBox {
  907. display: flex;
  908. flex-direction: column;
  909. justify-content: center;
  910. align-items: center;
  911. }
  912. .signInfo .qrTitle {
  913. font-size: 16px;
  914. font-weight: bold;
  915. margin-bottom: 12px;
  916. }
  917. .signInfo .qrCode {
  918. width: 211px;
  919. height: 211px;
  920. }
  921. .signInfo .warn {
  922. font-size: 12px;
  923. color: #666666;
  924. }
  925. .signInfo .code {
  926. width: 240px;
  927. height: 40px;
  928. line-height: 40px;
  929. text-align: center;
  930. border-radius: 6px;
  931. border: 1px solid #2A63F3;
  932. font-size: 14px;
  933. color: #2A63F3;
  934. margin: 16px 0 16px;
  935. }
  936. .titleBox {
  937. margin: 10px 0;
  938. padding: 0 10px;
  939. line-height: 39px;
  940. background: #FFFFFF;
  941. border-radius: 10px;
  942. }
  943. .titleBox .title {
  944. font-size: 15px;
  945. font-weight: bold;
  946. }
  947. .tips img {
  948. width: 14px;
  949. height: 14px;
  950. margin-right: 2px;
  951. }
  952. button {
  953. font-size: 18px;
  954. color: #fff;
  955. font-weight: bold;
  956. position: fixed;
  957. bottom: 34px;
  958. left: 50%;
  959. transform: translateX(-50%);
  960. width: 351px;
  961. height: 48px;
  962. line-height: 48px;
  963. text-align: center;
  964. background: #2A63F3;
  965. border-radius: 24px;
  966. }
  967. .info {
  968. padding: 0 12px;
  969. }
  970. .wrap {
  971. width: 700px;
  972. min-height: 100vh;
  973. display: flex;
  974. flex-direction: column;
  975. /* padding: 44px 0 83px; */
  976. box-sizing: border-box;
  977. background-color: #f4f4f4;
  978. }
  979. /* 头部样式 */
  980. .header-wrap {
  981. width: 100%;
  982. height: 44px;
  983. display: flex;
  984. flex-direction: column;
  985. position: fixed;
  986. top: 0;
  987. left: 0;
  988. z-index: 500;
  989. background-color: #ffffff;
  990. }
  991. .header {
  992. width: 100%;
  993. height: 44px;
  994. display: flex;
  995. align-items: center;
  996. justify-content: center;
  997. background-color: #ffffff;
  998. z-index: 999;
  999. padding: 0 15px;
  1000. position: relative;
  1001. box-sizing: border-box;
  1002. }
  1003. .return-img {
  1004. position: absolute;
  1005. left: 15px;
  1006. top: 50%;
  1007. transform: translate(0, -50%);
  1008. width: 20px;
  1009. height: 20px;
  1010. }
  1011. .header-title {
  1012. /* flex: 1; */
  1013. display: -webkit-box;
  1014. -webkit-line-clamp: 1;
  1015. overflow: hidden;
  1016. text-overflow: ellipsis;
  1017. -webkit-box-orient: vertical;
  1018. color: #333333;
  1019. font-size: 18px;
  1020. font-weight: bold;
  1021. box-sizing: border-box;
  1022. }
  1023. .header-btn-box {
  1024. display: flex;
  1025. align-items: center;
  1026. position: absolute;
  1027. right: 12px;
  1028. top: 50%;
  1029. transform: translate(0, -50%);
  1030. }
  1031. .header-btn-box>button {
  1032. margin-right: 10px;
  1033. }
  1034. .header-btn-box>button:last-child {
  1035. margin-right: 0;
  1036. }
  1037. .header-btn-box>button>img {
  1038. height: 24px;
  1039. }
  1040. </style>
  1041. </head>
  1042. <body>
  1043. <div class=\"wrap\">
  1044. <div class=\"info\">
  1045. <div class=\"titleBox\">
  1046. <div class=\"title\">
  1047. $act_title
  1048. </div>
  1049. <div class=\"person\">
  1050. 参会者:$user_name
  1051. </div>
  1052. </div>
  1053. <div class=\"signInfo\">
  1054. <div class=\"qrBox\">
  1055. <div class=\"qrTitle\">
  1056. 签到码-用于现场签到
  1057. </div>
  1058. <div class=\"imgBox\">
  1059. <img class=\"qrCode\" src=\"$qr_code\" alt=\"\">
  1060. </div>
  1061. <div class=\"code\">
  1062. 签到码:$qr_content
  1063. </div>
  1064. <div class=\"warn\">
  1065. 仅限本人使用
  1066. </div>
  1067. </div>
  1068. </div>
  1069. <div>
  1070. <div class=\"bottomInfo\">
  1071. <div class=\"content\">
  1072. <img src=\"$server_url1\" alt=\"\">
  1073. $sponsor_name
  1074. </div>
  1075. <div class=\"content\">
  1076. <img src=\"$server_url2\" alt=\"\">
  1077. $time
  1078. </div>
  1079. <div class=\"content\">
  1080. <img src=\"$server_url3\" alt=\"\">
  1081. $address
  1082. </div>
  1083. </div>
  1084. </div>
  1085. </div>
  1086. <div class=\"bottom\">
  1087. 此二维码用于现场签到,请携带至会场
  1088. </div>
  1089. </div>
  1090. </body>
  1091. </html>";
  1092. $request->setHtmlBody($html_body);
  1093. $send_res = $client->getAcsResponse($request);
  1094. return ['code'=>200,'msg'=>'发送成功'];
  1095. }
  1096. }