PublicController.php 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386
  1. <?php
  2. namespace app\api\controller;
  3. use app\admin\model\system\SystemAttachment;
  4. use app\models\store\StoreCategory;
  5. use app\models\store\StoreCoupon;
  6. use app\models\store\StoreCouponIssue;
  7. use app\models\store\StoreOrder;
  8. use app\models\store\StoreProduct;
  9. use app\models\store\StoreService;
  10. use app\models\system\Express;
  11. use app\models\system\SystemCity;
  12. use app\models\system\SystemStore;
  13. use app\models\system\SystemStoreStaff;
  14. use app\models\user\UserBill;
  15. use app\models\user\WechatUser;
  16. use app\Request;
  17. use crmeb\services\CacheService;
  18. use crmeb\services\SystemConfigService;
  19. use crmeb\services\UtilService;
  20. use crmeb\services\workerman\ChannelService;
  21. use think\db\exception\DataNotFoundException;
  22. use think\db\exception\DbException;
  23. use think\db\exception\ModelNotFoundException;
  24. use think\facade\Cache;
  25. use crmeb\services\upload\Upload;
  26. /**
  27. * 公共类
  28. * Class PublicController
  29. * @package app\api\controller
  30. */
  31. class PublicController
  32. {
  33. /**
  34. * @param Request $request
  35. * @return mixed
  36. * @throws DataNotFoundException
  37. * @throws ModelNotFoundException
  38. * @throws \think\exception\DbException
  39. */
  40. public function index(Request $request)
  41. {
  42. $banner = sys_data('routine_home_banner') ?: [];//TODO 首页banner图
  43. $menus = sys_data('routine_home_menus') ?: [];//TODO 首页按钮
  44. $roll = sys_data('routine_home_roll_news') ?: [];//TODO 首页滚动新闻
  45. $activity = sys_data('routine_home_activity', 3) ?: [];//TODO 首页活动区域图片
  46. $site_name = sys_config('site_name');
  47. $routine_index_page = sys_data('routine_index_page');
  48. $info['fastInfo'] = $routine_index_page[0]['fast_info'] ?? '';//sys_config('fast_info');//TODO 快速选择简介
  49. $info['bastInfo'] = $routine_index_page[0]['bast_info'] ?? '';//sys_config('bast_info');//TODO 精品推荐简介
  50. $info['firstInfo'] = $routine_index_page[0]['first_info'] ?? '';//sys_config('first_info');//TODO 首发新品简介
  51. $info['salesInfo'] = $routine_index_page[0]['sales_info'] ?? '';//sys_config('sales_info');//TODO 促销单品简介
  52. $logoUrl = sys_config('routine_index_logo');//TODO 促销单品简介
  53. if (strstr($logoUrl, 'http') === false && $logoUrl) $logoUrl = sys_config('site_url') . $logoUrl;
  54. $logoUrl = str_replace('\\', '/', $logoUrl);
  55. $fastNumber = sys_config('fast_number', 0);//TODO 快速选择分类个数
  56. $bastNumber = sys_config('bast_number', 0);//TODO 精品推荐个数
  57. $firstNumber = sys_config('first_number', 0);//TODO 首发新品个数
  58. $promotionNumber = sys_config('promotion_number', 0);//TODO 首发新品个数
  59. $info['fastList'] = StoreCategory::byIndexList((int)$fastNumber, false);//TODO 快速选择分类个数
  60. $info['bastList'] = StoreProduct::getBestProduct('id,image,store_name,cate_id,price,ot_price,IFNULL(sales,0) + IFNULL(ficti,0) as sales,unit_name', (int)$bastNumber, $request->uid(), false);//TODO 精品推荐个数
  61. $info['firstList'] = StoreProduct::getNewProduct('id,image,store_name,cate_id,price,unit_name,IFNULL(sales,0) + IFNULL(ficti,0) as sales', (int)$firstNumber, $request->uid(), false);//TODO 首发新品个数
  62. $info['bastBanner'] = sys_data('routine_home_bast_banner') ?? [];//TODO 首页精品推荐图片
  63. $benefit = StoreProduct::getBenefitProduct('id,image,store_name,cate_id,price,ot_price,stock,unit_name', $promotionNumber);//TODO 首页促销单品
  64. $lovely = sys_data('routine_home_new_banner') ?: [];//TODO 首发新品顶部图
  65. $likeInfo = StoreProduct::getHotProduct('id,image,store_name,cate_id,price,ot_price,unit_name', 3);//TODO 热门榜单 猜你喜欢
  66. $couponList = StoreCouponIssue::getIssueCouponList($request->uid(), 3);
  67. if ($request->uid()) {
  68. $subscribe = WechatUser::where('uid', $request->uid())->value('subscribe') ? true : false;
  69. } else {
  70. $subscribe = true;
  71. }
  72. $newGoodsBananr = sys_config('new_goods_bananr');
  73. $tengxun_map_key = sys_config('tengxun_map_key');
  74. return app('json')->successful(compact('banner', 'menus', 'roll', 'info', 'activity', 'lovely', 'benefit', 'likeInfo', 'logoUrl', 'couponList', 'site_name', 'subscribe', 'newGoodsBananr', 'tengxun_map_key'));
  75. }
  76. /**
  77. * @param Request $request
  78. * @return mixed
  79. * @throws DataNotFoundException
  80. * @throws DbException
  81. * @throws ModelNotFoundException
  82. */
  83. public function cityArea(Request $request)
  84. {
  85. $province = SystemCity::where('level', 0)->where('parent_id', 0)->field('name,city_id')->select()->each(function ($item) {
  86. $item['city'] = SystemCity::where('level', 1)
  87. ->where('parent_id', $item['city_id'])
  88. ->field('name,city_id')
  89. ->select()->each(function ($sub_item) {
  90. $sub_item['area'] = SystemCity::where('level', 2)
  91. ->where('parent_id', $sub_item['city_id'])
  92. ->column('name');
  93. unset($sub_item['city_id']);
  94. })->toArray();
  95. unset($item['city_id']);
  96. });
  97. return app('json')->success('ok', $province->toArray());
  98. }
  99. /**
  100. * 获取分享配置
  101. * @return mixed
  102. */
  103. public function share()
  104. {
  105. $data['img'] = sys_config('wechat_share_img');
  106. if (strstr($data['img'], 'http') === false) $data['img'] = sys_config('site_url') . $data['img'];
  107. $data['img'] = str_replace('\\', '/', $data['img']);
  108. $data['title'] = sys_config('wechat_share_title');
  109. $data['synopsis'] = sys_config('wechat_share_synopsis');
  110. return app('json')->successful(compact('data'));
  111. }
  112. /**
  113. * 获取个人中心菜单
  114. * @param Request $request
  115. * @return mixed
  116. * @throws DataNotFoundException
  117. * @throws ModelNotFoundException
  118. * @throws \think\exception\DbException
  119. */
  120. public function menu_user(Request $request)
  121. {
  122. $menusInfo = sys_data('routine_my_menus') ?? [];
  123. $user = $request->user();
  124. $vipOpen = sys_config('vip_open');
  125. $vipOpen = is_string($vipOpen) ? (int)$vipOpen : $vipOpen;
  126. foreach ($menusInfo as $key => &$value) {
  127. $value['pic'] = set_file_url($value['pic']);
  128. if ($value['id'] == 137 && !(intval(sys_config('store_brokerage_statu')) == 2 || $user->is_promoter == 1))
  129. unset($menusInfo[$key]);
  130. if ($value['id'] == 174 && !StoreService::orderServiceStatus($user->uid))
  131. unset($menusInfo[$key]);
  132. if (((!StoreService::orderServiceStatus($user->uid)) && (!SystemStoreStaff::verifyStatus($user->uid))) && $value['wap_url'] === '/order/order_cancellation')
  133. unset($menusInfo[$key]);
  134. if (((!StoreService::orderServiceStatus($user->uid)) && (!SystemStoreStaff::verifyStatus($user->uid))) && $value['wap_url'] === '/admin/order_cancellation/index')
  135. unset($menusInfo[$key]);
  136. if ((!StoreService::orderServiceStatus($user->uid)) && $value['wap_url'] === '/admin/order/index')
  137. unset($menusInfo[$key]);
  138. if ($value['wap_url'] == '/user/vip' && !$vipOpen)
  139. unset($menusInfo[$key]);
  140. if ($value['wap_url'] == '/customer/index' && !StoreService::orderServiceStatus($user->uid))
  141. unset($menusInfo[$key]);
  142. }
  143. return app('json')->successful(['routine_my_menus' => $menusInfo]);
  144. }
  145. /**
  146. * 热门搜索关键字获取
  147. * @return mixed
  148. * @throws DataNotFoundException
  149. * @throws ModelNotFoundException
  150. * @throws \think\exception\DbException
  151. */
  152. public function search()
  153. {
  154. $routineHotSearch = sys_data('routine_hot_search') ?? [];
  155. $searchKeyword = [];
  156. if (count($routineHotSearch)) {
  157. foreach ($routineHotSearch as $key => &$item) {
  158. array_push($searchKeyword, $item['title']);
  159. }
  160. }
  161. return app('json')->successful($searchKeyword);
  162. }
  163. /**
  164. * 图片上传
  165. * @param Request $request
  166. * @return mixed
  167. * @throws \Psr\SimpleCache\InvalidArgumentException
  168. */
  169. public function upload_image(Request $request)
  170. {
  171. $data = UtilService::postMore([
  172. ['filename', 'file'],
  173. ], $request);
  174. if (!$data['filename']) return app('json')->fail('参数有误');
  175. if (Cache::has('start_uploads_' . $request->uid()) && Cache::get('start_uploads_' . $request->uid()) >= 100) return app('json')->fail('非法操作');
  176. $upload_type = sys_config('upload_type', 1);
  177. $upload = new Upload((int)$upload_type, [
  178. 'accessKey' => sys_config('accessKey'),
  179. 'secretKey' => sys_config('secretKey'),
  180. 'uploadUrl' => sys_config('uploadUrl'),
  181. 'storageName' => sys_config('storage_name'),
  182. 'storageRegion' => sys_config('storage_region'),
  183. ]);
  184. $info = $upload->to('store/comment')->validate()->move($data['filename']);
  185. if ($info === false) {
  186. return app('json')->fail($upload->getError());
  187. }
  188. $res = $upload->getUploadInfo();
  189. SystemAttachment::attachmentAdd($res['name'], $res['size'], $res['type'], $res['dir'], $res['thumb_path'], 1, $upload_type, $res['time'], 2);
  190. if (Cache::has('start_uploads_' . $request->uid()))
  191. $start_uploads = (int)Cache::get('start_uploads_' . $request->uid());
  192. else
  193. $start_uploads = 0;
  194. $start_uploads++;
  195. Cache::set('start_uploads_' . $request->uid(), $start_uploads, 86400);
  196. $res['dir'] = path_to_url($res['dir']);
  197. if (strpos($res['dir'], 'http') === false) $res['dir'] = $request->domain() . $res['dir'];
  198. return app('json')->successful('图片上传成功!', ['name' => $res['name'], 'url' => $res['dir']]);
  199. }
  200. /**
  201. * 物流公司
  202. * @return mixed
  203. */
  204. public function logistics()
  205. {
  206. $expressList = Express::lst();
  207. if (!$expressList) return app('json')->successful([]);
  208. return app('json')->successful($expressList->hidden(['code', 'id', 'sort', 'is_show'])->toArray());
  209. }
  210. /**
  211. * 短信购买异步通知
  212. *
  213. * @param Request $request
  214. * @return mixed
  215. */
  216. public function sms_pay_notify(Request $request)
  217. {
  218. list($order_id, $price, $status, $num, $pay_time, $attach) = UtilService::postMore([
  219. ['order_id', ''],
  220. ['price', 0.00],
  221. ['status', 400],
  222. ['num', 0],
  223. ['pay_time', time()],
  224. ['attach', 0],
  225. ], $request, true);
  226. if ($status == 200) {
  227. ChannelService::instance()->send('PAY_SMS_SUCCESS', ['price' => $price, 'number' => $num], [$attach]);
  228. return app('json')->successful();
  229. }
  230. return app('json')->fail();
  231. }
  232. /**
  233. * 记录用户分享
  234. * @param Request $request
  235. * @return mixed
  236. */
  237. public function user_share(Request $request)
  238. {
  239. return app('json')->successful(UserBill::setUserShare($request->uid()));
  240. }
  241. /**
  242. * 获取图片base64
  243. * @param Request $request
  244. * @return mixed
  245. */
  246. public function get_image_base64(Request $request)
  247. {
  248. list($imageUrl, $codeUrl) = UtilService::postMore([
  249. ['image', ''],
  250. ['code', ''],
  251. ], $request, true);
  252. try {
  253. $codeTmp = $code = $codeUrl ? image_to_base64($codeUrl) : false;
  254. if (!$codeTmp) {
  255. $putCodeUrl = put_image($codeUrl);
  256. $code = $putCodeUrl ? image_to_base64($_SERVER['HTTP_HOST'] . '/' . $putCodeUrl) : false;
  257. $code ?? unlink($_SERVER["DOCUMENT_ROOT"] . '/' . $putCodeUrl);
  258. }
  259. $imageTmp = $image = $imageUrl ? image_to_base64($imageUrl) : false;
  260. if (!$imageTmp) {
  261. $putImageUrl = put_image($imageUrl);
  262. $image = $putImageUrl ? image_to_base64($_SERVER['HTTP_HOST'] . '/' . $putImageUrl) : false;
  263. $image ?? unlink($_SERVER["DOCUMENT_ROOT"] . '/' . $putImageUrl);
  264. }
  265. return app('json')->successful(compact('code', 'image'));
  266. } catch (\Exception $e) {
  267. return app('json')->fail($e->getMessage());
  268. }
  269. }
  270. /**
  271. * 门店列表
  272. * @return mixed
  273. */
  274. public function store_list(Request $request)
  275. {
  276. list($latitude, $longitude, $page, $limit, $cate_id, $name, $sales,$address) = UtilService::getMore([
  277. ['latitude', ''],
  278. ['longitude', ''],
  279. ['page', 1],
  280. ['limit', 10],
  281. ['cate_id'],
  282. ['name', ''],
  283. ['sales', ''],
  284. ['address']
  285. ], $request, true);
  286. // if (!empty($address)){
  287. // // 地址获取经纬度
  288. // $res = json_decode(do_request('https://apis.map.qq.com/ws/geocoder/v1/?address='.$address.'&key=4A5BZ-GV7K4-G2PUH-DIIQJ-CIG6T-CKFT2', [], null,false));
  289. // $location = $res->result->location;
  290. // $latitude = $location->lat;
  291. // $longitude = $location->lng;
  292. // }
  293. if ($address) $address = urldecode($address);
  294. $list = SystemStore::lst($latitude, $longitude, $page, $limit,$name, $sales,$address);
  295. $data['list'] = $list;
  296. $data['tengxun_map_key'] = sys_config('tengxun_map_key');
  297. return app('json')->successful($data);
  298. }
  299. /**
  300. * 查找城市数据
  301. * @param Request $request
  302. * @return mixed
  303. */
  304. public function city_list(Request $request)
  305. {
  306. $list = CacheService::get('CITY_LIST', function () {
  307. $list = SystemCity::with('children')->field(['city_id', 'name', 'id', 'parent_id'])->where('parent_id', 0)->order('id asc')->select()->toArray();
  308. $data = [];
  309. foreach ($list as &$item) {
  310. $value = ['v' => $item['city_id'], 'n' => $item['name']];
  311. if ($item['children']) {
  312. foreach ($item['children'] as $key => &$child) {
  313. $value['c'][$key] = ['v' => $child['city_id'], 'n' => $child['name']];
  314. unset($child['id'], $child['area_code'], $child['merger_name'], $child['is_show'], $child['level'], $child['lng'], $child['lat'], $child['lat']);
  315. if (SystemCity::where('parent_id', $child['city_id'])->count()) {
  316. $child['children'] = SystemCity::where('parent_id', $child['city_id'])->field(['city_id', 'name', 'id', 'parent_id'])->select()->toArray();
  317. foreach ($child['children'] as $kk => $vv) {
  318. $value['c'][$key]['c'][$kk] = ['v' => $vv['city_id'], 'n' => $vv['name']];
  319. }
  320. }
  321. }
  322. }
  323. $data[] = $value;
  324. }
  325. return $data;
  326. }, 0);
  327. return app('json')->successful($list);
  328. }
  329. /**
  330. * 版本更新
  331. * @param Request $request
  332. * @return void
  333. */
  334. public function version(Request $request)
  335. {
  336. $config = SystemConfigService::more(['version', 'apk']);
  337. $data = [
  338. 'version' => $config['version'],
  339. 'url' => $request->domain().'/'.$config['apk']
  340. ];
  341. $msg = [
  342. 'status' => 200,
  343. 'msg' => 'ok',
  344. 'data' => $data
  345. ];
  346. return json_encode($msg, JSON_UNESCAPED_SLASHES);
  347. }
  348. /**
  349. * 门店详情
  350. * @param $id
  351. * @return mixed
  352. * @throws \think\db\exception\DataNotFoundException
  353. * @throws \think\db\exception\DbException
  354. * @throws \think\db\exception\ModelNotFoundException
  355. */
  356. public function store_details($id)
  357. {
  358. $data = SystemStore::find($id);
  359. $data = empty($data) ? [] : $data->toArray();
  360. $data['slider_image'] = json_decode($data['slider_image']);
  361. $data['images'] = json_decode($data['gatehead']);
  362. return app('json')->successful($data);
  363. }
  364. }