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

ShopContentLogic.php 32KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839
  1. <?php
  2. namespace app\api\logic;
  3. use app\common\basics\Logic;
  4. use app\common\enum\GoodsEnum;
  5. use app\common\enum\ShopAdEnum;
  6. use app\common\enum\ShopEnum;
  7. use app\common\logic\QrCodeLogic;
  8. use app\common\model\dev\DevRegion;
  9. use app\common\model\shop\ShopAd;
  10. use app\common\model\shop\ShopGoods as shopGoodsModel;
  11. use app\common\server\ConfigServer;
  12. use app\common\server\UrlServer;
  13. use app\common\model\goods\Goods;
  14. use app\common\model\shop\Shop;
  15. use app\common\model\shop\ShopFollow;
  16. use app\common\model\content\ClosureCategory;
  17. use app\common\model\content\Closure;
  18. use app\common\model\shop\Shop as shopModel;
  19. use app\common\model\content\EquiCategory as EquiCategoryModel;
  20. use app\common\model\shop\ShopHkLog;
  21. use think\facade\Db;
  22. use think\facade\Event;
  23. class ShopContentLogic extends Logic
  24. {
  25. /*
  26. * 获取机器秘钥
  27. */
  28. public static function codeInfo($code='',$mcode='')
  29. {
  30. if(empty($code) || empty($mcode)){
  31. $data = [
  32. 'status' => 105,
  33. 'msg' => "参数不正确,不能为空!"
  34. ];
  35. return $data;
  36. }
  37. $where = [
  38. "del" => 0,
  39. "is_show" => 1,
  40. "pid" => 0, //必须是电脑
  41. "code" => $code
  42. ];
  43. $item = EquiCategoryModel::where($where)->find();
  44. //判断商家服务
  45. if(!empty($item)) {
  46. $expire_time = shopModel::where('id', $item['shop_id'])->value('expire_time');
  47. //dump($expire_time);
  48. if($expire_time < time()){
  49. $data = [
  50. 'status' => 107,
  51. 'msg' => "商户服务当前套餐到期,到期时间".date('Y-m-d H:i:s',$expire_time)."!"
  52. ];
  53. return $data;
  54. }
  55. }
  56. if(empty($item))
  57. {
  58. $data = [
  59. 'status' => 101,
  60. 'msg' => "秘钥错误,找不到设备!"
  61. ];
  62. }else if(empty($item['machine_code']))
  63. {
  64. //验证秘钥是否合法
  65. $res = self::getCodeIs($item['shop_id'],$code);
  66. if($res === false){
  67. $data = [
  68. 'status' => 106,
  69. 'msg' => "超出套餐服务电脑数量!"
  70. ];
  71. }else {
  72. //未绑定机器码 那么进行绑定
  73. $row = EquiCategoryModel::where(['id' => $item['id']])->update([
  74. "machine_code" => $mcode,
  75. ]);
  76. if ($row == 1) {
  77. $data = [
  78. 'status' => 100,
  79. 'msg' => "绑定机器码成功!"
  80. ];
  81. } else {
  82. $data = [
  83. 'status' => 102,
  84. 'msg' => "绑定机器码失败!"
  85. ];
  86. }
  87. }
  88. }else{
  89. //验证秘钥是否合法
  90. $res = self::getCodeIs($item['shop_id'],$code);
  91. if($res === false){
  92. $data = [
  93. 'status' => 106,
  94. 'msg' => "超出套餐服务电脑数量!"
  95. ];
  96. }else {
  97. //var_dump($mcode);
  98. //var_dump($item['machine_code']);
  99. //机器码已存在
  100. if($item['machine_code'] != $mcode){
  101. //机器码不一致
  102. $data = [
  103. 'status' => 103,
  104. 'msg' => "该秘钥已绑定其他设备,操作失败!"
  105. ];
  106. }else{
  107. $data = [
  108. 'status' => 100,
  109. 'msg' => "已绑定该机器码!"
  110. ];
  111. }
  112. }
  113. }
  114. return $data;
  115. }
  116. public static function getCodeIs($shop_id,$code)
  117. {
  118. //首先获取合法的电脑数量是多少
  119. $tid = shopModel::where('id',$shop_id)->value('tid');
  120. if ((int)$tid === 0) {
  121. //未配置
  122. $count_pc = 1;
  123. $count_mobile = 3;
  124. $count_run = 3;
  125. } else if ((int)$tid > 0) {
  126. //查找配置
  127. $one = shopGoodsModel::where('id', $tid)->find();
  128. $count_pc = $one['pc_num'];
  129. $count_mobile = $one['mobile_num'];
  130. $count_run = $one['run_num'];
  131. } else {
  132. //其他
  133. $count_pc = 1;
  134. $count_mobile = 3;
  135. $count_run = 3;
  136. }
  137. //调用合法的秘钥是哪些
  138. $where = [
  139. "del" => 0, //未删除
  140. //"is_show" => 1,
  141. "pid" => 0, //必须是电脑
  142. "shop_id" => $shop_id
  143. ];
  144. $code_list = EquiCategoryModel::where($where)->order('id asc')->limit($count_pc)->column('code');
  145. //var_dump($code);
  146. if(in_array($code,$code_list)){
  147. return true;
  148. }
  149. return false;
  150. }
  151. /*
  152. * getComputer
  153. * 获取电脑 根据code
  154. */
  155. public static function getComputer($code){
  156. if(empty($code)){
  157. $data = [
  158. 'status' => 105,
  159. 'msg' => "参数不正确,不能为空!"
  160. ];
  161. return $data;
  162. }
  163. $where = [
  164. "del" => 0,
  165. "is_show" => 1,
  166. "pid" => 0, //必须是电脑
  167. "code" => $code
  168. ];
  169. $item = EquiCategoryModel::where($where)->find();
  170. if(empty($item))
  171. {
  172. $data = [
  173. 'status' => 101,
  174. 'msg' => "秘钥错误,找不到设备!"
  175. ];
  176. }else{
  177. $data = [
  178. 'status' => 100,
  179. 'msg' => "设备存在!",
  180. 'item' => $item
  181. ];
  182. }
  183. return $data;
  184. }
  185. /*
  186. * 获取手机配置
  187. */
  188. public static function getDefaultMobile($data){
  189. //判断是否绑定配置
  190. if(empty($data['pz'])){
  191. $data = [
  192. 'status' => 101,
  193. 'msg' => "请对该设备绑定默认配置!"
  194. ];
  195. }else{
  196. $pz = json_decode($data['pz'],true);
  197. //获取小红书appid
  198. $app_id = ClosureCategory::where([
  199. 'name' => '小红书',
  200. 'shop_id' => $data['shop_id']
  201. ])->value('id');
  202. if(empty($app_id)){
  203. $data = [
  204. 'status' => 102,
  205. 'msg' => "找不到名为小红书的appID!"
  206. ];
  207. }else{
  208. //读取默认配置
  209. foreach ($pz as $k=>$v){
  210. if((int)$v['cid'] === (int)$app_id){
  211. //读取具体配置对象 $v['val']
  212. $item = Closure::where(['id'=>$v['val']])->find();
  213. if(empty($item['json_data'])){
  214. $data = [
  215. 'status' => 103,
  216. 'msg' => "找不到配置对象记录!"
  217. ];
  218. }else{
  219. $data = [
  220. 'status' => 100,
  221. 'msg' => "存在默认配置!",
  222. 'data' => json_decode($item['json_data'],true)
  223. ];
  224. $data['data']['ver'] = $v['ver'];
  225. }
  226. }
  227. }
  228. }
  229. }
  230. //查询默认配置
  231. return $data;
  232. }
  233. /*
  234. * 获取手机列表
  235. */
  236. public static function getMobile($data)
  237. {
  238. //限制手机数量 首先获取合法的手机数量是多少
  239. $tid = shopModel::where('id',$data['shop_id'])->value('tid');
  240. if ((int)$tid === 0) {
  241. //未配置
  242. $count_pc = 1;
  243. $count_mobile = 3;
  244. $count_run = 3;
  245. } else if ((int)$tid > 0) {
  246. //查找配置
  247. $one = shopGoodsModel::where('id', $tid)->find();
  248. $count_pc = $one['pc_num'];
  249. $count_mobile = $one['mobile_num'];
  250. $count_run = $one['run_num'];
  251. } else {
  252. //其他
  253. $count_pc = 1;
  254. $count_mobile = 3;
  255. $count_run = 3;
  256. }
  257. //只调用允许数量 按id排序即可 后台不可更改排序
  258. $list = EquiCategoryModel::where(['pid'=>$data['id'],'is_show'=>1,'del'=>0,'is_user'=>1])
  259. ->order('id asc')
  260. ->limit($count_run)
  261. ->select();
  262. if(empty($list)){
  263. $data = [
  264. 'status' => 100,
  265. 'msg' => "找不到手机设备,全部使用默认配置!"
  266. ];
  267. }else{
  268. //获取小红书appid
  269. $app_id = ClosureCategory::where([
  270. 'name' => '小红书',
  271. 'shop_id' => $data['shop_id']
  272. ])->value('id');
  273. if(empty($app_id)){
  274. $data = [
  275. 'status' => 102,
  276. 'msg' => "找不到名为小红书的appID!"
  277. ];
  278. }else{
  279. $pz_list = [];
  280. $ids = [];
  281. //dump($list->toArray());die;
  282. foreach ($list as $k=>$v){
  283. //没有配置指定 就使用默认的配置
  284. if(!empty($v['pz'])){
  285. $pz = json_decode($v['pz'],true);
  286. foreach ($pz as $kk=>$vv){
  287. //小红书
  288. if((int)$vv['cid'] === (int)$app_id){
  289. $pz_list[] = $v['name'];
  290. $ids[] = $vv['val'];
  291. $ver[] = $vv['ver']; //版本号
  292. }
  293. }
  294. }
  295. }
  296. if(empty($ids)){
  297. $data = [
  298. 'status' => 100,
  299. 'msg' => "不存在手机配置,使用默认配置"
  300. ];
  301. }else{
  302. $data = [
  303. 'status' => 100,
  304. 'data' => $pz_list,
  305. 'ids' => $ids,
  306. 'ver' => $ver
  307. ];
  308. }
  309. }
  310. }
  311. return $data;
  312. }
  313. /*
  314. * 获取手机配置
  315. */
  316. public static function getMobileConfig($data,$ids,$ver)
  317. {
  318. $res = [];
  319. if(!empty($ids)){
  320. $list = Closure::where('id','in',$ids)->select();
  321. //用配置id 作 key 如果配置id相同 就会覆盖
  322. /* foreach ($list as $k=>$v){
  323. if(!empty($v['json_data'])){
  324. $res[$data[(int)$v['id']]] = json_decode($v['json_data'],true);
  325. $res[$data[(int)$v['id']]]['ver'] = $ver[(int)$v['id']]; //追加版本号
  326. }
  327. }*/
  328. //重写
  329. $pz_list = [];
  330. foreach ($list as $k=>$v){
  331. if(!empty($v['json_data'])) {
  332. $pz_list[$v['id']] = $v;
  333. }
  334. }
  335. foreach ($ids as $k=>$v){
  336. if(!empty($pz_list[$v])){
  337. $res[$data[$k]] = json_decode($pz_list[$v]['json_data'],true);
  338. $res[$data[$k]]['ver'] = $ver[$k]; //追加版本号
  339. }
  340. }
  341. }
  342. return $res;
  343. }
  344. /**
  345. * 获取店铺信息
  346. */
  347. public static function getShopInfo($shopId, $userId, $params = [])
  348. {
  349. // 记录统计信息(访问商铺用户量)
  350. Event::listen('ShopStat', 'app\common\listener\ShopStat');
  351. event('ShopStat', $shopId);
  352. $where = [
  353. 'del' => 0,
  354. 'id' => $shopId
  355. ];
  356. $field = [
  357. 'id', 'create_time', 'name', 'logo', 'background',
  358. 'type', 'score', 'star', 'intro',
  359. 'visited_num', 'cover', 'banner', 'is_freeze',
  360. 'is_run', 'expire_time',
  361. 'province_id', 'city_id', 'district_id', 'address',
  362. 'run_start_time', 'run_end_time', 'weekdays',
  363. ];
  364. $shop = Shop::field($field)
  365. ->where($where)
  366. ->append([ 'type_desc', 'is_expire' ])
  367. ->findOrEmpty();
  368. if($shop->isEmpty()) {
  369. return [];
  370. }else{
  371. $shop = $shop->toArray();
  372. }
  373. //
  374. $shop['logo'] = UrlServer::getFileUrl($shop['logo'] ? : ShopEnum::DEFAULT_LOGO);
  375. $shop['background'] = UrlServer::getFileUrl($shop['background'] ? : ShopEnum::DEFAULT_BG);
  376. $shop['cover'] = UrlServer::getFileUrl($shop['cover'] ? :ShopEnum::DEFAULT_COVER);
  377. $shop['banner'] = UrlServer::getFileUrl($shop['banner'] ? : ShopEnum::DEFAULT_BANNER);
  378. $shop['run_start_time'] = $shop['run_start_time'] ? date('H:i:s', $shop['run_start_time']) : '';
  379. $shop['run_end_time'] = $shop['run_end_time'] ? date('H:i:s', $shop['run_end_time']) : '';
  380. $shop['province'] = DevRegion::getAreaName($shop['province_id']);
  381. $shop['city'] = DevRegion::getAreaName($shop['city_id']);
  382. $shop['district'] = DevRegion::getAreaName($shop['district_id']);
  383. $shop['qr_code'] = (new QrCodeLogic)->shopQrCode($shop['id'], $params['terminal'] ?? '');
  384. // 在售商品
  385. // 销售中商品:未删除/审核通过/已上架
  386. $onSaleWhere = [
  387. ['del', '=', GoodsEnum::DEL_NORMAL], // 未删除
  388. ['status', '=', GoodsEnum::STATUS_SHELVES], // 上架中
  389. ['audit_status', '=', GoodsEnum::AUDIT_STATUS_OK], // 审核通过
  390. ];
  391. $shop['on_sale_count'] = Goods::where($onSaleWhere)->where('shop_id', $shopId)->count();
  392. // 店铺推荐商品
  393. $shop['goods_list'] = Goods::field('id,image,name,min_price,market_price')
  394. ->where($onSaleWhere)
  395. ->where([
  396. 'shop_id' => $shop['id'],
  397. 'is_recommend' => 1, // 推荐商品
  398. ])
  399. ->limit(9)
  400. ->select()
  401. ->toArray();
  402. // 用户是否关注店铺
  403. $shop['shop_follow_status'] = 0;
  404. if($userId) { // 用户已登录
  405. $shopFollow = ShopFollow::where(['user_id'=>$userId, 'shop_id'=>$shopId])->findOrEmpty();
  406. if(!$shopFollow->isEmpty()) {
  407. $shop['shop_follow_status'] = $shopFollow['status'];
  408. }
  409. }
  410. $shop['follow_num'] = ShopFollow::where(['shop_id' => $shopId,'status' => 1])->count('id');
  411. $image = ConfigServer::get('shop_customer_service', 'image', '', $shopId);
  412. $shop['customer_image'] = $image ? UrlServer::getFileUrl($image) : '';
  413. $shop['customer_wechat'] = ConfigServer::get('shop_customer_service', 'wechat', '', $shopId);
  414. $shop['customer_phone'] = ConfigServer::get('shop_customer_service', 'phone', '', $shopId);
  415. // 店铺广告
  416. $adWhere = [
  417. [ 'shop_id', '=', $shopId ],
  418. [ 'status', '=', 1 ],
  419. ];
  420. $shop['ad'] = [
  421. 'pc' => ShopAd::where($adWhere)->where('terminal', ShopAdEnum::TERMINAL_PC)->append([ 'link_path', 'link_query' ])->order('sort desc,id desc')->select()->toArray(),
  422. 'mobile' => ShopAd::where($adWhere)->where('terminal', ShopAdEnum::TERMINAL_MOBILE)->append([ 'link_path', 'link_query' ])->order('sort desc,id desc')->select()->toArray(),
  423. ];
  424. return $shop;
  425. }
  426. /**
  427. * 店铺列表
  428. */
  429. public static function getShopList($get)
  430. {
  431. $where = [
  432. ['is_freeze', '=', 0], // 未冻结
  433. ['del', '=', 0], // 未删除
  434. ['is_run', '=', 1], // 未暂停营业
  435. ];
  436. // 店铺名称
  437. if(isset($get['name']) && !empty($get['name'])) {
  438. $where[] = ['name', 'like', '%'. trim($get['name']. '%')];
  439. }
  440. // 主营类目
  441. if(isset($get['shop_cate_id']) && !empty($get['shop_cate_id'])) {
  442. $where[] = ['cid', '=', $get['shop_cate_id']];
  443. }
  444. $order = [
  445. 'weight' => 'asc',
  446. 'score' => 'desc',
  447. 'id' => 'desc'
  448. ];
  449. $list = Shop::field('id,type,name,logo,background,visited_num,cover,banner')
  450. ->where($where)
  451. // 无限期 或 未到期
  452. ->whereRaw('expire_time =0 OR expire_time > '. time())
  453. ->order($order)
  454. ->page($get['page_no'], $get['page_size'])
  455. ->select()
  456. ->toArray();
  457. $count = Shop::where($where)
  458. // 无限期 或 未到期
  459. ->whereRaw('expire_time =0 OR expire_time > '. time())
  460. ->count();
  461. $onSaleWhere = [
  462. ['del', '=', GoodsEnum::DEL_NORMAL], // 未删除
  463. ['status', '=', GoodsEnum::STATUS_SHELVES], // 上架中
  464. ['audit_status', '=', GoodsEnum::AUDIT_STATUS_OK], // 审核通过
  465. ];
  466. foreach($list as &$shop) {
  467. $shop['goods_list'] = Goods::field('id,image,name,min_price,market_price')
  468. ->where($onSaleWhere)
  469. ->where([
  470. 'shop_id' => $shop['id'],
  471. ])
  472. ->limit(10)
  473. ->select()
  474. ->toArray();
  475. $shop['on_sale_goods'] = count($shop['goods_list']);
  476. // logo及背景图
  477. $shop['logo'] = $shop['logo'] ? UrlServer::getFileUrl($shop['logo']) : UrlServer::getFileUrl(ShopEnum::DEFAULT_LOGO);
  478. $shop['background'] = $shop['background'] ? UrlServer::getFileUrl($shop['background']) : UrlServer::getFileUrl(ShopEnum::DEFAULT_BG);
  479. $shop['cover'] = $shop['cover'] ? UrlServer::getFileUrl($shop['cover']) : UrlServer::getFileUrl(ShopEnum::DEFAULT_COVER);
  480. $shop['banner'] = $shop['banner'] ? UrlServer::getFileUrl($shop['banner']) : '';
  481. }
  482. $more = is_more($count, $get['page_no'], $get['page_size']);
  483. $data = [
  484. 'list' => $list,
  485. 'count' => $count,
  486. 'more' => $more,
  487. 'page_no' => $get['page_no'],
  488. 'page_isze' => $get['page_size']
  489. ];
  490. return $data;
  491. }
  492. /**
  493. * @notes 附近店铺列表
  494. * @param $get
  495. * @return array
  496. * @throws \think\db\exception\DataNotFoundException
  497. * @throws \think\db\exception\DbException
  498. * @throws \think\db\exception\ModelNotFoundException
  499. * @author ljj
  500. * @date 2022/9/20 4:29 下午
  501. */
  502. public static function getNearbyShops($get)
  503. {
  504. $where = [
  505. ['is_freeze', '=', 0], // 未冻结
  506. ['del', '=', 0], // 未删除
  507. ['is_run', '=', 1], // 未暂停营业
  508. ['city_id', '=', $get['city_id']],
  509. ];
  510. // 店铺名称
  511. if(isset($get['name']) && !empty($get['name'])) {
  512. $where[] = ['name', 'like', '%'. trim($get['name']. '%')];
  513. }
  514. // 主营类目
  515. if(isset($get['shop_cate_id']) && !empty($get['shop_cate_id'])) {
  516. $where[] = ['cid', '=', $get['shop_cate_id']];
  517. }
  518. $city = DevRegion::where('id',$get['city_id'])->field('db09_lng,db09_lat')->findOrEmpty()->toArray();
  519. $list = Shop::field('id,name,logo,background,visited_num,cover,banner,st_distance_sphere(point('.$city['db09_lng'].','.$city['db09_lat'].'),point(longitude, latitude)) as distance')
  520. ->where($where)
  521. // 无限期 或 未到期
  522. ->whereRaw('expire_time =0 OR expire_time > '. time())
  523. ->order('distance asc')
  524. ->page($get['page_no'], $get['page_size'])
  525. ->select()
  526. ->toArray();
  527. $count = Shop::where($where)
  528. // 无限期 或 未到期
  529. ->whereRaw('expire_time =0 OR expire_time > '. time())
  530. ->count();
  531. $onSaleWhere = [
  532. ['del', '=', GoodsEnum::DEL_NORMAL], // 未删除
  533. ['status', '=', GoodsEnum::STATUS_SHELVES], // 上架中
  534. ['audit_status', '=', GoodsEnum::AUDIT_STATUS_OK], // 审核通过
  535. ];
  536. foreach($list as &$shop) {
  537. $shop['goods_list'] = Goods::field('id,image,name,min_price,market_price')
  538. ->where($onSaleWhere)
  539. ->where([
  540. 'shop_id' => $shop['id'],
  541. ])
  542. ->select()
  543. ->toArray();
  544. $shop['on_sale_goods'] = count($shop['goods_list']);
  545. // logo及背景图
  546. $shop['logo'] = $shop['logo'] ? UrlServer::getFileUrl($shop['logo']) : UrlServer::getFileUrl(ShopEnum::DEFAULT_LOGO);
  547. $shop['background'] = $shop['background'] ? UrlServer::getFileUrl($shop['background']) : UrlServer::getFileUrl(ShopEnum::DEFAULT_BG);
  548. $shop['cover'] = $shop['cover'] ? UrlServer::getFileUrl($shop['cover']) : UrlServer::getFileUrl(ShopEnum::DEFAULT_COVER);
  549. $shop['banner'] = $shop['banner'] ? UrlServer::getFileUrl($shop['banner']) : '';
  550. //转换距离单位
  551. if ($shop['distance'] < 1000) {
  552. $shop['distance'] = round($shop['distance']).'m';
  553. }else {
  554. $shop['distance'] = round($shop['distance'] / 1000,2).'km';
  555. }
  556. }
  557. $more = is_more($count, $get['page_no'], $get['page_size']);
  558. $data = [
  559. 'list' => $list,
  560. 'count' => $count,
  561. 'more' => $more,
  562. 'page_no' => $get['page_no'],
  563. 'page_isze' => $get['page_size']
  564. ];
  565. return $data;
  566. }
  567. public static function getXhsDefaultAppuim()
  568. {
  569. $data = [
  570. '默认' => '',
  571. "搜索列表" => '//androidx.recyclerview.widget.RecyclerView[@class="androidx.recyclerview.widget.RecyclerView"]/android.widget.FrameLayout[@class="android.widget.FrameLayout"]/android.widget.RelativeLayout[@class="android.widget.RelativeLayout"]/android.widget.TextView[@class="android.widget.TextView" and @text!=""]',
  572. "推荐列表" => '//androidx.recyclerview.widget.RecyclerView[@class="androidx.recyclerview.widget.RecyclerView"]/android.widget.LinearLayout[@class="android.widget.LinearLayout" and @content-desc!=""]',
  573. '推荐列表元素' => '//android.widget.LinearLayout[@content-desc="变量1"]',
  574. '搜索列表元素' => '//android.widget.TextView[@text="变量1"]',
  575. "私信发送按钮" => '//android.view.ViewGroup[@class="android.view.ViewGroup"]/android.widget.TextView[contains(@text,"发送")]',
  576. '判断当前是否视频' => '//android.view.ViewGroup[@class="android.view.ViewGroup"]/android.widget.Button[@content-desc="分享"]',
  577. '视频评论数' => '//android.view.ViewGroup[@class="android.view.ViewGroup"]/android.widget.Button[contains(@content-desc,"评论")]',
  578. '视频分享按钮' => '//android.view.ViewGroup[@class="android.view.ViewGroup"]/android.widget.Button[@content-desc="分享"]',
  579. '视频获取账号名称' => '//android.widget.Button[contains(@content-desc,"作者") and @class="android.widget.Button"]/android.widget.LinearLayout[@class="android.widget.LinearLayout"]/android.widget.TextView[@class="android.widget.TextView"]',
  580. "视频获取点赞按钮" => '//android.view.ViewGroup[@class="android.view.ViewGroup"]/android.widget.Button[contains(@content-desc,"点赞")]',
  581. "视频获取收藏按钮" => '//android.view.ViewGroup[@class="android.view.ViewGroup"]/android.widget.Button[contains(@content-desc,"收藏")]',
  582. "视频详情返回按钮" => '//android.view.ViewGroup[@class="android.view.ViewGroup"]/android.widget.Button[contains(@content-desc,"返回")]'
  583. ];
  584. return $data;
  585. }
  586. public static function getXhsDefaultU2()
  587. {
  588. $data = [
  589. '默认' => ''
  590. ];
  591. return $data;
  592. }
  593. public static function getXhsAppuim_1()
  594. {
  595. //相对位置 /parent::*[1]/
  596. //p推荐页 p搜索页 p搜索列表页_1 p搜索列表页_2 p图文页 p视频页 p旧版视频页 p用户主页 p私信页
  597. $data = [
  598. "默认" => '',
  599. //页面唯一标识 start
  600. "p推荐页" => '//android.view.ViewGroup[@class="android.view.ViewGroup" and @index="0"]/android.widget.RelativeLayout[@class="android.widget.RelativeLayout" and @index="2" and @content-desc="发布"]',
  601. "p搜索页" => '//android.widget.LinearLayout[@class="android.widget.LinearLayout"]/android.widget.ImageView[@class="android.widget.ImageView" and @content-desc="拍照搜索"]',
  602. "p搜索列表页_1" => '//android.widget.Button[@class="android.widget.Button"]/android.widget.TextView[@text="筛选"]',
  603. "p搜索列表页_2" => '//android.widget.TextView[@class="android.widget.TextView" and @text="全部"]/parent::*[1]/android.widget.ImageView[@class="android.widget.ImageView"]',
  604. "p图文页" => '//android.widget.RelativeLayout[@class="android.widget.RelativeLayout"]/android.widget.Button[@content-desc="分享"]',
  605. "p视频页" => '//android.view.ViewGroup[@class="android.view.ViewGroup"]//android.widget.ImageView[@class="android.widget.ImageView" and @content-desc="搜索"]',
  606. "p旧版视频页" => '//androidx.recyclerview.widget.RecyclerView[@class="androidx.recyclerview.widget.RecyclerView"]//android.view.ViewGroup[@class="android.view.ViewGroup"]//android.widget.ImageView[@class="android.widget.ImageView" and @index="5"]',
  607. "p用户主页" => '//android.widget.LinearLayout[@class="android.widget.LinearLayout"]/android.widget.TextView[contains(@text,"小红书号")]',
  608. "p私信页" => '//android.widget.FrameLayout[@class="android.widget.FrameLayout"]/android.widget.EditText[@class="android.widget.EditText"]',
  609. //页面唯一标识 end
  610. //页面多版本 start
  611. "搜索列表" => '//androidx.recyclerview.widget.RecyclerView[@class="androidx.recyclerview.widget.RecyclerView"]/android.widget.FrameLayout[@class="android.widget.FrameLayout"]/android.widget.RelativeLayout[@class="android.widget.RelativeLayout"]/android.widget.TextView[@class="android.widget.TextView" and @text!=""]',
  612. "推荐列表" => '//androidx.recyclerview.widget.RecyclerView[@class="androidx.recyclerview.widget.RecyclerView"]/android.widget.FrameLayout[@class="android.widget.FrameLayout" and @content-desc!=""]',
  613. '推荐列表元素' => '//android.widget.FrameLayout[@content-desc="变量1"]',
  614. '搜索列表元素' => '//android.widget.TextView[@text="变量1"]',
  615. "私信发送按钮" => '//android.widget.RelativeLayout[@class="android.widget.RelativeLayout"]/android.widget.TextView[contains(@text,"发送")]',
  616. '判断当前是否视频' => '//android.widget.FrameLayout[@class="android.widget.FrameLayout" and @index="1"]/android.widget.LinearLayout[@index="0"]/android.widget.LinearLayout[@index="3"]/android.widget.TextView[@class="android.widget.TextView"]',
  617. '视频评论数' => '//android.widget.FrameLayout[@class="android.widget.FrameLayout" and @index="1"]/android.widget.LinearLayout[@index="0"]/android.widget.LinearLayout[@index="1"]/android.widget.TextView[@class="android.widget.TextView"]',
  618. '视频分享按钮' => '//android.widget.FrameLayout[@class="android.widget.FrameLayout" and @index="1"]/android.widget.LinearLayout[@index="0"]/android.widget.LinearLayout[@index="4"]/android.widget.ImageView[@class="android.widget.ImageView"]',
  619. '视频获取账号名称' => '//android.widget.FrameLayout[@class="android.widget.FrameLayout"]/android.view.ViewGroup[@class="android.view.ViewGroup"]/android.widget.LinearLayout[@class="android.widget.LinearLayout"]/android.widget.LinearLayout[@class="android.widget.LinearLayout"]/android.widget.TextView[@class="android.widget.TextView"]',
  620. "视频获取点赞按钮" => '//android.widget.FrameLayout[@class="android.widget.FrameLayout" and @index="1"]/android.widget.LinearLayout[@index="0"]/android.widget.LinearLayout[@index="0"]/android.widget.TextView[@class="android.widget.TextView"]',
  621. "视频获取收藏按钮" => '//android.widget.FrameLayout[@class="android.widget.FrameLayout" and @index="1"]/android.widget.LinearLayout[@index="0"]/android.widget.LinearLayout[@index="2"]/android.widget.TextView[@class="android.widget.TextView"]',
  622. "视频详情返回按钮" => '//android.view.ViewGroup[@class="android.view.ViewGroup"]/android.widget.ImageView[contains(@content-desc,"返回")]'
  623. //页面多版本 end
  624. ];
  625. return $data;
  626. }
  627. public static function getXhsU2_1()
  628. {
  629. $data = [
  630. '默认' => ''
  631. ];
  632. return $data;
  633. }
  634. /**
  635. * 加密 ZMH 2025-03-18
  636. * @param $data
  637. * @return bool|string
  638. */
  639. public static function encrypt($data)
  640. {
  641. $key = 'ABCDEFGHIJKLMNOP'; //16位
  642. $vi = '0102030405060708'; //16位
  643. if (is_array($data)) {
  644. $str = json_encode($data,JSON_UNESCAPED_UNICODE); //讲数组转为字符串
  645. } else if (is_string($data)) {
  646. $str = $data;
  647. } else {
  648. return false;
  649. }
  650. $sign = openssl_encrypt($str, 'AES-128-CBC', $key, OPENSSL_RAW_DATA, $vi);
  651. $sign = base64_encode($sign);
  652. return $sign;
  653. }
  654. /**
  655. * 获取商家信息 ZMH 2025-03-18
  656. * @param $code
  657. * @return model|bool
  658. */
  659. public static function getShopByCode($code)
  660. {
  661. if (empty($code)) {
  662. self::$error = "设备编码不能为空";
  663. self::$errCode = 2;
  664. return false;
  665. }
  666. $where = [
  667. "del" => 0,
  668. "is_show" => 1,
  669. "pid" => 0, //必须是电脑
  670. "code" => $code
  671. ];
  672. $item = EquiCategoryModel::where($where)->find();
  673. if (empty($item)) {
  674. self::$error = "没有找到对应的设备";
  675. self::$errCode = 3;
  676. return false;
  677. }
  678. $shop = ShopModel::where("id", $item["shop_id"])->find();
  679. if (empty($shop)) {
  680. self::$error = "用户信息不存在";
  681. self::$errCode = 4;
  682. return false;
  683. }
  684. return $shop;
  685. }
  686. /**
  687. * 获取剩余数量 ZMH 2025-03-18
  688. * @param $get
  689. * @return bool|array
  690. */
  691. public static function getHKSYCount($get) {
  692. $code = $get["code"] ?? '';
  693. $shop = self::getShopByCode($code);
  694. if (empty($shop)) {
  695. return false;
  696. }
  697. return ['count' => $shop->hksy_count, 'expire_time' => $shop->expire_time];
  698. }
  699. /**
  700. * 扣减剩余数量 ZMH 2025-03-18
  701. * @param $get
  702. * @return bool|number
  703. */
  704. public static function subHKSYCount($post) {
  705. $code = $post["code"] ?? '';
  706. $count = $post["count"] ?? 0;
  707. $remark = $post["remark"] ?? '';
  708. if ($count <= 0 || empty($remark)) {
  709. self::$errCode = 1;
  710. self::$error = "参数错误";
  711. return false;
  712. }
  713. $shop = self::getShopByCode($code);
  714. if (empty($shop)) {
  715. return false;
  716. }
  717. // 判断是否过期
  718. $expire_time = $shop->expire_time;
  719. if (time() < $expire_time) {
  720. return true;
  721. }
  722. if ($shop->hksy_count < $count) {
  723. self::$errCode = 5;
  724. self::$error = "剩余数量不足";
  725. return false;
  726. }
  727. Db::startTrans();
  728. try {
  729. //code...
  730. $old_hksy_count = $shop->hksy_count;
  731. $shop->hksy_count = $shop->hksy_count - $count;
  732. $shop->save();
  733. // 添加数量记录
  734. $hk = new ShopHkLog();
  735. $hk->shop_id = $shop['id'];
  736. $hk->source_type = 101;
  737. $hk->change_count = 0 - $count;
  738. $hk->left_count = $shop->hksy_count;
  739. $hk->remark = $remark;
  740. $hk->save();
  741. Db::commit();
  742. } catch (\Throwable $th) {
  743. //throw $th;
  744. Db::rollback();
  745. self::$errCode = 6;
  746. self::$error = "扣除失败";
  747. return false;
  748. }
  749. return $shop->hksy_count;
  750. }
  751. }