Bez popisu
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 4.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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\home\controller;
  14. use think\Db;
  15. class Media extends Base
  16. {
  17. // 模型标识
  18. public $nid = 'media';
  19. // 模型ID
  20. public $channeltype = '';
  21. public function _initialize() {
  22. parent::_initialize();
  23. $channeltype_list = config('global.channeltype_list');
  24. $this->channeltype = $channeltype_list[$this->nid];
  25. }
  26. public function lists($tid)
  27. {
  28. $tid_tmp = $tid;
  29. $seo_pseudo = config('ey_config.seo_pseudo');
  30. if (empty($tid)) {
  31. $map = array(
  32. 'channeltype' => $this->channeltype,
  33. 'parent_id' => 0,
  34. 'is_hidden' => 0,
  35. 'status' => 1,
  36. );
  37. } else {
  38. if (3 == $seo_pseudo) {
  39. $map = array('dirname'=>$tid);
  40. } else {
  41. if (!is_numeric($tid) || strval(intval($tid)) !== strval($tid)) {
  42. to_index();
  43. }
  44. $map = array('id'=>$tid);
  45. }
  46. }
  47. $map['lang'] = $this->home_lang; // 多语言
  48. $row = M('arctype')->field('id,dirname')->where($map)->order('sort_order asc')->limit(1)->find();
  49. $tid = !empty($row['id']) ? intval($row['id']) : 0;
  50. $dirname = !empty($row['dirname']) ? $row['dirname'] : '';
  51. /*301重定向到新的伪静态格式*/
  52. $this->jumpRewriteFormat($tid, $dirname, 'lists');
  53. /*--end*/
  54. if (3 == $seo_pseudo) {
  55. $tid = $dirname;
  56. } else {
  57. $tid = $tid_tmp;
  58. }
  59. return action('home/Lists/index', $tid);
  60. }
  61. public function view($aid)
  62. {
  63. $result = model('Media')->getInfo($aid);
  64. if (empty($result)) {
  65. to_index();
  66. } elseif ($result['arcrank'] == -1) {
  67. $this->success('待审核稿件,你没有权限阅读!');
  68. exit;
  69. }
  70. // 外部链接跳转
  71. if ($result['is_jump'] == 1) {
  72. header('Location: '.$result['jumplinks']);
  73. exit;
  74. }
  75. /*--end*/
  76. $tid = $result['typeid'];
  77. $arctypeInfo = model('Arctype')->getInfo($tid);
  78. /*301重定向到新的伪静态格式*/
  79. $this->jumpRewriteFormat($aid, $arctypeInfo['dirname'], 'view');
  80. /*--end*/
  81. return action('home/View/index', $aid);
  82. }
  83. /**
  84. * 记录视频播放进程
  85. */
  86. public function record_process()
  87. {
  88. // \think\Session::pause(); // 暂停session,防止session阻塞机制
  89. if (IS_AJAX_POST) {
  90. $aid = input('aid/d', 0);
  91. $file_id = input('file_id/d', 0);
  92. $timeDisplay = input('timeDisplay/d', 0);
  93. $users_id = session('users_id');
  94. if (empty($users_id)){
  95. return true;
  96. }
  97. if ( 0 == $timeDisplay ){
  98. exit;
  99. }
  100. $where = ['users_id' => intval($users_id),
  101. 'aid' => $aid,
  102. 'file_id' => $file_id];
  103. $count = Db::name('media_play_record')->where($where)->find();
  104. $data = [
  105. 'users_id' => intval($users_id),
  106. 'aid' => intval($aid),
  107. 'file_id' => intval($file_id),
  108. 'play_time' => $timeDisplay,
  109. 'update_time' => getTime(),
  110. ];
  111. if (!empty($count)) {
  112. $timeDisplay = $timeDisplay + $count['play_time'];
  113. $file_time = Db::name('media_file')->where('file_id',$file_id)->value('file_time');
  114. $data['play_time'] = $timeDisplay > $file_time ? $file_time : $timeDisplay;
  115. $data['play_time'] = intval($data['play_time']);
  116. //更新
  117. Db::name('media_play_record')->where($where)->update($data);
  118. }else{
  119. $data['add_time'] = getTime();
  120. Db::name('media_play_record')->insert($data);
  121. }
  122. }
  123. to_index("404");
  124. }
  125. }