Nenhuma descrição
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

Users.php 42KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海口快推科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\api\controller\v1;
  14. use think\Db;
  15. use think\Request;
  16. class Users extends Base
  17. {
  18. public $users;
  19. public $users_id;
  20. /**
  21. * 初始化操作
  22. */
  23. public function _initialize()
  24. {
  25. parent::_initialize();
  26. $this->users = $this->getUser(); // 用户信息
  27. $this->users_id = !empty($this->users['users_id']) ? intval($this->users['users_id']) : null;
  28. if (empty($this->users_id)) $this->error('请先登录');
  29. }
  30. /**
  31. * 我的订单列表
  32. * @param $dataType
  33. * @return array
  34. * @throws \think\exception\DbException
  35. */
  36. public function order_lists($dataType)
  37. {
  38. $list = model('v1.Shop')->getOrderList($this->users_id, $dataType);
  39. return $this->renderSuccess(compact('list'));
  40. }
  41. //获取留言列表
  42. public function guestbook_list()
  43. {
  44. if (IS_AJAX) {
  45. $list = model('v1.User')->guestbookList();
  46. return $this->renderSuccess(compact('list'));
  47. }
  48. $this->error('请求错误!');
  49. }
  50. //获取我的预约详情
  51. public function get_book_detail()
  52. {
  53. if (IS_AJAX) {
  54. $param = input('param.');
  55. $list = model('v1.User')->GetMyBookDetail($param);
  56. return $this->renderSuccess(compact('list'));
  57. }
  58. $this->error('请求错误!');
  59. }
  60. //取消预约
  61. public function cancel_book()
  62. {
  63. if (IS_AJAX) {
  64. $aid = input('param.aid/d',0);
  65. if (empty($aid)){
  66. $this->error('缺少参数aid!');
  67. }
  68. $r = Db::name('guestbook')
  69. ->where(['aid'=>$aid,'users_id'=>$this->users_id])
  70. ->delete();
  71. if (false !== $r){
  72. Db::name('guestbook_attr')->where('aid',$aid)->delete();
  73. $this->success('取消成功!');
  74. }else{
  75. $this->error('取消失败!');
  76. }
  77. }
  78. $this->error('请求错误!');
  79. }
  80. /**
  81. * 取消订单
  82. * @param $order_id
  83. * @return array
  84. * @throws \Exception
  85. * @throws \app\common\exception\BaseException
  86. * @throws \think\exception\DbException
  87. */
  88. public function order_cancel($order_id)
  89. {
  90. if (IS_AJAX_POST && !empty($order_id)) {
  91. model('v1.Shop')->orderCancel($order_id, $this->users_id);
  92. }
  93. $this->error('订单取消失败!');
  94. }
  95. /**
  96. * 订单提醒发货
  97. * @param $order_id
  98. * @return array
  99. * @throws \Exception
  100. * @throws \app\common\exception\BaseException
  101. * @throws \think\exception\DbException
  102. */
  103. public function order_remind($order_id)
  104. {
  105. if (IS_AJAX_POST && !empty($order_id)) {
  106. model('v1.Shop')->orderRemind($order_id, $this->users_id);
  107. }
  108. $this->error('订单取消失败!');
  109. }
  110. /**
  111. * 订单详情信息
  112. * @param $order_id
  113. * @return array
  114. * @throws \app\common\exception\BaseException
  115. * @throws \think\exception\DbException
  116. */
  117. public function order_detail($order_id)
  118. {
  119. if (IS_AJAX) {
  120. // 是否安装使用快递100查询插件
  121. $is_querykd = 0;
  122. if (is_dir('./weapp/Querykd/')) {
  123. $count = Db::name('weapp')->where(['code'=>'Querykd', 'status'=>1])->count();
  124. $is_querykd = empty($count) ? $is_querykd : 1;
  125. }
  126. // 订单详情
  127. $detail = model('v1.Shop')->getOrderDetail($order_id, $this->users_id);
  128. return $this->renderSuccess([
  129. 'order' => $detail, // 订单详情
  130. 'is_querykd' => $is_querykd,
  131. 'setting' => [],
  132. ]);
  133. }
  134. $this->error('订单读取失败!');
  135. }
  136. /**
  137. * 订单支付
  138. * @param int $order_id 订单id
  139. * @param int $payType 支付方式
  140. * @return array
  141. * @throws \app\common\exception\BaseException
  142. * @throws \think\Exception
  143. * @throws \think\exception\DbException
  144. */
  145. public function order_pay($order_id, $payType = 20)
  146. {
  147. // 订单支付事件
  148. $order = model('v1.Shop')->getOrderDetail($order_id, $this->users_id);
  149. // 判断订单状态
  150. if (!isset($order['order_status']) || $order['order_status'] != 0) {
  151. $this->error('很抱歉,当前订单不合法,无法支付');
  152. }
  153. // 构建微信支付请求
  154. $payment = model('v.Shop')->onOrderPayment($this->users, $order, $payType);
  155. if (isset($payment['code']) && empty($payment['code'])) {
  156. $this->error($payment['msg'] ?: '订单支付失败');
  157. }
  158. // 支付状态提醒
  159. $this->renderSuccess([
  160. 'order_id' => $order['order_id'], // 订单id
  161. 'pay_type' => $payType, // 支付方式
  162. 'payment' => $payment // 微信支付参数
  163. ], ['success' => '支付成功', 'error' => '订单未支付']);
  164. }
  165. /**
  166. * 获取物流信息
  167. * @param $order_id
  168. * @return array
  169. * @throws \app\common\exception\BaseException
  170. * @throws \think\exception\DbException
  171. */
  172. public function order_express($order_id, $timestamp = '')
  173. {
  174. // 订单详情
  175. $detail = model('v1.Shop')->getOrderDetail($order_id, $this->users_id);
  176. if (empty($detail['express_order'])) {
  177. return $this->error('没有物流信息');
  178. }
  179. // 获取物流信息
  180. /* @var \app\store\model\Express $model */
  181. $express = model('v1.Shop')->orderExpress($detail['express_name'], $detail['express_code'], $detail['express_order'], $timestamp);
  182. if (!empty($express)) {
  183. return $this->renderSuccess(compact('express'));
  184. }
  185. $this->error('没有找到物流信息!');
  186. }
  187. /**
  188. * 确认收货
  189. * @param $order_id
  190. * @return array
  191. * @throws \Exception
  192. * @throws \app\common\exception\BaseException
  193. * @throws \think\exception\DbException
  194. */
  195. public function order_receipt($order_id)
  196. {
  197. if (IS_AJAX_POST && !empty($order_id)) {
  198. model('v1.Shop')->orderReceipt($order_id, $this->users_id);
  199. }
  200. $this->error('确认收货失败!');
  201. }
  202. /* -------------陈风任------------- */
  203. /**
  204. * 添加商品到购物车
  205. */
  206. public function shop_add_cart()
  207. {
  208. if (IS_AJAX_POST) {
  209. $post = input('post.');
  210. // 数量判断
  211. if (empty($post['product_num']) || 0 > $post['product_num']) $this->error('请输入数量');
  212. // 默认会员ID
  213. $post['users_id'] = $this->users_id;
  214. // 商城模型
  215. $ShopModel = model('v1.Shop');
  216. // 商品是否已售罄
  217. $ShopModel->IsSoldOut($post);
  218. // 添加购物车
  219. $ShopModel->ShopAddCart($post);
  220. }
  221. }
  222. /**
  223. * 添加商品到购物车
  224. */
  225. public function shop_page_add_cart()
  226. {
  227. if (IS_AJAX_POST) {
  228. $post = input('post.');
  229. // 数量判断
  230. if (empty($post['product_num']) || 0 > $post['product_num']) $this->error('请输入数量');
  231. // 默认会员ID
  232. $post['users_id'] = $this->users_id;
  233. // 商城模型
  234. $ShopModel = model('v1.Shop');
  235. // 添加购物车
  236. $ShopModel->ShopPageAddCart($post);
  237. }
  238. }
  239. /**
  240. * 立即购买
  241. */
  242. public function shop_buy_now()
  243. {
  244. if (IS_AJAX_POST) {
  245. $post = input('post.');
  246. // 数量判断
  247. if (empty($post['product_num']) || 0 > $post['product_num']) $this->error('请输入数量');
  248. // 默认会员ID
  249. $post['users_id'] = $this->users_id;
  250. // 商城模型
  251. $ShopModel = model('v1.Shop');
  252. // 商品是否已售罄
  253. $ShopModel->IsSoldOut($post);
  254. // 立即购买
  255. $ShopModel->ShopBuyNow($post);
  256. }
  257. }
  258. /**
  259. * 产品购买
  260. */
  261. public function shop_product_buy()
  262. {
  263. if (IS_AJAX_POST) {
  264. // 获取解析数据
  265. $querystr = input('param.querystr/s');
  266. if (empty($querystr)) $this->error('无效链接!');
  267. // 商城模型
  268. $ShopModel = model('v1.Shop');
  269. // 获取商品信息进行展示
  270. $post = input('post.');
  271. $ShopModel->GetProductData($querystr, $this->users_id, $this->users['level_discount'], $this->users, $post);
  272. }
  273. }
  274. /**
  275. * 订单结算
  276. */
  277. public function shop_order_pay()
  278. {
  279. if (IS_AJAX_POST) {
  280. $post = input('post.');
  281. $post['action'] = !empty($post['action']) ? $post['action'] : 'CreatePay';
  282. // 默认会员ID
  283. $post['users_id'] = $this->users_id;
  284. $post['openid'] = Db::name('wx_users')->where('users_id', $this->users_id)->getField('openid');
  285. // 商城模型
  286. $ShopModel = model('v1.Shop');
  287. // 操作分发
  288. if ('DirectPay' == $post['action']) {
  289. // 订单直接支付
  290. $ShopModel->OrderDirectPay($post);
  291. } else if ('CreatePay' == $post['action']) {
  292. // 获取解析数据
  293. if (empty($post['querystr'])) $this->error('无效链接!');
  294. // 获取商品信息生成订单并支付
  295. $ShopModel->ShopOrderPay($post, $this->users['level_discount'], $this->users['level_id'], $this->users);
  296. }
  297. }
  298. }
  299. /**
  300. * 商城订单支付后续处理
  301. */
  302. public function shop_order_pay_deal_with()
  303. {
  304. if (IS_AJAX_POST) {
  305. $post = input('post.');
  306. // 默认会员ID
  307. $post['users_id'] = $this->users_id;
  308. $post['openid'] = Db::name('wx_users')->where('users_id', $this->users_id)->getField('openid');
  309. // 订单支付后续处理
  310. if (9 === intval($post['curPayType'])) {
  311. // 抖音支付
  312. model('TikTok')->tikTokAppletsPayDealWith($post);
  313. } else {
  314. // 微信支付
  315. model('v1.Shop')->WechatAppletsPayDealWith($post);
  316. }
  317. }
  318. }
  319. /**
  320. * 购物车操作(改变数量、选中状态、删除)
  321. */
  322. public function shop_cart_action()
  323. {
  324. if (IS_AJAX) {
  325. $param = input('param.');
  326. if (empty($param['action'])) $param['action'] = null;
  327. $param['users_id'] = $this->users_id;
  328. // 商城模型
  329. $ShopModel = model('v1.Shop');
  330. /* 购物车操作 */
  331. if ('add' == $param['action']) {
  332. // 数量 + 1
  333. $ShopModel->ShopCartNumAdd($param);
  334. } else if ('less' == $param['action']) {
  335. // 数量 - 1
  336. $ShopModel->ShopCartNumLess($param);
  337. } else if ('selected' == $param['action']) {
  338. // 是否选中
  339. $ShopModel->ShopCartSelected($param);
  340. } else if ('all_selected' == $param['action']) {
  341. // 是否全部选中
  342. $ShopModel->ShopCartAllSelected($param);
  343. } else if ('del' == $param['action']) {
  344. // 删除购物车商品
  345. $ShopModel->ShopCartDelete($param);
  346. } else {
  347. $this->error('请正确操作');
  348. }
  349. /* END */
  350. }
  351. }
  352. /**
  353. * 收货地址列表
  354. */
  355. public function shop_address_list()
  356. {
  357. if (IS_AJAX) {
  358. // 商城模型
  359. $ShopModel = model('v1.Shop');
  360. // 收货地址列表
  361. $ReturnData = $ShopModel->GetAllAddressList($this->users);
  362. }
  363. }
  364. /**
  365. * 收货地址操作分发
  366. */
  367. public function shop_address_action()
  368. {
  369. if (IS_AJAX_POST) {
  370. $post = input('post.');
  371. // 商城模型
  372. $ShopModel = model('v1.Shop');
  373. // 操作分发
  374. if ('find_add' == $post['action']) {
  375. // 添加单条收货地址
  376. $ShopModel->FindAddAddr($post, $this->users_id);
  377. } else if ('find_edit' == $post['action']) {
  378. // 设置默认收货地址
  379. $ShopModel->FindEditAddr($post, $this->users_id);
  380. } else if ('default' == $post['action']) {
  381. // 设置默认收货地址
  382. $ShopModel->SetDefaultAddr($post, $this->users_id);
  383. } else if ('find_detail' == $post['action']) {
  384. // 获取单条收货地址
  385. $ShopModel->GetFindAddrDetail($post, $this->users);
  386. } else if ('find_del' == $post['action']) {
  387. // 删除单条收货地址
  388. $ShopModel->FindDelAddr($post, $this->users_id);
  389. } else {
  390. $this->error('请正确操作');
  391. }
  392. }
  393. }
  394. /* -------------END------------- */
  395. /**
  396. * 获取评价订单商品列表
  397. * @param $order_id
  398. * @return array
  399. * @throws \Exception
  400. * @throws \app\common\exception\BaseException
  401. * @throws \think\exception\DbException
  402. */
  403. public function order_comment($order_id)
  404. {
  405. if (IS_AJAX) {
  406. $data = model('v1.Shop')->getOrderComment($order_id, $this->users_id);
  407. return $this->renderSuccess([
  408. 'goods' => $data, // 订单详情
  409. ]);
  410. }
  411. $this->error('读取失败!');
  412. }
  413. /**
  414. * 保存评价
  415. * @return array
  416. */
  417. public function save_comment()
  418. {
  419. if (IS_AJAX_POST) {
  420. $post = input('post.');
  421. return model('v1.Shop')->getSaveComment($post,$this->users_id);
  422. }
  423. $this->error('评价失败!');
  424. }
  425. /**
  426. * 用户领取优惠券
  427. */
  428. public function get_coupon($coupon_id)
  429. {
  430. if (IS_AJAX) {
  431. $where = [
  432. 'coupon_id' => $coupon_id,
  433. ];
  434. //查询优惠券信息,结束发放时间/库存
  435. $coupon = Db::name('shop_coupon')->where($where)->find();
  436. if (!empty($coupon)) {
  437. if (1 > $coupon['coupon_stock']) {
  438. $this->error('优惠券库存不足!');
  439. }
  440. if (getTime() > $coupon['end_date']) {
  441. $this->error('优惠券发放已结束!');
  442. }
  443. $where['users_id'] = $this->users_id;
  444. $where['use_status'] = 0;
  445. $where['start_time'] = ['<=',getTime()];
  446. $where['end_time'] = ['>=',getTime()];
  447. $count = Db::name('shop_coupon_use')->where($where)->find();
  448. if (!empty($count)) {
  449. $this->error('请勿重复领取!');
  450. } else {
  451. $insert['coupon_id'] = $coupon_id;
  452. $insert['coupon_code'] = $coupon['coupon_code'];
  453. $insert['users_id'] = $this->users_id;
  454. $insert['use_status'] = 0;
  455. $insert['get_time'] = getTime();
  456. $insert['add_time'] = getTime();
  457. $insert['update_time'] = getTime();
  458. //根据使用期限不同插入开始/结束使用时间
  459. if (1 == $coupon['use_type']) {//固定期限
  460. $insert['start_time'] = $coupon['use_start_time'];
  461. $insert['end_time'] = $coupon['use_end_time'];
  462. } else if (2 == $coupon['use_type']) {//当日开始N天有效
  463. $insert['start_time'] = strtotime(date("Y-m-d", time()));
  464. $insert['end_time'] = $insert['start_time'] + $coupon['valid_days'] * 86400;
  465. } else if (3 == $coupon['use_type']) {//次日开始N天有效
  466. $insert['start_time'] = strtotime(date("Y-m-d", time())) + 86400;
  467. $insert['end_time'] = $insert['start_time'] + $coupon['valid_days'] * 86400;
  468. }
  469. if (!empty($insert)) {
  470. $use_insert = Db::name('shop_coupon_use')->insert($insert);
  471. if (!empty($use_insert)) {
  472. //减库存
  473. Db::name('shop_coupon')->where('coupon_id', $coupon_id)->setDec('coupon_stock');
  474. $this->success('领取成功!');
  475. }
  476. }
  477. }
  478. }
  479. }
  480. $this->error('优惠券领取失败!');
  481. }
  482. /**
  483. * 获取我的优惠券
  484. */
  485. public function get_my_coupon($dataType)
  486. {
  487. $list = model('v1.Shop')->GetMyCouponList($this->users_id, $dataType);
  488. return $this->renderSuccess(compact('list'));
  489. }
  490. /**
  491. * 领券中心
  492. */
  493. public function get_coupon_center()
  494. {
  495. $list = model('v1.Shop')->GetCouponCenter($this->users_id);
  496. return $this->renderSuccess(compact('list'));
  497. }
  498. /**
  499. * 收藏(喜欢)/取消
  500. * 收藏 type users_collection
  501. * 喜欢 type users_like
  502. */
  503. public function get_collect()
  504. {
  505. if (IS_AJAX_POST) {
  506. $aid = input('param.aid/d');
  507. $type = input('param.type/s','users_collection');
  508. $success = '已收藏';
  509. $cancel = '已取消';
  510. if ('users_collection' != $type){
  511. $success = 'success';
  512. }else{
  513. $cancel = 'cancel';
  514. }
  515. if(empty($aid)){
  516. $this->error('缺少文档ID!');
  517. }
  518. $count = Db::name($type)->where([
  519. 'aid' => $aid,
  520. 'users_id' => $this->users_id,
  521. ])->count();
  522. if (empty($count)) {
  523. $addSave = Db::name('archives')->field('aid,channel,typeid,lang,title,litpic')->where('aid',$aid)->find();
  524. if(empty($addSave)){
  525. $this->error('文档不存在!');
  526. }
  527. $addSave['lang'] = $this->home_lang;
  528. $addSave['add_time'] = getTime();
  529. $addSave['users_id'] = $this->users_id;
  530. $r = Db::name($type)->insert($addSave);
  531. if ($r !== false){
  532. Db::name('archives')->where('aid', $aid)->setInc('collection');
  533. if ('users_collection' == $type){
  534. $ret_data = ['is_collect'=>1];
  535. }else if ('users_like' == $type){
  536. $ret_data = ['is_like'=>1];
  537. }
  538. $this->success($success, null, $ret_data);
  539. }
  540. }else{
  541. $r = Db::name($type)->where(['aid'=>$aid,'users_id'=>$this->users_id])->delete();
  542. if ($r !== false){
  543. Db::name('archives')->where('aid', $aid)->setDec('collection');
  544. if ('users_collection' == $type){
  545. $ret_data = ['is_collect'=>0];
  546. }else if ('users_like' == $type){
  547. $ret_data = ['is_like'=>0];
  548. }
  549. $this->success($cancel, null,$ret_data);
  550. }
  551. }
  552. }
  553. $this->error('请求错误!');
  554. }
  555. //获取收藏列表
  556. public function get_collect_list()
  557. {
  558. if (IS_AJAX) {
  559. $param = input('param.');
  560. $list = model('v1.User')->GetMyCollectList($param);
  561. return $this->renderSuccess(compact('list'));
  562. }
  563. $this->error('请求错误!');
  564. }
  565. //修改头像/昵称/手机号
  566. public function save_user_info()
  567. {
  568. if (IS_AJAX_POST) {
  569. $head_pic = input('param.head_pic/s');
  570. $nickname = input('param.nickname/s');
  571. $nickname = !empty($nickname) ? filterNickname($nickname) : '';
  572. $mobile = input('param.mobile/s');
  573. if(!empty($head_pic) || !empty($nickname) || !empty($mobile)){
  574. $update = ['update_time'=>getTime()];
  575. if (!empty($head_pic)){
  576. $update['head_pic'] = $head_pic;
  577. }
  578. if (!empty($nickname)){
  579. $update['nickname'] = $nickname;
  580. }
  581. if (!empty($mobile)){
  582. $is_mobile = check_mobile($mobile);
  583. if (!$is_mobile){
  584. $this->error('手机号格式不正确!');
  585. }
  586. $update['mobile'] = $mobile;
  587. $update['is_mobile'] = 1;
  588. }
  589. $r = Db::name('users')->where(['users_id'=>$this->users_id])->update($update);
  590. if (!empty($r)){
  591. if(!empty($update['mobile'])){
  592. $para_mobile = Db::name('users_list')->where(['users_id'=>$this->users_id,'para_id'=>1])->find();
  593. if (!empty($para_mobile)){
  594. Db::name('users_list')->where(['users_id'=>$this->users_id,'para_id'=>1])->update(['']);
  595. }else{
  596. }
  597. }
  598. $this->success('保存成功');
  599. }
  600. }
  601. $this->error('保存失败');
  602. }
  603. }
  604. // 会员充值套餐操作处理
  605. public function usersRechargePackAction()
  606. {
  607. if (IS_AJAX_POST) {
  608. // 处理传入的参数
  609. $param = input('param.');
  610. $param['terminal'] = 'applets';
  611. $param['action'] = !empty($param['action']) ? strval($param['action']) : '';
  612. // 会员充值套餐全局模型
  613. $packModel = new \app\common\model\UsersRechargePack($param, $this->users);
  614. // 会员余额中心
  615. if ('moneyCenter' == $param['action']) {
  616. $packModel->usersMoneyCenter();
  617. }
  618. // 会员充值套餐页面
  619. else if ('recharge' == $param['action']) {
  620. $packModel->usersRechargePackPage();
  621. }
  622. // 会员余额充值记录
  623. else if ('rechargeLog' == $param['action']) {
  624. $packModel->usersMoneyRechargeLog();
  625. }
  626. // 会员充值套餐充值记录
  627. else if ('orderList' == $param['action']) {
  628. $packModel->usersRechargePackOrder();
  629. }
  630. // 会员充值套餐订单创建
  631. else if ('orderCreate' == $param['action']) {
  632. // 会员充值套餐下单
  633. if (!empty($param['pack_id'])) {
  634. $packModel->usersRechargePackOrderCreate();
  635. }
  636. // 会员充值余额下单
  637. else if (!empty($param['users_money'])) {
  638. $packModel->usersRechargeMoneyOrderCreate();
  639. }
  640. // 错误提示
  641. else {
  642. $this->error('请选择充值套餐或输入充值金额');
  643. }
  644. }
  645. // 会员充值套餐订单支付后续处理
  646. else if ('orderPayHandle' == $param['action']) {
  647. $packModel->usersRechargePackOrderPayHandle();
  648. }
  649. }
  650. }
  651. // 执行会员每日签到送积分
  652. public function usersCheckIns()
  653. {
  654. // 执行会员每日签到送积分
  655. $result = model('ShopPublicHandle')->executeUsersDailyCheckIns($this->users_id);
  656. if (isset($result['code']) && 1 === intval($result['code'])) {
  657. $this->success($result['msg'], null, ['scores' => $result['scores'], 'checkInsPoints' => $result['checkInsPoints']]);
  658. } else {
  659. $this->error($result['msg']);
  660. }
  661. }
  662. public function usersPointsList()
  663. {
  664. $param = input('param.');
  665. // 执行会员每日签到送积分
  666. $result = model('ShopPublicHandle')->getBaseUsersPointsDetails($this->users_id, $param);
  667. // 会员信息
  668. $result['users'] = $this->users;
  669. $this->success('查询成功', null, $result);
  670. }
  671. //获取手机号
  672. public function get_phone()
  673. {
  674. if (IS_AJAX_POST) {
  675. $code = input('param.code/s');
  676. model('v1.User')->getPhone($code);
  677. }
  678. }
  679. // 处理会员余额方法(集合方法)
  680. public function HandleUserMoneyAction()
  681. {
  682. if (IS_AJAX) {
  683. // 传入参数
  684. $param = input('param.');
  685. // 处理传入的参数
  686. $param['users_id'] = intval($this->users_id);
  687. $param['moneyid'] = !empty($param['moneyid']) ? intval($param['moneyid']) : 0;
  688. $param['usersMoney'] = !empty($param['usersMoney']) ? strval($param['usersMoney']) : 0;
  689. $param['order_number'] = !empty($param['order_number']) ? strval($param['order_number']) : '';
  690. $v1ShopModel = model('v1.Shop');
  691. // 判断执行操作
  692. $action = !empty($param['action']) ? strval($param['action']) : '';
  693. if ('details' == $action) {
  694. $v1ShopModel->getUsersMoneyDetails($this->users, $param);
  695. } else if ('recharge' == $action) {
  696. // 会员余额充值
  697. $v1ShopModel->getUsersMoneyRecharge($param);
  698. } else if ('rechargePay' == $action) {
  699. // 会员余额充值后续处理
  700. $v1ShopModel->getUsersMoneyRechargePay($param);
  701. }
  702. }
  703. }
  704. // 处理订单服务方法(集合方法)
  705. public function handleOrderServiceAction()
  706. {
  707. if (IS_AJAX) {
  708. // 传入参数
  709. $param = input('param.');
  710. // 处理传入的参数
  711. $param['users_id'] = intval($this->users_id);
  712. $param['order_id'] = !empty($param['order_id']) ? intval($param['order_id']) : 0;
  713. $param['product_id'] = !empty($param['product_id']) ? intval($param['product_id']) : 0;
  714. $param['details_id'] = !empty($param['details_id']) ? intval($param['details_id']) : 0;
  715. $param['service_id'] = !empty($param['service_id']) ? intval($param['service_id']) : 0;
  716. $v1ShopModel = model('v1.Shop');
  717. // 判断执行操作
  718. $action = !empty($param['action']) ? strval($param['action']) : '';
  719. if ('goodsDetect' == $action) {
  720. // 查询订单内的指定的某个商品,判断是否已申请售后或已评价商品
  721. $v1ShopModel->getOrderGoodsDetect($param);
  722. } else if ('getServiceList' == $action) {
  723. // 查询售后服务单列表
  724. $v1ShopModel->getOrderGoodsServiceList($param);
  725. } else if ('getService' == $action) {
  726. // 查询申请售后的订单商品
  727. $v1ShopModel->getOrderGoodsService($param);
  728. } else if ('addService' == $action) {
  729. $v1ShopModel->addOrderGoodsService($param);
  730. } else if ('cancelService' == $action) {
  731. // 取消售后订单会员邮寄物流信息
  732. $v1ShopModel->cancelOrderGoodsService($param);
  733. } else if ('addUsersDelivery' == $action) {
  734. // 添加售后订单会员邮寄物流信息
  735. $v1ShopModel->addServiceUsersDelivery($param);
  736. }
  737. }
  738. }
  739. // 分销商操作(集合方法)
  740. public function dealer_action()
  741. {
  742. if (IS_AJAX) {
  743. // 如果安装了分销插件则执行
  744. if (is_dir('./weapp/DealerPlugin/')) {
  745. // 开启分销插件则执行
  746. $data = model('Weapp')->getWeappList('DealerPlugin');
  747. if (!empty($data['status']) && 1 == $data['status']) {
  748. // 调用分销逻辑层方法
  749. $dealerPluginLogic = new \app\plugins\logic\DealerPluginLogic($this->users);
  750. $dealerPluginLogic->dealerAction('', '', 'openSource');
  751. } else {
  752. $this->error('请先启用分销插件!');
  753. }
  754. } else {
  755. $this->error('请先安装分销插件!');
  756. }
  757. }
  758. $this->error('请求错误!');
  759. }
  760. //获取我的足迹列表
  761. public function get_footprint_list()
  762. {
  763. if (IS_AJAX) {
  764. $param = input('param.');
  765. $list = model('v1.User')->GetMyFootprintList($param);
  766. return $this->renderSuccess(compact('list'));
  767. }
  768. $this->error('请求错误!');
  769. }
  770. /**
  771. * 添加转发记录
  772. */
  773. public function set_forward()
  774. {
  775. if (IS_AJAX) {
  776. $users_id = $this->users_id;
  777. $aid = input('param.aid/d');
  778. if (empty($aid)){
  779. $this->error('缺少文档ID!');
  780. }
  781. //查询标题模型缩略图信息
  782. $arc = Db::name('archives')
  783. ->field('aid,channel,typeid,title,litpic')
  784. ->find($aid);
  785. if (!empty($arc)) {
  786. $arc['users_id'] = $users_id;
  787. $arc['lang'] = $this->home_lang;
  788. $arc['add_time'] = getTime();
  789. $arc['update_time'] = getTime();
  790. Db::name('users_forward')->insert($arc);
  791. $this->success('保存成功');
  792. }
  793. }
  794. $this->error('请求错误!');
  795. }
  796. /**
  797. * 留言栏目
  798. */
  799. public function guestbook($typeid = '')
  800. {
  801. $param = input('param.');
  802. if (IS_POST && !isset($param['apiGuestbookform'])) {
  803. $post = input('post.');
  804. $typeid = !empty($post['typeid']) ? intval($post['typeid']) : $typeid;
  805. if (empty($typeid)) {
  806. $this->error('post接口缺少typeid的参数与值!');
  807. }
  808. /*留言间隔限制*/
  809. $channel_guestbook_interval = tpSetting('channel_guestbook.channel_guestbook_interval');
  810. $channel_guestbook_interval = is_numeric($channel_guestbook_interval) ? intval($channel_guestbook_interval) : 60;
  811. if (0 < $channel_guestbook_interval) {
  812. $map = array(
  813. 'ip' => clientIP(),
  814. 'typeid' => $typeid,
  815. 'add_time' => array('gt', getTime() - $channel_guestbook_interval),
  816. );
  817. $count = Db::name('guestbook')->where($map)->count('aid');
  818. if (!empty($count)) {
  819. $this->error("同一个IP在{$channel_guestbook_interval}秒之内不能重复提交!");
  820. }
  821. }
  822. /*end*/
  823. // 提取表单令牌的token变量名
  824. $token = '__token__';
  825. foreach ($post as $key => $val) {
  826. if (preg_match('/^__token__/i', $key)) {
  827. $token = $key;
  828. continue;
  829. }
  830. }
  831. //判断必填项
  832. foreach ($post as $key => $value) {
  833. if (stripos($key, "attr_") !== false) {
  834. //处理得到自定义属性id
  835. $attr_id = substr($key, 5);
  836. $attr_id = intval($attr_id);
  837. $ga_data = Db::name('guestbook_attribute')->where([
  838. 'attr_id' => $attr_id,
  839. ])->find();
  840. if ($ga_data['required'] == 1 && empty($value)) {
  841. $this->error($ga_data['attr_name'] . '不能为空!');
  842. }
  843. if ($ga_data['validate_type'] == 6 && !empty($value)) {
  844. $pattern = "/^1\d{10}$/";
  845. if (!preg_match($pattern, $value)) {
  846. $this->error($ga_data['attr_name'] . '格式不正确!');
  847. }
  848. } elseif ($ga_data['validate_type'] == 7 && !empty($value)) {
  849. $pattern = "/^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,})$/i";
  850. if (preg_match($pattern, $value) == false) {
  851. $this->error($ga_data['attr_name'] . '格式不正确!');
  852. }
  853. }
  854. }
  855. }
  856. $newData = array(
  857. 'typeid' => $typeid,
  858. 'users_id' => $this->users_id,
  859. 'channel' => 8,
  860. 'ip' => clientIP(),
  861. 'lang' => get_main_lang(),
  862. 'add_time' => getTime(),
  863. 'update_time' => getTime(),
  864. );
  865. $data = array_merge($post, $newData);
  866. /*表单令牌*/
  867. $token_value = !empty($data[$token]) ? $data[$token] : '';
  868. $session_path = \think\Config::get('session.path');
  869. $session_file = ROOT_PATH . $session_path . "/sess_".str_replace('__token__', '', $token);
  870. $filesize = @filesize($session_file);
  871. if(file_exists($session_file) && !empty($filesize)) {
  872. $fp = fopen($session_file, 'r');
  873. $token_v = fread($fp, $filesize);
  874. fclose($fp);
  875. if ($token_v != $token_value) {
  876. $this->error('表单令牌无效!');
  877. }
  878. } else {
  879. $this->error('表单令牌无效!');
  880. }
  881. /*end*/
  882. $guestbookRow = [];
  883. /*处理是否重复表单数据的提交*/
  884. $formdata = $data;
  885. foreach ($formdata as $key => $val) {
  886. if (in_array($key, ['typeid', 'lang']) || preg_match('/^attr_(\d+)$/i', $key)) {
  887. continue;
  888. }
  889. unset($formdata[$key]);
  890. }
  891. $md5data = md5(serialize($formdata));
  892. $data['md5data'] = $md5data;
  893. $guestbookRow = M('guestbook')->field('aid')->where(['md5data' => $md5data])->find();
  894. /*--end*/
  895. $aid = !empty($guestbookRow['aid']) ? $guestbookRow['aid'] : 0;
  896. if (empty($guestbookRow)) { // 非重复表单的才能写入数据库
  897. $aid = M('guestbook')->insertGetId($data);
  898. if ($aid > 0) {
  899. $res = model('v1.Api')->saveGuestbookAttr($post, $aid, $typeid);
  900. if ($res){
  901. $this->error($res);
  902. }
  903. }
  904. } else {
  905. // 存在重复数据的表单,将在后台显示在最前面
  906. Db::name('guestbook')->where('aid', $aid)->update([
  907. 'add_time' => getTime(),
  908. 'update_time' => getTime(),
  909. ]);
  910. }
  911. @unlink($session_file);
  912. $this->renderSuccess(['aid'=>$aid], '提交成功');
  913. }
  914. $this->error('请求错误!');
  915. }
  916. //点赞
  917. public function ask_like(){
  918. model('v1.Ask')->askLike($this->users);
  919. }
  920. //提交问题
  921. public function add_ask(){
  922. model('v1.Ask')->addAsk($this->users);
  923. }
  924. //提交回答
  925. public function add_answer(){
  926. model('v1.Ask')->addAnswer($this->users);
  927. }
  928. //视频订单列表
  929. public function media_order_list()
  930. {
  931. if (IS_AJAX) {
  932. $list = model('v1.Order')->mediaOrderList();
  933. return $this->renderSuccess(compact('list'));
  934. }
  935. $this->error('请求错误!');
  936. }
  937. //播放记录列表
  938. public function media_play_list()
  939. {
  940. if (IS_AJAX) {
  941. $list = model('v1.Order')->playList();
  942. return $this->renderSuccess(compact('list'));
  943. }
  944. $this->error('请求错误!');
  945. }
  946. //视频订单详情
  947. public function media_order_detial()
  948. {
  949. if (IS_AJAX) {
  950. $list = model('v1.Order')->mediaOrderDetails();
  951. return $this->renderSuccess(compact('list'));
  952. }
  953. $this->error('请求错误!');
  954. }
  955. // 处理会员升级方法(集合方法)
  956. public function HandleUserLevelAction()
  957. {
  958. if (IS_AJAX) {
  959. // 传入参数
  960. $param = input('param.');
  961. // 处理传入的参数
  962. $param['users_id'] = intval($this->users_id);
  963. $param['type_id'] = !empty($param['type_id']) ? intval($param['type_id']) : 0;
  964. $v1ShopModel = model('v1.Shop');
  965. // 判断执行操作
  966. $action = !empty($param['action']) ? strval($param['action']) : '';
  967. if ('upgrade_level' == $action) {
  968. // 会员升级
  969. $v1ShopModel->upgradeUserLevel($param);
  970. } else if ('upgrade_level_pay' == $action) {
  971. //会员升级后续处理
  972. $v1ShopModel->handleUpgradeUserLevel($param);
  973. }
  974. }
  975. }
  976. // 处理视频购买方法(集合方法)
  977. public function HandleBuyMediaAction()
  978. {
  979. if (IS_AJAX) {
  980. // 传入参数
  981. $param = input('param.');
  982. // 处理传入的参数
  983. $param['users_id'] = intval($this->users_id);
  984. $param['aid'] = !empty($param['aid']) ? intval($param['aid']) : 0;
  985. $v1ShopModel = model('v1.Shop');
  986. // 判断执行操作
  987. $action = !empty($param['action']) ? strval($param['action']) : '';
  988. if ('media' == $action) {
  989. // 会员升级
  990. $v1ShopModel->buyMedia($param);
  991. } else if ('media_pay' == $action) {
  992. //会员升级后续处理
  993. $v1ShopModel->handleBuyMedia($param);
  994. }
  995. }
  996. }
  997. public function verify_action()
  998. {
  999. if (IS_AJAX) {
  1000. // 是否安装核销插件
  1001. $weappInfo = model('ShopPublicHandle')->getWeappVerifyInfo();
  1002. if (!empty($weappInfo) && 1 === intval($weappInfo['status'])) {
  1003. // 调用分销逻辑层方法
  1004. $verifyLogic = new \app\plugins\logic\VerifyLogic($this->users);
  1005. $verifyLogic->verifyAction($weappInfo);
  1006. }
  1007. }
  1008. $this->error('请求错误!');
  1009. }
  1010. /**
  1011. * 注销账号(目前仅App端使用,使用手机号注销)
  1012. */
  1013. public function log_off()
  1014. {
  1015. $res = Db::name('users')->where('users_id',$this->users_id)->update(['is_del'=>1,'update_time'=>getTime()]);
  1016. if ($res !== false){
  1017. $this->success('注销成功!');
  1018. }
  1019. $this->error('注销失败!');
  1020. }
  1021. /**
  1022. * 秒杀插件 立即购买
  1023. */
  1024. public function seckill_shop_buy_now()
  1025. {
  1026. //检测是否安装秒杀插件
  1027. if (is_dir('./weapp/Seckill/')) {
  1028. $SeckillRow = model('Weapp')->getWeappList('Seckill');
  1029. if (!empty($SeckillRow) && 1 != intval($SeckillRow['status'])) {
  1030. $this->error('请先安装并启用秒杀抢购插件!');
  1031. }
  1032. } else {
  1033. $this->error('请先安装并启用秒杀抢购插件!');
  1034. }
  1035. if (IS_AJAX_POST) {
  1036. $post = input('post.');
  1037. // 数量判断
  1038. if (empty($post['product_num']) || 0 > $post['product_num']) $this->error('请输入数量');
  1039. // 默认会员ID
  1040. $post['users_id'] = $this->users_id;
  1041. // 商城模型
  1042. $WeappSeckillModel = model('v1.WeappSeckill');
  1043. // 商品是否已售罄
  1044. $WeappSeckillModel->IsSaledOut($post);
  1045. //限购
  1046. $WeappSeckillModel->LimitBuy($post,$this->users);
  1047. // 立即购买
  1048. $WeappSeckillModel->ShopBuyNow($post);
  1049. }
  1050. }
  1051. /**
  1052. * 秒杀插件 产品购买
  1053. */
  1054. public function seckill_shop_product_buy()
  1055. {
  1056. //检测是否安装秒杀插件
  1057. if (is_dir('./weapp/Seckill/')) {
  1058. $SeckillRow = model('Weapp')->getWeappList('Seckill');
  1059. if (!empty($SeckillRow) && 1 != intval($SeckillRow['status'])) {
  1060. $this->error('请先安装并启用秒杀抢购插件!');
  1061. }
  1062. } else {
  1063. $this->error('请先安装并启用秒杀抢购插件!');
  1064. }
  1065. if (IS_AJAX_POST) {
  1066. // 获取解析数据
  1067. $querystr = input('param.querystr/s');
  1068. if (empty($querystr)) $this->error('无效链接!');
  1069. // 商城模型
  1070. $ShopModel = model('v1.WeappSeckill');
  1071. // 获取商品信息进行展示
  1072. $ShopModel->GetProductData($querystr,$this->users);
  1073. }
  1074. }
  1075. /**
  1076. * 秒杀插件 订单结算
  1077. */
  1078. public function seckill_shop_order_pay()
  1079. {
  1080. //检测是否安装秒杀插件
  1081. if (is_dir('./weapp/Seckill/')) {
  1082. $SeckillRow = model('Weapp')->getWeappList('Seckill');
  1083. if (!empty($SeckillRow) && 1 != intval($SeckillRow['status'])) {
  1084. $this->error('请先安装并启用秒杀抢购插件!');
  1085. }
  1086. } else {
  1087. $this->error('请先安装并启用秒杀抢购插件!');
  1088. }
  1089. if (IS_AJAX_POST) {
  1090. $post = input('post.');
  1091. $post['action'] = !empty($post['action']) ? $post['action'] : 'CreatePay';
  1092. // 默认会员ID
  1093. $post['users_id'] = $this->users_id;
  1094. $post['openid'] = Db::name('wx_users')->where('users_id', $this->users_id)->getField('openid');
  1095. // 商城模型
  1096. $ShopModel = model('v1.WeappSeckill');
  1097. // 操作分发
  1098. if ('DirectPay' == $post['action']) {
  1099. // 订单直接支付
  1100. $ShopModel->OrderDirectPay($post);
  1101. } else if ('CreatePay' == $post['action']) {
  1102. // 获取解析数据
  1103. if (empty($post['querystr'])) $this->error('无效链接!');
  1104. // 获取商品信息生成订单并支付
  1105. $ShopModel->ShopOrderPay($post, $this->users);
  1106. }
  1107. }
  1108. }
  1109. }