Ingen beskrivning
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.

Download.php 11KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287
  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-7-3
  12. */
  13. namespace app\user\controller;
  14. use think\Cookie;
  15. use think\Db;
  16. use think\Page;
  17. /**
  18. * 我的下载
  19. */
  20. class Download extends Base
  21. {
  22. public function _initialize() {
  23. parent::_initialize();
  24. $status = Db::name('channeltype')->where([
  25. 'nid' => 'download',
  26. 'is_del' => 0,
  27. ])->getField('status');
  28. if (empty($status)) {
  29. $this->error('下载模型已关闭,该功能被禁用!');
  30. }
  31. $this->download_order_db = Db::name('download_order');
  32. }
  33. public function index()
  34. {
  35. $where = [
  36. 'users_id' => $this->users_id,
  37. ];
  38. $count = Db::name('download_log')->where($where)->count('log_id');
  39. $Page = $pager = new Page($count, config('paginate.list_rows'));
  40. $list = Db::name('download_log')->where($where)->group('aid')->order('log_id desc')->limit($Page->firstRow.','.$Page->listRows)->select();
  41. $aids = [];
  42. foreach ($list as $key => $val) {
  43. array_push($aids, $val['aid']);
  44. }
  45. $where = [
  46. 'a.aid' => ['IN', $aids],
  47. 'a.lang' => $this->home_lang,
  48. ];
  49. $archivesList = DB::name('archives')
  50. ->field("b.*, a.*, a.aid as aid")
  51. ->alias('a')
  52. ->join('__ARCTYPE__ b', 'a.typeid = b.id', 'LEFT')
  53. ->where($where)
  54. ->getAllWithIndex('aid');
  55. $channeltype_row = \think\Cache::get('extra_global_channeltype');
  56. foreach ($archivesList as $key => $val) {
  57. $controller_name = $channeltype_row[$val['channel']]['ctl_name'];
  58. $val['arcurl'] = arcurl('home/'.$controller_name.'/view', $val);
  59. $val['litpic'] = handle_subdir_pic($val['litpic']);
  60. $archivesList[$key] = $val;
  61. }
  62. $this->assign('archivesList', $archivesList);
  63. $show = $Page->show();
  64. $this->assign('page', $show);
  65. $this->assign('list', $list);
  66. $this->assign('pager', $pager);
  67. $this->assign('delurl', url('user/Download/download_log_del'));
  68. return $this->fetch('users/download_index');
  69. }
  70. // 删除下载记录
  71. public function download_log_del()
  72. {
  73. if (IS_AJAX_POST) {
  74. $id_arr = input('del_id/a');
  75. $id_arr = eyIntval($id_arr);
  76. if (!empty($id_arr)) {
  77. $where = [
  78. 'log_id' => ['IN', $id_arr],
  79. 'users_id' => $this->users_id,
  80. ];
  81. $result = Db::name('download_log')->where($where)->delete(true);
  82. if (!empty($result)) $this->success('删除成功');
  83. }
  84. }
  85. $this->error('删除失败');
  86. }
  87. public function search_servername()
  88. {
  89. if (IS_AJAX_POST) {
  90. $post = input('param.');
  91. $keyword = $post['keyword'];
  92. $servernames = tpCache('download.download_select_servername');
  93. $servernames = unserialize($servernames);
  94. $search_data = $servernames;
  95. if (!empty($keyword)) {
  96. $search_data = [];
  97. if ($servernames) {
  98. foreach ($servernames as $k => $v) {
  99. if (preg_match("/$keyword/s", $v)) $search_data[] = $v;
  100. }
  101. }
  102. }
  103. $this->success("获取成功",null,$search_data);
  104. }
  105. }
  106. public function get_template()
  107. {
  108. if (IS_AJAX_POST) {
  109. //$list = Db::name('download_attr_field')->where('field_use',1)->select();
  110. $list = Db::name('download_attr_field')->select();
  111. $this->success("查询成功!", null, $list);
  112. }
  113. }
  114. //购买
  115. public function buy()
  116. {
  117. if (IS_AJAX_POST) {
  118. // 提交的订单信息判断
  119. $post = input('param.');
  120. if (empty($post['aid'])) $this->error('操作异常,请刷新重试');
  121. // 查询是否已购买
  122. $where = [
  123. 'order_status' => 1,
  124. 'product_id' => intval($post['aid']),
  125. 'users_id' => $this->users_id
  126. ];
  127. $count = $this->download_order_db->where($where)->count();
  128. if (!empty($count)) $this->error('已购买过');
  129. // 查看是否已生成过订单
  130. $where['order_status'] = 0;
  131. $order = $this->download_order_db->where($where)->order('order_id desc')->find();
  132. // 查询文档内容
  133. $where = [
  134. 'is_del' => 0,
  135. 'status' => 1,
  136. 'aid' => $post['aid'],
  137. 'arcrank' => ['>', -1]
  138. ];
  139. $list = Db::name('archives')->where($where)->find();
  140. if (empty($list)) $this->error('操作异常,请刷新重试');
  141. $list['users_price'] = get_discount_price($this->users['level_discount'], $list['users_price']);
  142. // 订单生成规则
  143. $time = getTime();
  144. $orderCode = date('Y') . $time . rand(10, 100);
  145. if (!empty($order)) {
  146. $OrderID = $order['order_id'];
  147. // 更新订单信息
  148. $OrderData = [
  149. 'order_code' => $orderCode,
  150. 'users_id' => $this->users_id,
  151. 'order_status' => 0,
  152. 'order_amount' => $list['users_price'],
  153. 'product_id' => $list['aid'],
  154. 'product_name' => $list['title'],
  155. 'product_litpic' => get_default_pic($list['litpic']),
  156. 'lang' => $this->home_lang,
  157. 'add_time' => $time,
  158. 'update_time' => $time
  159. ];
  160. $this->download_order_db->where('order_id', $OrderID)->update($OrderData);
  161. } else {
  162. // 生成订单并保存到数据库
  163. $OrderData = [
  164. 'order_code' => $orderCode,
  165. 'users_id' => $this->users_id,
  166. 'order_status' => 0,
  167. 'order_amount' => $list['users_price'],
  168. 'pay_time' => '',
  169. 'pay_name' => '',
  170. 'wechat_pay_type' => '',
  171. 'pay_details' => '',
  172. 'product_id' => $list['aid'],
  173. 'product_name' => $list['title'],
  174. 'product_litpic' => get_default_pic($list['litpic']),
  175. 'lang' => $this->home_lang,
  176. 'add_time' => $time,
  177. 'update_time' => $time
  178. ];
  179. $OrderID = $this->download_order_db->insertGetId($OrderData);
  180. }
  181. // 保存成功
  182. if (!empty($OrderID)) {
  183. // 支付结束后返回的URL
  184. $ReturnUrl = !empty($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : $post['return_url'];
  185. cookie($this->users_id . '_' . $post['aid'] . '_EyouDownloadViewUrl', $ReturnUrl);
  186. // 对ID和订单号加密,拼装url路径
  187. $paydata = [
  188. 'type' => 10,
  189. 'order_id' => $OrderID,
  190. 'order_code' => $OrderData['order_code'],
  191. ];
  192. // 先 json_encode 后 md5 加密信息
  193. $paystr = md5(json_encode($paydata));
  194. // 清除之前的 cookie
  195. Cookie::delete($paystr);
  196. // 存入 cookie
  197. cookie($paystr, $paydata);
  198. // 跳转链接
  199. // if (isMobile()) {
  200. // $PaymentUrl = urldecode(url('user/Pay/pay_recharge_detail',['paystr'=>$paystr]));//第一种支付
  201. // } else {
  202. // $PaymentUrl = urldecode(url('user/Download/pay_recharge_detail',['paystr'=>$paystr]));//第二种支付,弹框支付
  203. // }
  204. $this->success('订单已生成!', urldecode(url('user/Download/pay_recharge_detail', ['paystr' => $paystr])));
  205. }
  206. } else {
  207. to_index("404");
  208. }
  209. }
  210. // 购买
  211. public function pay_recharge_detail()
  212. {
  213. $url = url('user/Download/index');
  214. $channelData = Db::name('channeltype')->where(['nid'=>'download','status'=>1])->value('data');
  215. if (!empty($channelData)) $channelData = json_decode($channelData,true);
  216. if (empty($channelData['is_download_pay'])){
  217. $this->error('请先开启下载付费模式');
  218. }
  219. // 接收数据读取解析
  220. $paystr = input('param.paystr/s', '');
  221. $paydata = !empty($paystr) ? cookie($paystr) : [];
  222. if (!empty($paydata['order_id']) && !empty($paydata['order_code'])) {
  223. // 订单信息
  224. $order_id = !empty($paydata['order_id']) ? intval($paydata['order_id']) : 0;
  225. $order_code = !empty($paydata['order_code']) ? $paydata['order_code'] : '';
  226. } else {
  227. $this->error('订单不存在或已变更', $url);
  228. }
  229. // 处理数据
  230. if (is_array($paydata) && (!empty($order_id) || !empty($order_code))) {
  231. $data = [];
  232. if (!empty($order_id)) {
  233. /*余额开关*/
  234. $pay_balance_open = getUsersConfigData('pay.pay_balance_open');
  235. if (!is_numeric($pay_balance_open) && empty($pay_balance_open)) {
  236. $pay_balance_open = 1;
  237. }
  238. /*end*/
  239. if(!empty($paydata['type']) && 10 == $paydata['type']){
  240. //下载模型支付订单
  241. $where = [
  242. 'order_id' => $order_id,
  243. 'order_code' => $order_code,
  244. 'users_id' => $this->users_id,
  245. 'lang' => $this->home_lang
  246. ];
  247. $data = $this->download_order_db->where($where)->find();
  248. if (empty($data)) $this->error('订单不存在或已变更', $url);
  249. if (in_array($data['order_status'], [1])) $this->error('订单已支付,即将跳转!', $url);
  250. // 组装数据返回
  251. $data['transaction_type'] = 10; // 交易类型,10为购买下载模型
  252. $data['unified_id'] = $data['order_id'];
  253. $data['unified_number'] = $data['order_code'];
  254. $data['cause'] = $data['product_name'];
  255. $data['pay_balance_open'] = $pay_balance_open;
  256. $this->assign('data', $data);
  257. }
  258. }
  259. return $this->fetch('system/download_pay');
  260. }
  261. $this->error('参数错误!');
  262. }
  263. }