Ei kuvausta
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.

Article.php 7.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 陈风任 <491085389@qq.com>
  11. * Date: 2019-1-25
  12. */
  13. namespace app\user\controller;
  14. use think\Db;
  15. use think\Config;
  16. use think\Cookie;
  17. use think\Request;
  18. class Article extends Base
  19. {
  20. public function _initialize()
  21. {
  22. parent::_initialize();
  23. $this->article_order_db = Db::name('article_order');
  24. }
  25. //购买
  26. public function buy()
  27. {
  28. if (IS_AJAX_POST) {
  29. // 提交的订单信息判断
  30. $post = input('post.');
  31. if (empty($post['aid'])) $this->error('操作异常,请刷新重试');
  32. // 查询是否已购买
  33. $where = [
  34. 'order_status' => 1,
  35. 'product_id' => intval($post['aid']),
  36. 'users_id' => $this->users_id
  37. ];
  38. $count = $this->article_order_db->where($where)->count();
  39. if (!empty($count)) $this->error('已购买过');
  40. // 查看是否已生成过订单
  41. $where['order_status'] = 0;
  42. $articleOrder = $this->article_order_db->where($where)->order('order_id desc')->find();
  43. // 查询文章文档内容
  44. $where = [
  45. 'is_del' => 0,
  46. 'status' => 1,
  47. 'aid' => $post['aid'],
  48. 'arcrank' => ['>', -1]
  49. ];
  50. $archives = Db::name('archives')->field('aid, title, litpic, users_price')->where($where)->find();
  51. if (empty($archives)) $this->error('操作异常,请刷新重试');
  52. $archives['users_price'] = get_discount_price($this->users['level_discount'], $archives['users_price']);
  53. // 订单生成规则
  54. $time = getTime();
  55. $orderCode = date('Y') . $time . rand(10, 100);
  56. if (!empty($articleOrder)) {
  57. // 更新订单信息
  58. $orderID = !empty($articleOrder['order_id']) ? intval($articleOrder['order_id']) : 0;
  59. $orderData = [
  60. 'order_code' => $orderCode,
  61. 'users_id' => $this->users_id,
  62. 'order_status' => 0,
  63. 'order_amount' => $archives['users_price'],
  64. 'product_id' => $archives['aid'],
  65. 'product_name' => $archives['title'],
  66. 'product_litpic' => get_default_pic($archives['litpic']),
  67. 'lang' => $this->home_lang,
  68. 'update_time' => $time
  69. ];
  70. $this->article_order_db->where('order_id', $orderID)->update($orderData);
  71. } else {
  72. // 生成订单并保存到数据库
  73. $orderData = [
  74. 'order_code' => $orderCode,
  75. 'users_id' => $this->users_id,
  76. 'order_status' => 0,
  77. 'order_amount' => $archives['users_price'],
  78. 'pay_time' => '',
  79. 'pay_name' => '',
  80. 'wechat_pay_type' => '',
  81. 'pay_details' => '',
  82. 'product_id' => $archives['aid'],
  83. 'product_name' => $archives['title'],
  84. 'product_litpic' => get_default_pic($archives['litpic']),
  85. 'lang' => $this->home_lang,
  86. 'add_time' => $time,
  87. 'update_time' => $time
  88. ];
  89. $orderID = $this->article_order_db->insertGetId($orderData);
  90. }
  91. // 保存成功
  92. if (!empty($orderID)) {
  93. // 支付结束后返回的URL
  94. $ReturnUrl = !empty($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : $post['return_url'];
  95. cookie($this->users_id . '_' . $post['aid'] . '_EyouArticleViewUrl', $ReturnUrl);
  96. // 对ID和订单号加密,拼装url路径
  97. $paydata = [
  98. 'type' => 9,
  99. 'order_id' => $orderID,
  100. 'order_code' => $orderData['order_code'],
  101. ];
  102. // 先 json_encode 后 md5 加密信息
  103. $paystr = md5(json_encode($paydata));
  104. // 清除之前的 cookie
  105. Cookie::delete($paystr);
  106. // 存入 cookie
  107. cookie($paystr, $paydata);
  108. // 跳转链接
  109. // if (isMobile()) {
  110. // $PaymentUrl = urldecode(url('user/Pay/pay_recharge_detail', ['paystr'=>$paystr]));//第一种支付
  111. // } else {
  112. // $PaymentUrl = urldecode(url('user/Article/pay_recharge_detail', ['paystr'=>$paystr]));//第二种支付,弹框支付
  113. // }
  114. $this->success('订单已生成!', urldecode(url('user/Article/pay_recharge_detail', ['paystr' => $paystr])));
  115. }
  116. } else {
  117. to_index("404");
  118. }
  119. }
  120. // 充值详情
  121. public function pay_recharge_detail()
  122. {
  123. $url = url('user/Article/index');
  124. // 接收数据读取解析
  125. $paystr = input('param.paystr/s', '');
  126. $paydata = !empty($paystr) ? cookie($paystr) : [];
  127. if (!empty($paydata['order_id']) && !empty($paydata['order_code'])) {
  128. // 订单信息
  129. $order_id = !empty($paydata['order_id']) ? intval($paydata['order_id']) : 0;
  130. $order_code = !empty($paydata['order_code']) ? $paydata['order_code'] : '';
  131. } else {
  132. $this->error('订单不存在或已变更', $url);
  133. }
  134. // 处理数据
  135. if (is_array($paydata) && (!empty($order_id) || !empty($order_code))) {
  136. $data = [];
  137. if (!empty($order_id)) {
  138. // 余额开关
  139. $pay_balance_open = getUsersConfigData('pay.pay_balance_open');
  140. if (!is_numeric($pay_balance_open) && empty($pay_balance_open)) $pay_balance_open = 1;
  141. // 查询文章支付订单
  142. if (!empty($paydata['type']) && 9 == $paydata['type']) {
  143. $where = [
  144. 'order_id' => $order_id,
  145. 'order_code' => $order_code,
  146. 'users_id' => $this->users_id,
  147. 'lang' => $this->home_lang
  148. ];
  149. $data = Db::name('article_order')->where($where)->find();
  150. if (empty($data)) $this->error('订单不存在或已变更', $url);
  151. if (in_array($data['order_status'], [1])) $this->error('订单已支付,即将跳转', $url);
  152. // 组装数据返回
  153. $data['transaction_type'] = 9; // 交易类型,9为购买文章
  154. $data['unified_id'] = $data['order_id'];
  155. $data['unified_number'] = $data['order_code'];
  156. $data['cause'] = $data['product_name'];
  157. $data['pay_balance_open'] = $pay_balance_open;
  158. $this->assign('data', $data);
  159. }
  160. }
  161. return $this->fetch('system/article_pay');
  162. }
  163. $this->error('参数错误!');
  164. }
  165. }