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

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