截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IndexLogic.php 24KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630
  1. <?php
  2. namespace app\api\logic;
  3. use app\common\basics\Logic;
  4. use app\common\enum\CommunityArticleEnum;
  5. use app\common\enum\FootprintEnum;
  6. use app\common\enum\ShopEnum;
  7. use app\common\model\community\CommunityArticle;
  8. use app\common\model\content\Article;
  9. use app\common\model\DevRegion;
  10. use app\common\model\goods\Goods;
  11. use app\common\enum\GoodsEnum;
  12. use app\common\model\shop\Shop;
  13. use app\common\model\goods\GoodsCategory;
  14. use app\common\server\ConfigServer;
  15. use app\common\server\UrlServer;
  16. use app\api\logic\SeckillGoodsLogic;
  17. use think\facade\Db;
  18. use app\common\model\activity_area\ActivityArea;
  19. use think\facade\Event;
  20. class IndexLogic extends Logic
  21. {
  22. public static function index($user_id,$terminal,$city)
  23. {
  24. // 记录访问足迹
  25. event('Footprint', [
  26. 'type' => FootprintEnum::ENTER_MALL,
  27. 'user_id' => $user_id
  28. ]);
  29. // 记录统计信息(用户访问量)
  30. Event::listen('UserStat', 'app\common\listener\UserStat');
  31. event('UserStat');
  32. // 商城头条
  33. $headlines = self::getHeadlines();
  34. // 热销榜单
  35. $hots = self::getHots();
  36. // 新品推荐
  37. $news = self::getNews();
  38. // 推荐店铺列表
  39. $shopLists = self::getShopList();
  40. // 精选推荐店铺
  41. $shopRecommend = self::getShopRecommend();
  42. // 秒杀商品
  43. $seckillTimes = SeckillGoodsLogic::seckillTime();
  44. $seckillGoods = [];
  45. foreach($seckillTimes as $item) {
  46. $item['goods'] = SeckillGoodsLogic::getSeckillGoodsTwo($item['id'],$terminal);
  47. $seckillGoods[] = $item;
  48. }
  49. //活动专区
  50. $activity_area = ActivityArea::field('id,name,synopsis as title,image')->where(['del'=>0,'status'=>1])->select();
  51. foreach ($activity_area as &$area_item){
  52. $area_item['image'] = UrlServer::getFileUrl($area_item['image']);
  53. }
  54. // 种草社区文章
  55. $communityArticle = self::getCommunityArticle();
  56. // 附近店铺
  57. $nearbyShops = empty($city) ? [] : self::getNearbyShops($city);
  58. return [
  59. 'headlines' => $headlines,
  60. 'hots' => $hots,
  61. 'news' => $news,
  62. 'activity_area' => $activity_area,
  63. 'shop_lists' => $shopLists,
  64. 'shop_recommend' => $shopRecommend,
  65. 'seckill_goods' => $seckillGoods,
  66. 'community_article' => $communityArticle,
  67. 'nearby_shops' => $nearbyShops
  68. ];
  69. }
  70. /**
  71. * 获取商城头条
  72. */
  73. public static function getHeadlines()
  74. {
  75. $headlines = Article::field('id,title')
  76. ->where([
  77. 'del' => 0,
  78. 'is_show' => 1,
  79. 'is_notice' => 1, // 是否为商城公告
  80. ])
  81. ->order([
  82. 'create_time' => 'desc',
  83. 'id' => 'desc'
  84. ])
  85. ->limit(3)
  86. ->select()
  87. ->toArray();
  88. return $headlines;
  89. }
  90. /**
  91. * 获取热销榜单
  92. */
  93. public static function getHots()
  94. {
  95. // 销售中商品:未删除/审核通过/已上架
  96. $onSaleWhere = [
  97. 'del' => GoodsEnum::DEL_NORMAL, // 未删除
  98. 'status' => GoodsEnum::STATUS_SHELVES, // 上架中
  99. 'audit_status' => GoodsEnum::AUDIT_STATUS_OK, // 审核通过
  100. ];
  101. $order = [
  102. 'sales_total' => 'desc', // 实际销量+虚拟销量倒序
  103. 'sales_actual' => 'desc', // 实际销量倒序
  104. 'sort_weight' => 'asc', // 商品权重
  105. 'id' => 'desc'
  106. ];
  107. $hots = Goods::field('id,name,image,min_price,market_price,sales_actual,create_time,sales_virtual,(sales_actual + sales_virtual) as sales_total')
  108. ->where($onSaleWhere)
  109. ->order($order)
  110. ->limit(9)
  111. ->select()
  112. ->toArray();
  113. return $hots;
  114. }
  115. /**
  116. * 获取新品推荐
  117. */
  118. public static function getNews()
  119. {
  120. // 销售中商品:未删除/审核通过/已上架
  121. $onSaleWhere = [
  122. 'g.del' => GoodsEnum::DEL_NORMAL, // 未删除
  123. 'g.status' => GoodsEnum::STATUS_SHELVES, // 上架中
  124. 'g.audit_status' => GoodsEnum::AUDIT_STATUS_OK, // 审核通过
  125. 's.del' => 0, // 店铺未删除
  126. 's.is_freeze' => ShopEnum::SHOP_FREEZE_NORMAL, // 未冻结
  127. 's.is_run' => ShopEnum::SHOP_RUN_OPEN, // 营业中
  128. ];
  129. $order = [
  130. 'g.create_time' => 'desc', // 创建时间
  131. 'sales_actual' => 'desc', // 实际销量
  132. 'sort_weight' => 'asc', // 商品权重
  133. 'g.id' => 'desc'
  134. ];
  135. $field = 'g.id,g.name,g.image,g.min_price,g.market_price,g.sales_actual,g.create_time,g.sales_virtual,(sales_actual + sales_virtual) as sales_total';
  136. $news = (new Goods)->alias('g')
  137. ->join('shop s', 's.id = g.shop_id')
  138. ->field($field)
  139. ->where($onSaleWhere)
  140. ->order($order)
  141. ->limit(3)
  142. ->select()
  143. ->toArray();
  144. return $news;
  145. }
  146. /**
  147. * 获取推荐店铺列表
  148. */
  149. public static function getShopList()
  150. {
  151. $where = [
  152. ['del', '=', 0],
  153. ['is_recommend', '=', 1],
  154. ['is_freeze', '=', 0],
  155. ['is_run', '=', 1],
  156. ];
  157. $order = [
  158. 'weight' => 'asc',
  159. 'id' => 'desc'
  160. ];
  161. $shopLists = Db::name('shop')
  162. ->field('id,name,logo,background,expire_time,cover,banner,visited_num')
  163. ->where($where)
  164. ->order($order)
  165. ->select()
  166. ->toArray();
  167. // 计算在线销售商品
  168. $goodsWhere = [
  169. 'del' => GoodsEnum::DEL_NORMAL, // 未删除
  170. 'status' => GoodsEnum::STATUS_SHELVES, // 上架中
  171. 'audit_status' => GoodsEnum::AUDIT_STATUS_OK, // 审核通过
  172. ];
  173. foreach($shopLists as $key => &$shop) {
  174. $shop['expire'] = $shop['expire_time'];
  175. $shop['expire_time'] = self::getExpire($shop['expire_time']);
  176. if(!empty($shop['expire']) && $shop['expire'] <= time()) {
  177. // 去除到期店铺
  178. unset($shopLists[$key]);
  179. continue;
  180. }
  181. $goodsWhere['shop_id'] = $shop['id'];
  182. $shop['on_sales_count'] = Goods::where($goodsWhere)->count();
  183. // logo及背景图
  184. $shop['logo'] = $shop['logo'] ? UrlServer::getFileUrl($shop['logo']) : UrlServer::getFileUrl(ShopEnum::DEFAULT_LOGO);
  185. $shop['background'] = $shop['background'] ? UrlServer::getFileUrl($shop['background']) : UrlServer::getFileUrl(ShopEnum::DEFAULT_BG);
  186. $shop['cover'] = $shop['cover'] ? UrlServer::getFileUrl($shop['cover']) : UrlServer::getFileUrl(ShopEnum::DEFAULT_COVER);
  187. $shop['banner'] = $shop['banner'] ? UrlServer::getFileUrl($shop['banner']) : '';
  188. }
  189. return array_values($shopLists);
  190. }
  191. public static function getExpire($value)
  192. {
  193. return $value === 0 ? '无期限' : date('Y-m-d H:i:s', $value);
  194. }
  195. /**
  196. * 精选推荐店铺
  197. */
  198. public static function getShopRecommend()
  199. {
  200. $where = [
  201. ['del', '=', 0],
  202. ['is_recommend', '=', 1],
  203. ['is_freeze', '=', 0],
  204. ['is_run', '=', 1],
  205. ];
  206. $order = [
  207. 'weight' => 'asc',
  208. 'id' => 'desc'
  209. ];
  210. $shopLists = Db::name('shop')
  211. ->field('id,name,logo,background,expire_time,cover,banner,visited_num')
  212. ->where($where)
  213. ->order($order)
  214. ->select()
  215. ->toArray();
  216. // 去除过期店铺
  217. foreach($shopLists as $key => $shop) {
  218. $shop['expire'] = $shop['expire_time'];
  219. $shop['expire_time'] = self::getExpire($shop['expire_time']);
  220. if(!empty($shop['expire']) && $shop['expire'] <= time()) {
  221. // 去除到期店铺
  222. unset($shopLists[$key]);
  223. continue;
  224. }
  225. }
  226. // 取最前面的3家
  227. $shopLists = array_slice($shopLists, 0, 3);
  228. // 店铺信息
  229. foreach($shopLists as &$shop) {
  230. // 店铺推荐商品
  231. $goodsWhere = [
  232. ['del', '=', GoodsEnum::DEL_NORMAL], // 未删除
  233. ['status', '=', GoodsEnum::STATUS_SHELVES], // 上架中
  234. ['audit_status', '=', GoodsEnum::AUDIT_STATUS_OK], // 审核通过
  235. ['is_recommend', '=', 1], // 推荐商品
  236. ['shop_id', '=', $shop['id']]
  237. ];
  238. $shop['goods_list'] = Goods::field('id,image,name,min_price,market_price')
  239. ->where($goodsWhere)
  240. ->order([
  241. 'sort_weight' => 'asc',
  242. 'id' => 'desc'
  243. ])
  244. ->limit(9)
  245. ->select()
  246. ->toArray();
  247. // logo及背景图
  248. $shop['logo'] = $shop['logo'] ? UrlServer::getFileUrl($shop['logo']) : UrlServer::getFileUrl(ShopEnum::DEFAULT_LOGO);
  249. $shop['background'] = $shop['background'] ? UrlServer::getFileUrl($shop['background']) : UrlServer::getFileUrl(ShopEnum::DEFAULT_BG);
  250. $shop['cover'] = $shop['cover'] ? UrlServer::getFileUrl($shop['cover']) : UrlServer::getFileUrl(ShopEnum::DEFAULT_COVER);
  251. $shop['banner'] = $shop['banner'] ? UrlServer::getFileUrl($shop['banner']) : '';
  252. }
  253. return $shopLists;
  254. }
  255. /**
  256. * @notes 附近店铺
  257. * @param $city
  258. * @return array
  259. * @throws \think\db\exception\DataNotFoundException
  260. * @throws \think\db\exception\DbException
  261. * @throws \think\db\exception\ModelNotFoundException
  262. * @author ljj
  263. * @date 2022/9/20 3:37 下午
  264. */
  265. public static function getNearbyShops($city)
  266. {
  267. $where[] = ['del', '=', 0];
  268. $where[] = ['is_freeze', '=', 0];
  269. $where[] = ['is_run', '=', 1];
  270. $where[] = ['city_id', '=', $city];
  271. $city = DevRegion::where('id',$city)->field('db09_lng,db09_lat')->findOrEmpty()->toArray();
  272. $shopLists = Db::name('shop')
  273. ->field('id,name,logo,background,expire_time,cover,banner,visited_num,longitude,latitude,round(st_distance_sphere(point('.$city['db09_lng'].','.$city['db09_lat'].'),point(longitude, latitude)),2) as distance')
  274. ->where($where)
  275. ->order('distance asc')
  276. ->limit(5)
  277. ->select()
  278. ->toArray();
  279. // 去除过期店铺
  280. foreach($shopLists as $key => $shop) {
  281. $shop['expire'] = $shop['expire_time'];
  282. $shop['expire_time'] = self::getExpire($shop['expire_time']);
  283. if(!empty($shop['expire']) && $shop['expire'] <= time()) {
  284. // 去除到期店铺
  285. unset($shopLists[$key]);
  286. continue;
  287. }
  288. }
  289. // 店铺信息
  290. foreach($shopLists as &$shop) {
  291. // 计算在线销售商品
  292. $goodsWhere = [
  293. 'del' => GoodsEnum::DEL_NORMAL, // 未删除
  294. 'status' => GoodsEnum::STATUS_SHELVES, // 上架中
  295. 'audit_status' => GoodsEnum::AUDIT_STATUS_OK, // 审核通过
  296. ];
  297. $goodsWhere['shop_id'] = $shop['id'];
  298. $shop['on_sales_count'] = Goods::where($goodsWhere)->count();
  299. // logo及背景图
  300. $shop['logo'] = $shop['logo'] ? UrlServer::getFileUrl($shop['logo']) : UrlServer::getFileUrl(ShopEnum::DEFAULT_LOGO);
  301. $shop['background'] = $shop['background'] ? UrlServer::getFileUrl($shop['background']) : UrlServer::getFileUrl(ShopEnum::DEFAULT_BG);
  302. $shop['cover'] = $shop['cover'] ? UrlServer::getFileUrl($shop['cover']) : UrlServer::getFileUrl(ShopEnum::DEFAULT_COVER);
  303. $shop['banner'] = $shop['banner'] ? UrlServer::getFileUrl($shop['banner']) : '';
  304. }
  305. return $shopLists;
  306. }
  307. public static function indexCategory($platform_category_id)
  308. {
  309. // 二级分类
  310. $levelTwo = self::levelTwo($platform_category_id);
  311. // 品类热销
  312. $categoryHots = self::categoryHots($platform_category_id);
  313. // 品类推荐
  314. $categoryRecommend = self::categoryRecommend($platform_category_id);
  315. return [
  316. 'level_two' => $levelTwo,
  317. 'category_hots' => $categoryHots,
  318. 'category_recommend' => $categoryRecommend
  319. ];
  320. }
  321. public static function levelTwo($platform_category_id)
  322. {
  323. $where = [
  324. 'del' => 0,
  325. 'is_show' => 1,
  326. 'pid' => $platform_category_id
  327. ];
  328. $order = [
  329. 'sort' => 'asc',
  330. 'id' => 'desc'
  331. ];
  332. $levelTwo = GoodsCategory::field('id,name,image')
  333. ->where($where)
  334. ->order($order)
  335. ->select()
  336. ->toArray();
  337. return $levelTwo;
  338. }
  339. public static function categoryHots($platform_category_id)
  340. {
  341. // 销售中商品:未删除/审核通过/已上架
  342. $where = [
  343. ['del', '=', GoodsEnum::DEL_NORMAL], // 未删除
  344. ['status', '=', GoodsEnum::STATUS_SHELVES], // 上架中
  345. ['audit_status', '=', GoodsEnum::AUDIT_STATUS_OK], // 审核通过
  346. ['first_cate_id|second_cate_id|third_cate_id', '=', $platform_category_id], // 分类id
  347. ];
  348. $order = [
  349. 'sales_actual' => 'desc', // 实际销量倒序
  350. 'id' => 'desc'
  351. ];
  352. $lists = Goods::field('id,name,image,min_price,market_price,sales_actual,(sales_actual + sales_virtual) as sales_total')
  353. ->where($where)
  354. ->order($order)
  355. ->limit(9)
  356. ->select()
  357. ->toArray();
  358. return $lists;
  359. }
  360. public static function categoryRecommend($platform_category_id)
  361. {
  362. // 销售中商品:未删除/审核通过/已上架
  363. $where = [
  364. ['del', '=', GoodsEnum::DEL_NORMAL], // 未删除
  365. ['status', '=', GoodsEnum::STATUS_SHELVES], // 上架中
  366. ['audit_status', '=', GoodsEnum::AUDIT_STATUS_OK], // 审核通过
  367. ['first_cate_id|second_cate_id|third_cate_id', '=', $platform_category_id], // 分类id
  368. ['is_recommend', '=', 1] // 推荐商品
  369. ];
  370. $order = [
  371. 'sales_actual' => 'desc', // 实际销量倒序
  372. 'id' => 'desc'
  373. ];
  374. $lists = Goods::field('id,name,image,min_price,market_price,sales_actual,(sales_actual + sales_virtual) as sales_total')
  375. ->where($where)
  376. ->order($order)
  377. ->limit(3)
  378. ->select()
  379. ->toArray();
  380. return $lists;
  381. }
  382. public static function config()
  383. {
  384. $navigation = Db::name('dev_navigation')
  385. ->field('name,status,page_path,selected_icon,un_selected_icon')
  386. ->where('del', 0)
  387. ->order('id', 'desc')
  388. ->withAttr('selected_icon',function($value,$data){
  389. return UrlServer::getFileUrl($value);
  390. })
  391. ->withAttr('un_selected_icon',function($value,$data){
  392. return UrlServer::getFileUrl($value);
  393. })
  394. ->select();
  395. $share_h5 = ConfigServer::get('share', 'h5', [
  396. 'h5_share_title' => '',
  397. 'h5_share_intro' => '',
  398. 'h5_share_image' => ''
  399. ]);
  400. if($share_h5['h5_share_image']){
  401. $share_h5['h5_share_image'] = UrlServer::getFileUrl($share_h5['h5_share_image']);
  402. }
  403. $share_mnp = ConfigServer::get('share', 'mnp', [
  404. 'mnp_share_title' => '',
  405. 'mnp_share_image' => ''
  406. ]);
  407. if (empty($share_mnp['mnp_share_image'])) {
  408. $share_mnp['mnp_share_image'] = '';
  409. } else {
  410. $share_mnp['mnp_share_image'] = UrlServer::getFileUrl($share_mnp['mnp_share_image']);
  411. }
  412. //首页顶部背景图
  413. $index_top_bg = ConfigServer::get('decoration_index', 'background_image', '');
  414. if (!empty($index_top_bg)) {
  415. $index_top_bg = UrlServer::getFileUrl($index_top_bg);
  416. }
  417. //个人中心背景图
  418. $center_top_bg = ConfigServer::get('decoration_center', 'background_image', '');
  419. if (!empty($center_top_bg)) {
  420. $center_top_bg = UrlServer::getFileUrl($center_top_bg);
  421. }
  422. // 站点统计
  423. $site_statistic = ConfigServer::get('site_statistic');
  424. $config = [
  425. 'shop_hide_goods' => ConfigServer::get('decoration', 'shop_hide_goods', 0), //商品详细是否显示店铺
  426. 'shop_street_hide' => ConfigServer::get('decoration', 'shop_street_hide', 1), //是否显示店铺街
  427. 'register_setting' => ConfigServer::get('register', 'captcha', 0),//注册设置-是否开启短信验证注册
  428. 'app_wechat_login' => ConfigServer::get('app', 'wechat_login', 0),//APP是否允许微信授权登录
  429. 'shop_login_logo' => UrlServer::getFileUrl(ConfigServer::get('website', 'client_login_logo')),//移动端商城logo
  430. 'pc_login_logo' => UrlServer::getFileUrl(ConfigServer::get('website', 'pc_client_login_logo')), //pc登录封面
  431. 'web_favicon' => UrlServer::getFileUrl(ConfigServer::get('website', 'web_favicon')),//浏览器标签图标
  432. 'name' => ConfigServer::get('website', 'name'),//商城名称
  433. 'copyright_info' => ConfigServer::get('copyright', 'company_name'),//版权信息
  434. 'icp_number' => ConfigServer::get('copyright', 'number'),//ICP备案号
  435. 'icp_link' => ConfigServer::get('copyright', 'link'),//备案号链接
  436. 'app_agreement' => ConfigServer::get('app', 'agreement', 0),//app弹出协议
  437. 'ios_download' => ConfigServer::get('app', 'line_ios', ''),//ios_app下载链接
  438. 'android_download' => ConfigServer::get('app', 'line_android', ''),//安卓下载链接
  439. 'download_doc' => ConfigServer::get('app', 'download_doc', ''),//app下载文案
  440. 'cate_style' => ConfigServer::get('decoration', 'layout_no', 1),//分类页面风格
  441. 'index_setting' => [ // 首页设置
  442. // 热销榜单
  443. 'host_show' => ConfigServer::get('decoration_index', 'host_show', 1),
  444. // 新品推荐
  445. 'new_show' => ConfigServer::get('decoration_index', 'new_show', 1),
  446. // 推荐店铺
  447. 'shop_show' => ConfigServer::get('decoration_index', 'shop_show', 1),
  448. // 种草推荐
  449. 'community_show' => ConfigServer::get('decoration_index','community_show',1),
  450. // 直播间开关
  451. 'live_room' => ConfigServer::get('decoration_index','live_room',1),
  452. // 顶部背景图
  453. 'top_bg_image' => $index_top_bg
  454. ],
  455. 'center_setting' => [ // 个人中心设置
  456. // 顶部背景图
  457. 'top_bg_image' => $center_top_bg
  458. ],
  459. 'navigation_setting' => [ // 底部导航设置
  460. // 未选中文字颜色
  461. 'ust_color' => ConfigServer::get('decoration', 'navigation_setting_ust_color', '#000000'),
  462. // 选中文字颜色
  463. 'st_color' => ConfigServer::get('decoration', 'navigation_setting_st_color', '#000000'),
  464. ],
  465. // 分享设置
  466. 'share' => array_merge($share_h5,$share_mnp),
  467. // 首页底部导航菜单
  468. 'navigation_menu' => $navigation,
  469. // 域名
  470. 'base_domain' => UrlServer::getFileUrl(),
  471. // 微信访问H5时,是否自动授权登录,默认关闭-0
  472. 'wechat_h5' => ConfigServer::get('login', 'wechat_h5', 0),
  473. // 客服请求域名
  474. 'ws_domain' => env('project.ws_domain', 'ws:127.0.0.1'),
  475. // 附近店铺,默认关闭
  476. 'is_open_nearby' => ConfigServer::get('map', 'is_open_nearby',0),
  477. // 种草社区,默认开启
  478. 'is_open_community' => ConfigServer::get('community', 'status', 1),
  479. // 发货配置
  480. 'mini_express_send_sync' => ConfigServer::get('mnp', 'express_send_sync', 1),
  481. // 站点统计
  482. 'site_statistic' => [
  483. 'clarity_app_id' => $site_statistic['clarity_app_id'] ?? '',
  484. ],
  485. ];
  486. return $config;
  487. }
  488. /**
  489. * @notes 版权资质
  490. * @return array|int|mixed|string|null
  491. * @author ljj
  492. * @date 2022/2/22 10:16 上午
  493. */
  494. public static function copyright($shop_id)
  495. {
  496. $other_qualifications = [];
  497. if (!$shop_id) {
  498. $business_license = ConfigServer::get('copyright', 'business_license');
  499. $other_qualifications = ConfigServer::get('copyright', 'other_qualifications',[]);
  500. if (!empty($business_license)) {
  501. array_unshift($other_qualifications,$business_license);
  502. }
  503. if (!empty($other_qualifications)) {
  504. foreach ($other_qualifications as &$val) {
  505. $val = UrlServer::getFileUrl($val);
  506. }
  507. }
  508. }else {
  509. $result = Shop::where('id',$shop_id)->json(['other_qualifications'],true)->field('business_license,other_qualifications')->findOrEmpty()->toArray();
  510. $business_license = $result['business_license'] ? UrlServer::getFileUrl($result['business_license']) : '';
  511. if (!empty($result['other_qualifications'])) {
  512. foreach ($result['other_qualifications'] as &$val) {
  513. $other_qualifications[] = UrlServer::getFileUrl($val);
  514. }
  515. }
  516. if (!empty($business_license)) {
  517. array_unshift($other_qualifications,$business_license);
  518. }
  519. }
  520. return $other_qualifications;
  521. }
  522. /**
  523. * @notes 首页社区文章
  524. * @return array
  525. * @throws \think\db\exception\DataNotFoundException
  526. * @throws \think\db\exception\DbException
  527. * @throws \think\db\exception\ModelNotFoundException
  528. * @author 段誉
  529. * @date 2022/5/5 9:38
  530. */
  531. public static function getCommunityArticle()
  532. {
  533. // 种草总开关
  534. $isOpen = ConfigServer::get('community', 'status', 1);
  535. if (!$isOpen) {
  536. return [];
  537. }
  538. $lists = (new CommunityArticle())
  539. ->with(['user' => function($query) {
  540. $query->field(['id', 'nickname', 'avatar']);
  541. }])
  542. ->field(['id', 'content', 'image', 'user_id'])
  543. ->where(['del' => 0, 'status' => CommunityArticleEnum::STATUS_SUCCESS])
  544. ->order(['like' => 'desc', 'id' => 'desc'])
  545. ->limit(10)
  546. ->select()
  547. ->bindAttr('user', ['nickname', 'avatar'])
  548. ->hidden(['user'])
  549. ->toArray();
  550. foreach ($lists as $key => $item) {
  551. $lists[$key]['avatar'] = UrlServer::getFileUrl($item['avatar']);
  552. }
  553. return $lists;
  554. }
  555. /**
  556. * @notes 腾讯地图逆地址解析(坐标位置描述)
  557. * @param $get
  558. * @return mixed
  559. * @author ljj
  560. * @date 2022/9/21 2:37 下午
  561. * 经纬度到文字地址及相关位置信息的转换
  562. */
  563. public static function geocoder($get)
  564. {
  565. $get['key'] = ConfigServer::get('map', 'tx_map_key','');
  566. if ($get['key'] == '') {
  567. return ['status'=>1,'message'=>'腾讯地图开发密钥不能为空'];
  568. }
  569. $query = http_build_query($get);
  570. $url = 'https://apis.map.qq.com/ws/geocoder/v1/';
  571. $result = json_decode(file_get_contents($url.'?'.$query),true);
  572. $result['city_id'] = isset($result['result']['ad_info']['city']) ? UserAddressLogic::handleRegionField( $result['result']['ad_info']['city'], 2) : 0;
  573. return $result;
  574. }
  575. }