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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344
  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'];
  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. return JsonServer::success($data['msg'], $respon);
  98. }else{
  99. //失败
  100. return JsonServer::error('请求类型错误-'.$data['msg']);
  101. }
  102. }
  103. /*
  104. * 获取配置
  105. * 拼接默认配置 + 设备配置
  106. * 需要加密
  107. * https://api.zx2049.com/api/shopContent/getShopConfig?code=7729c5e9779d9eb37c75a2715e332b29
  108. */
  109. public function getShopConfig(){
  110. //判断是否存在默认配置
  111. $code = request()->param('code'); //秘钥
  112. $data = ShopContentLogic::getComputer($code);
  113. //var_dump($data);
  114. if($data['status'] !== 100){
  115. //失败 直接报错
  116. return JsonServer::error('请求错误-'.$data['msg']);
  117. }else{
  118. $json_data = [];
  119. //通过 电脑设备信息 获取手机配置
  120. $default_config = ShopContentLogic::getDefaultMobile($data['item']);
  121. if($default_config['status'] !== 100){
  122. return JsonServer::error('请求错误-'.$default_config['msg']);
  123. }
  124. //通过 电脑设备信息 获取手机信息
  125. $mobile_list = ShopContentLogic::getMobile($data['item']);
  126. if($mobile_list['status'] !== 100){
  127. return JsonServer::error('请求错误-'.$mobile_list['msg']);
  128. }
  129. //存在手机设备
  130. if(isset($mobile_list['ids'])){
  131. //dump($mobile_list);die;
  132. //var_dump($mobile_list['ids']);die;
  133. //通过配置id 获取具体的配置
  134. $json_data = ShopContentLogic::getMobileConfig($mobile_list['data'],$mobile_list['ids'],$mobile_list['ver']);
  135. }
  136. //直接使用默认配置
  137. $json_data['default'] = $default_config['data'];
  138. //data 针对
  139. $key = 'ABCDEFGHIJKLMNOP'; //16位
  140. $vi = '0102030405060708'; //16位
  141. $str = json_encode($json_data,JSON_UNESCAPED_UNICODE); //讲数组转为字符串
  142. $sign = openssl_encrypt($str, 'AES-128-CBC', $key, OPENSSL_RAW_DATA, $vi);
  143. $sign = base64_encode($sign);
  144. //先跳过加密
  145. $res = [
  146. 'data' => $json_data
  147. ];
  148. return JsonServer::success($data['msg'], $res);
  149. }
  150. }
  151. /*
  152. * https://api.zx2049.com/api/shopContent/getShopConfig2?code=7729c5e9779d9eb37c75a2715e332b29
  153. */
  154. public function getShopConfig2(){
  155. //判断是否存在默认配置
  156. $code = request()->param('code'); //秘钥
  157. $data = ShopContentLogic::getComputer($code);
  158. //var_dump($data);
  159. if($data['status'] !== 100){
  160. //失败 直接报错
  161. return JsonServer::error('请求错误-'.$data['msg']);
  162. }else{
  163. $json_data = [];
  164. //通过 电脑设备信息 获取手机配置
  165. $default_config = ShopContentLogic::getDefaultMobile($data['item']);
  166. if($default_config['status'] !== 100){
  167. return JsonServer::error('请求错误-'.$default_config['msg']);
  168. }
  169. //通过 电脑设备信息 获取手机信息
  170. $mobile_list = ShopContentLogic::getMobile($data['item']);
  171. if($mobile_list['status'] !== 100){
  172. return JsonServer::error('请求错误-'.$mobile_list['msg']);
  173. }
  174. //存在手机设备
  175. if(isset($mobile_list['ids'])){
  176. //dump($mobile_list);die;
  177. //var_dump($mobile_list['ids']);die;
  178. //通过配置id 获取具体的配置
  179. $json_data = ShopContentLogic::getMobileConfig($mobile_list['data'],$mobile_list['ids'],$mobile_list['ver']);
  180. }
  181. //直接使用默认配置
  182. $json_data['default'] = $default_config['data'];
  183. //data 针对
  184. $key = 'ABCDEFGHIJKLMNOP'; //16位
  185. $vi = '0102030405060708'; //16位
  186. $str = json_encode($json_data,JSON_UNESCAPED_UNICODE); //讲数组转为字符串
  187. $sign = openssl_encrypt($str, 'AES-128-CBC', $key, OPENSSL_RAW_DATA, $vi);
  188. $sign = base64_encode($sign);
  189. //先跳过加密
  190. $res = [
  191. 'data' => $sign
  192. ];
  193. return JsonServer::success($data['msg'], $res);
  194. }
  195. }
  196. /*
  197. * xpath规则维护
  198. * 无需加密 获取到页无用
  199. * https://api.zx2049.com/api/shopContent/getXpath?app=xhs
  200. */
  201. public function getXpath(){
  202. $app = request()->param('app'); //应用类型
  203. //$ver = request()->param('ver');
  204. //小红书定义版本号
  205. $ver_code = [
  206. "xhs" => [
  207. 'default' => [
  208. 'appuim' => ShopContentLogic::getXhsDefaultAppuim(),
  209. 'u2' => ShopContentLogic::getXhsDefaultU2()
  210. ],
  211. "v.8.68.5.5684ad5" => [
  212. 'appuim' => ShopContentLogic::getXhsAppuim_1(),
  213. 'u2' => ShopContentLogic::getXhsU2_1()
  214. ]
  215. ]
  216. ];
  217. if(isset($ver_code[$app])){
  218. return JsonServer::success('ok', $ver_code[$app]);
  219. }else{
  220. return JsonServer::success('default', []);
  221. }
  222. }
  223. /**
  224. * 获取钉钉消息 已加密
  225. * http://shop.zx10000.com/api/shopcontent/getAppService
  226. */
  227. public function getAppService()
  228. {
  229. //先获取商家id
  230. $code = request()->param('code'); //秘钥
  231. if(empty($code)){
  232. return JsonServer::error('code不能为空');
  233. }
  234. $data = ShopContentLogic::getComputer($code);
  235. $data = $data['item'];
  236. $shop_id = $data['shop_id'];
  237. if((int)$shop_id > 0){
  238. $config = [
  239. "dingding_url" => ConfigServer::get('shop_app_service', 'dingding_url', '',$shop_id),
  240. "dingding_pass" => ConfigServer::get('shop_app_service', 'dingding_pass', '',$shop_id),
  241. "dingding_user" => ConfigServer::get('shop_app_service', 'dingding_user', '',$shop_id)
  242. ];
  243. $key = 'ABCDEFGHIJKLMNOP'; //16位
  244. $vi = '0102030405060708'; //16位
  245. $str = json_encode($config,JSON_UNESCAPED_UNICODE);
  246. $sign = openssl_encrypt($str, 'AES-128-CBC', $key, OPENSSL_RAW_DATA, $vi);
  247. $sign = base64_encode($sign);
  248. $res = [
  249. 'data' => $config
  250. ];
  251. //var_dump($sign);die();
  252. return JsonServer::success('', $res);
  253. }else{
  254. //报错
  255. return JsonServer::error('商户ID查找错误');
  256. }
  257. }
  258. /*
  259. * 通过 code 获取 可同时运行数量
  260. * https://api.zx2049.com/api/shopContent/getRunNum?code=7729c5e9779d9eb37c75a2715e332b29
  261. */
  262. public function getRunNum()
  263. {
  264. $code = request()->param('code'); //��钥
  265. $data = ShopContentLogic::getComputer($code);
  266. $data = $data['item'];
  267. $shop_id = $data['shop_id'];
  268. if((int)$shop_id > 0){
  269. //读取商家配置
  270. $tid = shopModel::where('id', $data['shop_id'])->value('tid');
  271. if ((int)$tid === 0) {
  272. //未配置
  273. $count_pc = 1;
  274. $count_mobile = 3;
  275. $count_run = 3;
  276. } else if ((int)$tid > 0) {
  277. //查找配置
  278. $one = shopGoodsModel::where('id', $tid)->find();
  279. $count_pc = $one['pc_num'];
  280. $count_mobile = $one['mobile_num'];
  281. $count_run = $one['run_num'];
  282. } else {
  283. //其他
  284. $count_pc = 1;
  285. $count_mobile = 3;
  286. $count_run = 3;
  287. }
  288. return JsonServer::success('', ['run_num' => $count_run]);
  289. }else{
  290. //报错
  291. return JsonServer::error('商户ID查找错误');
  292. }
  293. }
  294. /*
  295. *
  296. */
  297. }