截流自动化的商城平台
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.

ShopContent.php 13KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\api\controller;
  20. use app\common\basics\Api;
  21. use app\common\model\shop\ShopGoods as shopGoodsModel;
  22. use app\common\model\shop\Shop as shopModel;
  23. use app\common\server\ConfigServer;
  24. use app\common\server\JsonServer;
  25. use think\facade\Validate;
  26. use app\api\logic\ShopContentLogic;
  27. class ShopContent extends Api
  28. {
  29. public $like_not_need_login = ['getShopInfo', 'getShopList','getNearbyShops','smsCode','getShopConfig','getXpath','getAppService','getRunNum','getShopConfig2','subHKSYCount'];
  30. /**
  31. * 店铺信息
  32. */
  33. public function getShopInfo()
  34. {
  35. if($this->request->isGet()) {
  36. $shopId = $this->request->get('shop_id', '', 'trim');
  37. $validate = Validate::rule('shop_id', 'require|integer|gt:0');
  38. if(!$validate->check(['shop_id'=>$shopId])) {
  39. return JsonServer::error($validate->getError());
  40. }
  41. $data = ShopContentLogic::getShopInfo($shopId, $this->user_id, input());
  42. return JsonServer::success('获取店铺信息成功', $data);
  43. }else{
  44. return JsonServer::error('请求类型错误');
  45. }
  46. }
  47. /**
  48. * 店铺列表
  49. */
  50. public function getShopList()
  51. {
  52. if($this->request->isGet()) {
  53. $get = $this->request->get();
  54. $get['page_no'] = $this->page_no;
  55. $get['page_size'] = $this->page_size;
  56. $data = ShopContentLogic::getShopList($get);
  57. return JsonServer::success('获取店铺列表成功', $data);
  58. }else{
  59. return JsonServer::error('请求类型错误');
  60. }
  61. }
  62. /**
  63. * @notes 附近店铺列表
  64. * @return \think\response\Json
  65. * @throws \think\db\exception\DataNotFoundException
  66. * @throws \think\db\exception\DbException
  67. * @throws \think\db\exception\ModelNotFoundException
  68. * @author ljj
  69. * @date 2022/9/20 4:29 下午
  70. */
  71. public function getNearbyShops()
  72. {
  73. if($this->request->isGet()) {
  74. $get = $this->request->get();
  75. $get['page_no'] = $this->page_no;
  76. $get['page_size'] = $this->page_size;
  77. $data = ShopContentLogic::getNearbyShops($get);
  78. return JsonServer::success('获取店铺列表成功', $data);
  79. }else{
  80. return JsonServer::error('请求类型错误');
  81. }
  82. }
  83. /*
  84. * 验证秘钥
  85. *
  86. */
  87. public function smsCode(){
  88. $code = request()->param('code');
  89. $code = trim($code);
  90. $mcode = request()->param('mcode');
  91. $mcode = trim($mcode);
  92. //查询
  93. $data = ShopContentLogic::codeInfo($code,$mcode);
  94. if($data['status'] == 100){
  95. //通过
  96. $respon = [
  97. 'is_gi' => $data['is_gi'], //是否到期 0未到期 或者 1 是到期(但评论数量存在>10条)
  98. 'count' => $data['count']
  99. ];
  100. return JsonServer::success($data['msg'], $respon);
  101. }else{
  102. //失败
  103. return JsonServer::error('请求类型错误-'.$data['msg']);
  104. }
  105. }
  106. /*
  107. * 获取配置
  108. * 拼接默认配置 + 设备配置
  109. * 需要加密
  110. * https://api.zx2049.com/api/shopContent/getShopConfig?code=7729c5e9779d9eb37c75a2715e332b29
  111. */
  112. public function getShopConfig(){
  113. //判断是否存在默认配置
  114. $code = request()->param('code'); //秘钥
  115. $data = ShopContentLogic::getComputer($code);
  116. //var_dump($data);
  117. if($data['status'] !== 100){
  118. //失败 直接报错
  119. return JsonServer::error('请求错误-'.$data['msg']);
  120. }else{
  121. $json_data = [];
  122. //通过 电脑设备信息 获取手机配置
  123. $default_config = ShopContentLogic::getDefaultMobile($data['item']);
  124. if($default_config['status'] !== 100){
  125. return JsonServer::error('请求错误-'.$default_config['msg']);
  126. }
  127. //通过 电脑设备信息 获取手机信息
  128. $mobile_list = ShopContentLogic::getMobile($data['item']);
  129. if($mobile_list['status'] !== 100){
  130. return JsonServer::error('请求错误-'.$mobile_list['msg']);
  131. }
  132. //存在手机设备
  133. if(isset($mobile_list['ids'])){
  134. //dump($mobile_list);die;
  135. //var_dump($mobile_list['ids']);die;
  136. //通过配置id 获取具体的配置
  137. $json_data = ShopContentLogic::getMobileConfig($mobile_list['data'],$mobile_list['ids'],$mobile_list['ver']);
  138. }
  139. //直接使用默认配置
  140. $json_data['default'] = $default_config['data'];
  141. //data 针对
  142. $key = 'ABCDEFGHIJKLMNOP'; //16位
  143. $vi = '0102030405060708'; //16位
  144. $str = json_encode($json_data,JSON_UNESCAPED_UNICODE); //讲数组转为字符串
  145. $sign = openssl_encrypt($str, 'AES-128-CBC', $key, OPENSSL_RAW_DATA, $vi);
  146. $sign = base64_encode($sign);
  147. //先跳过加密
  148. $res = [
  149. 'data' => $json_data
  150. ];
  151. return JsonServer::success($data['msg'], $res);
  152. }
  153. }
  154. /*
  155. * 加密数据的接口
  156. * https://api.zx2049.com/api/shopContent/getShopConfig2?code=7729c5e9779d9eb37c75a2715e332b29
  157. */
  158. public function getShopConfig2(){
  159. //判断是否存在默认配置
  160. $code = request()->param('code'); //秘钥
  161. $data = ShopContentLogic::getComputer($code);
  162. //var_dump($data);
  163. if($data['status'] !== 100){
  164. //失败 直接报错
  165. return JsonServer::error('请求错误-'.$data['msg']);
  166. }else{
  167. $json_data = [];
  168. //通过 电脑设备信息 获取手机配置
  169. $default_config = ShopContentLogic::getDefaultMobile($data['item']);
  170. if($default_config['status'] !== 100){
  171. return JsonServer::error('请求错误-'.$default_config['msg']);
  172. }
  173. //通过 电脑设备信息 获取手机信息
  174. $mobile_list = ShopContentLogic::getMobile($data['item']);
  175. if($mobile_list['status'] !== 100){
  176. return JsonServer::error('请求错误-'.$mobile_list['msg']);
  177. }
  178. //存在手机设备
  179. if(isset($mobile_list['ids'])){
  180. //dump($mobile_list);die;
  181. //var_dump($mobile_list['ids']);die;
  182. //通过配置id 获取具体的配置
  183. $json_data = ShopContentLogic::getMobileConfig($mobile_list['data'],$mobile_list['ids'],$mobile_list['ver']);
  184. }
  185. //直接使用默认配置
  186. $json_data['default'] = $default_config['data'];
  187. //data 针对
  188. $key = 'ABCDEFGHIJKLMNOP'; //16位
  189. $vi = '0102030405060708'; //16位
  190. $str = json_encode($json_data,JSON_UNESCAPED_UNICODE); //讲数组转为字符串
  191. $sign = openssl_encrypt($str, 'AES-128-CBC', $key, OPENSSL_RAW_DATA, $vi);
  192. $sign = base64_encode($sign);
  193. //先跳过加密
  194. $res = [
  195. 'data' => $sign
  196. ];
  197. return JsonServer::success($data['msg'], $res);
  198. }
  199. }
  200. /*
  201. * xpath规则维护
  202. * 无需加密 获取到页无用
  203. * https://api.zx2049.com/api/shopContent/getXpath?app=xhs
  204. */
  205. public function getXpath(){
  206. $app = request()->param('app'); //应用类型
  207. //$ver = request()->param('ver');
  208. //小红书定义版本号
  209. $ver_code = [
  210. "xhs" => [
  211. 'default' => [
  212. 'appuim' => ShopContentLogic::getXhsDefaultAppuim(),
  213. 'u2' => ShopContentLogic::getXhsDefaultU2()
  214. ],
  215. "v.8.68.5.5684ad5" => [
  216. 'appuim' => ShopContentLogic::getXhsAppuim_1(),
  217. 'u2' => ShopContentLogic::getXhsU2_1()
  218. ]
  219. ]
  220. ];
  221. if(isset($ver_code[$app])){
  222. return JsonServer::success('ok', $ver_code[$app]);
  223. }else{
  224. return JsonServer::success('default', []);
  225. }
  226. }
  227. /**
  228. * 获取钉钉消息 已加密
  229. * http://shop.zx10000.com/api/shopcontent/getAppService
  230. */
  231. public function getAppService()
  232. {
  233. //先获取商家id
  234. $code = request()->param('code'); //秘钥
  235. if(empty($code)){
  236. return JsonServer::error('code不能为空');
  237. }
  238. $data = ShopContentLogic::getComputer($code);
  239. $data = $data['item'];
  240. $shop_id = $data['shop_id'];
  241. if((int)$shop_id > 0){
  242. $config = [
  243. "dingding_url" => ConfigServer::get('shop_app_service', 'dingding_url', '',$shop_id),
  244. "dingding_pass" => ConfigServer::get('shop_app_service', 'dingding_pass', '',$shop_id),
  245. "dingding_user" => ConfigServer::get('shop_app_service', 'dingding_user', '',$shop_id)
  246. ];
  247. $key = 'ABCDEFGHIJKLMNOP'; //16位
  248. $vi = '0102030405060708'; //16位
  249. $str = json_encode($config,JSON_UNESCAPED_UNICODE);
  250. $sign = openssl_encrypt($str, 'AES-128-CBC', $key, OPENSSL_RAW_DATA, $vi);
  251. $sign = base64_encode($sign);
  252. $res = [
  253. 'data' => $config
  254. ];
  255. //var_dump($sign);die();
  256. return JsonServer::success('', $res);
  257. }else{
  258. //报错
  259. return JsonServer::error('商户ID查找错误');
  260. }
  261. }
  262. /*
  263. * 通过 code 获取 可同时运行数量
  264. * https://api.zx2049.com/api/shopContent/getRunNum?code=7729c5e9779d9eb37c75a2715e332b29
  265. */
  266. public function getRunNum()
  267. {
  268. $code = request()->param('code'); //��钥
  269. $data = ShopContentLogic::getComputer($code);
  270. $data = $data['item'];
  271. $shop_id = $data['shop_id'];
  272. if((int)$shop_id > 0){
  273. //读取商家配置
  274. $tid = shopModel::where('id', $data['shop_id'])->value('tid');
  275. if ((int)$tid === 0) {
  276. //未配置
  277. $count_pc = 1;
  278. $count_mobile = 3;
  279. $count_run = 3;
  280. } else if ((int)$tid > 0) {
  281. //查找配置
  282. $one = shopGoodsModel::where('id', $tid)->find();
  283. $count_pc = $one['pc_num'];
  284. $count_mobile = $one['mobile_num'];
  285. $count_run = $one['run_num'];
  286. } else {
  287. //其他
  288. $count_pc = 1;
  289. $count_mobile = 3;
  290. $count_run = 3;
  291. }
  292. return JsonServer::success('', ['run_num' => $count_run]);
  293. }else{
  294. //报错
  295. return JsonServer::error('商户ID查找错误');
  296. }
  297. }
  298. /**
  299. * 查询获客剩余数量
  300. * 暂时弃用
  301. */
  302. public function getHKSYCount() {
  303. if ($this->request->isGet()) {
  304. $get = $this->request->get();
  305. $data = ShopContentLogic::getHKSYCount($get);
  306. if ($data === false) {
  307. return JsonServer::error(ShopContentLogic::getError(), ['err_code' => ShopContentLogic::getErrCode()]);
  308. }
  309. return JsonServer::success('', $data);
  310. }
  311. return JsonServer::error('请求方式错误', ['err_code' => 10001]);
  312. }
  313. /**
  314. * 减少获客剩余数量
  315. * subHKSYCount
  316. */
  317. public function subHKSYCount() {
  318. if ($this->request->isPost()) {
  319. $post = $this->request->post();
  320. $count = ShopContentLogic::subHKSYCount($post);
  321. if ($count === false) {
  322. return JsonServer::error(ShopContentLogic::getError(), ['err_code' => ShopContentLogic::getErrCode()]);
  323. }
  324. return JsonServer::success('操作成功', ['count' => $count]);
  325. }
  326. return JsonServer::error('请求方式错误', ['err_code' => 10001]);
  327. }
  328. }