설명 없음
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.

Media.php 13KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337
  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\Page;
  15. use think\Db;
  16. use think\Config;
  17. use think\Cookie;
  18. use think\Request;
  19. class Media extends Base
  20. {
  21. public function _initialize()
  22. {
  23. parent::_initialize();
  24. $this->users_db = Db::name('users');
  25. $this->media_order_db = Db::name('media_order');
  26. $this->media_play_record_db = Db::name('media_play_record');
  27. $functionLogic = new \app\common\logic\FunctionLogic;
  28. $functionLogic->validate_authorfile(1.5);
  29. }
  30. // 视频订单列表页
  31. /*
  32. public function index()
  33. {
  34. // 定义数组
  35. $list = [];
  36. $condition = [
  37. 'a.lang' => $this->home_lang, // 多语言
  38. 'a.users_id' => $this->users_id
  39. ];
  40. // 应用搜索条件
  41. $order_code = input('order_code/s');
  42. if (!empty($order_code)) $condition['a.order_code'] = ['LIKE', "%{$order_code}%"];
  43. // 订单状态搜索
  44. $order_status = input('order_status/s');
  45. $this->assign('order_status', $order_status);
  46. if (!empty($order_status)) {
  47. if (-1 == $order_status) $order_status = 0;
  48. $condition['a.order_status'] = $order_status;
  49. }
  50. // 支付类型
  51. $PayMethod = Config::get('global.pay_method_arr');
  52. // 分页
  53. $count = $this->media_order_db->alias('a')->where($condition)->count();
  54. $Page = new Page($count, config('paginate.list_rows'));
  55. $show = $Page->show();
  56. $this->assign('page', $show);
  57. // 数据查询
  58. $list = $this->media_order_db->where($condition)
  59. ->field('a.*, b.username')
  60. ->alias('a')
  61. ->join('__USERS__ b', 'a.users_id = b.users_id', 'LEFT')
  62. ->order('a.order_id desc')
  63. ->limit($Page->firstRow.','.$Page->listRows)
  64. ->select();
  65. $array_new = get_archives_data($list, 'product_id');
  66. // 订单处理
  67. foreach ($list as $key => $value) {
  68. if (!empty($value['order_status']) && 1 == $value['order_status']) {
  69. $list[$key]['OrderStatusName'] = '已完成';
  70. } else {
  71. $list[$key]['OrderStatusName'] = '待付款';
  72. // 支付结束后返回的URL
  73. $ReturnUrl = !empty($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : url('user/Media/index');
  74. cookie($this->users_id . '_' . $value['product_id'] . '_EyouMediaViewUrl', $ReturnUrl);
  75. // 付款地址处理,对ID和订单号加密,拼装url路径
  76. $Paydata = [
  77. 'type' => 8,
  78. 'order_id' => $value['order_id'],
  79. 'order_code' => $value['order_code']
  80. ];
  81. // 先 json_encode 后 md5 加密信息
  82. $Paystr = md5(json_encode($Paydata));
  83. // 清除之前的 cookie
  84. Cookie::delete($Paystr);
  85. // 存入 cookie
  86. cookie($Paystr, $Paydata);
  87. // 跳转链接
  88. $list[$key]['PaymentUrl'] = urldecode(url('user/Pay/pay_recharge_detail',['paystr'=>$Paystr]));
  89. }
  90. if (!empty($value['pay_name'])) {
  91. $list[$key]['pay_name'] = !empty($PayMethod[$value['pay_name']]) ? $PayMethod[$value['pay_name']] : '第三方支付';
  92. }
  93. $arcurl = '';
  94. $vars = !empty($array_new[$value['product_id']]) ? $array_new[$value['product_id']] : [];
  95. if (!empty($vars)) {
  96. $arcurl = urldecode(arcurl('home/Media/view', $vars));
  97. }
  98. $list[$key]['arcurl'] = $arcurl;
  99. }
  100. // 订单列表
  101. $this->assign('list', $list);
  102. // 订单数量查询
  103. $Where = [
  104. 'users_id' => $this->users_id,
  105. 'lang' => $this->home_lang,
  106. 'order_status' => 0
  107. ];
  108. $PendingPayment = $this->media_order_db->where($Where)->count();
  109. // 待付款
  110. $this->assign('PendingPayment', $PendingPayment);
  111. $Where['order_status'] = 1;
  112. $Completed = $this->media_order_db->where($Where)->count();
  113. // 已付款
  114. $this->assign('Completed', $Completed);
  115. // 搜索处理
  116. $hidden = '';
  117. $ey_config = config('ey_config'); // URL模式
  118. if (2 == $ey_config['seo_pseudo'] || (1 == $ey_config['seo_pseudo'] && 1 == $ey_config['seo_dynamic_format'])) {
  119. $hidden .= '<input type="hidden" name="m" value="user" />';
  120. $hidden .= '<input type="hidden" name="c" value="Media" />';
  121. $hidden .= '<input type="hidden" name="a" value="index" />';
  122. $lang = Request::instance()->param('lang/s');
  123. !empty($lang) && $hidden .= '<input type="hidden" name="lang" value="'.$lang.'" />';
  124. }
  125. // 搜索的URL
  126. $searchurl = url('user/Media/index');
  127. $search = array(
  128. 'action' => $searchurl,
  129. 'hidden' => $hidden,
  130. );
  131. $this->assign('search', $search);
  132. return $this->fetch('users/media_index');
  133. }
  134. */
  135. /**
  136. * 播放记录
  137. */
  138. public function play_index()
  139. {
  140. $condition['a.users_id'] = $this->users_id;
  141. $condition['b.lang'] = $this->home_lang;
  142. // $condition['b.users_price'] = ['>', 0];
  143. // 分页
  144. $count = $this->media_play_record_db
  145. ->alias('a')
  146. ->join('archives b', 'a.aid=b.aid', 'inner')
  147. ->where($condition)
  148. ->group('a.aid')->count();
  149. $Page = $pager = new Page($count, 10);
  150. $show = $Page->show();
  151. $this->assign('page', $show);
  152. $this->assign('pager', $pager);
  153. $total_field = 'select sum(file_time) as total_time from ' . PREFIX . 'media_file where aid= a.aid';
  154. // 数据查询
  155. $list = $this->media_play_record_db
  156. ->where($condition)
  157. ->alias('a')
  158. ->field("a.id as play_id,a.file_id,a.aid,sum(a.play_time) as sum_play_time,max(a.update_time) as last_update_time,c.*,b.*,({$total_field}) as total_time,(sum(a.play_time)/({$total_field})) as process")
  159. ->join('archives b', 'a.aid=b.aid', 'inner')
  160. ->join('arctype c', 'b.typeid=c.id', 'left')
  161. ->group('a.aid')
  162. ->order('process desc')
  163. ->limit($Page->firstRow . ',' . $Page->listRows)
  164. ->select();
  165. $total_time = 0;
  166. // 订单处理
  167. foreach ($list as $key => $val) {
  168. $total_time += $val['sum_play_time'];
  169. $val['process'] = (round($val['process'], 2) * 100) . "%";
  170. $val['sum_play_time'] = gmSecondFormat($val['sum_play_time'], ':');
  171. $val['sum_file_time'] = gmSecondFormat($val['total_time'], ':');
  172. $val['last_update_time'] = date('Y-m-d H:i:s', $val['last_update_time']);
  173. if (!empty($val['litpic'])) {
  174. $val['litpic'] = handle_subdir_pic($val['litpic']);
  175. } else {
  176. $val['litpic'] = get_default_pic();
  177. }
  178. $val['arcurl'] = urldecode(arcurl('home/Media/view', $val));
  179. $list[$key] = $val;
  180. }
  181. // 订单列表
  182. $eyou['field']['list'] = $list;
  183. $total_time = gmSecondFormat($total_time, ':');
  184. $eyou['field']['total_time'] = $total_time;
  185. $this->assign('eyou', $eyou);
  186. $this->assign('delurl', url('user/Media/media_play_del'));
  187. return $this->fetch('users/users_media_play_index');
  188. }
  189. public function media_play_del()
  190. {
  191. if (IS_AJAX_POST) {
  192. $id_arr = input('del_id/a');
  193. $id_arr = eyIntval($id_arr);
  194. if (!empty($id_arr)) {
  195. $where = [
  196. 'id' => ['IN', $id_arr],
  197. 'users_id' => $this->users_id,
  198. ];
  199. $result = $this->media_play_record_db->where($where)->delete(true);
  200. if (!empty($result)) $this->success('删除成功');
  201. }
  202. }
  203. $this->error('删除失败');
  204. }
  205. // 视频产品购买接口
  206. public function media_order_buy()
  207. {
  208. if (IS_AJAX_POST) {
  209. // 提交的订单信息判断
  210. $post = input('post.');
  211. if (empty($post) || empty($post['aid'])) $this->error('操作异常,请刷新重试');
  212. // 查询是否已购买
  213. $where = [
  214. 'order_status' => 1,
  215. 'product_id' => intval($post['aid']),
  216. 'users_id' => $this->users_id
  217. ];
  218. $MediaCount = Db::name('media_order')->where($where)->count();
  219. if (!empty($MediaCount)) $this->error('你已购买过,请直接观看');
  220. // 查看是否已生成过订单
  221. $where['order_status'] = 0;
  222. $mediaOrder = Db::name('media_order')->where($where)->order('order_id desc')->find();
  223. // 查询视频文档内容
  224. $where = [
  225. 'is_del' => 0,
  226. 'status' => 1,
  227. 'aid' => $post['aid'],
  228. 'arcrank' => ['>', -1]
  229. ];
  230. $list = Db::name('archives')->where($where)->find();
  231. if (empty($list)) $this->error('操作异常,请刷新重试');
  232. $list['users_price'] = get_discount_price($this->users['level_discount'], $list['users_price']);
  233. // 订单生成规则
  234. $time = getTime();
  235. $orderCode = date('Y') . $time . rand(10, 100);
  236. if (!empty($mediaOrder)) {
  237. $OrderID = $mediaOrder['order_id'];
  238. // 更新订单信息
  239. $OrderData = [
  240. 'order_code' => $orderCode,
  241. 'users_id' => $this->users_id,
  242. 'mobile' => !empty($this->users['mobile']) ? $this->users['mobile'] : '',
  243. 'order_status' => 0,
  244. 'order_amount' => $list['users_price'],
  245. 'product_id' => $list['aid'],
  246. 'product_name' => $list['title'],
  247. 'product_litpic' => get_default_pic($list['litpic']),
  248. 'lang' => $this->home_lang,
  249. 'add_time' => $time,
  250. 'update_time' => $time
  251. ];
  252. Db::name('media_order')->where('order_id', $OrderID)->update($OrderData);
  253. } else {
  254. // 生成订单并保存到数据库
  255. $OrderData = [
  256. 'order_code' => $orderCode,
  257. 'users_id' => $this->users_id,
  258. 'mobile' => !empty($this->users['mobile']) ? $this->users['mobile'] : '',
  259. 'order_status' => 0,
  260. 'order_amount' => $list['users_price'],
  261. 'pay_time' => '',
  262. 'pay_name' => '',
  263. 'wechat_pay_type' => '',
  264. 'pay_details' => '',
  265. 'product_id' => $list['aid'],
  266. 'product_name' => $list['title'],
  267. 'product_litpic' => get_default_pic($list['litpic']),
  268. 'lang' => $this->home_lang,
  269. 'add_time' => $time,
  270. 'update_time' => $time
  271. ];
  272. $OrderID = Db::name('media_order')->insertGetId($OrderData);
  273. }
  274. // 保存成功
  275. if (!empty($OrderID)) {
  276. // 支付结束后返回的URL
  277. $return_url = input('param.return_url/s', url('user/Media/index'));
  278. $ReturnUrl = !empty($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : $return_url;
  279. cookie($this->users_id . '_' . $post['aid'] . '_EyouMediaViewUrl', $ReturnUrl);
  280. // 对ID和订单号加密,拼装url路径
  281. $Paydata = [
  282. 'type' => 8,
  283. 'order_id' => $OrderID,
  284. 'order_code' => $OrderData['order_code'],
  285. ];
  286. // 先 json_encode 后 md5 加密信息
  287. $Paystr = md5(json_encode($Paydata));
  288. // 清除之前的 cookie
  289. Cookie::delete($Paystr);
  290. // 存入 cookie
  291. cookie($Paystr, $Paydata);
  292. // 跳转链接
  293. $this->success('订单已生成!', urldecode(url('user/Pay/pay_recharge_detail', ['paystr' => $Paystr])));
  294. }
  295. } else {
  296. to_index("404");
  297. }
  298. }
  299. }