Teachingvideo.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <?php
  2. namespace app\admin\controller\community;
  3. use app\common\controller\Backend;
  4. use think\exception\DbException;
  5. use think\response\Json;
  6. /**
  7. * 教学视频管理
  8. *
  9. * @icon fa fa-circle-o
  10. */
  11. class Teachingvideo extends Backend
  12. {
  13. /**
  14. * TeachingVideo模型对象
  15. * @var \app\common\model\TeachingVideo
  16. */
  17. protected $model = null;
  18. public function _initialize()
  19. {
  20. parent::_initialize();
  21. $this->model = new \app\common\model\TeachingVideo;
  22. $classify = config('site.goodstype');
  23. $this->view->assign('classify',$classify);
  24. }
  25. /**
  26. * 查看
  27. *
  28. * @return string|Json
  29. * @throws \think\Exception
  30. * @throws DbException
  31. */
  32. public function index()
  33. {
  34. //设置过滤方法
  35. $this->request->filter(['strip_tags', 'trim']);
  36. if (false === $this->request->isAjax()) {
  37. return $this->view->fetch();
  38. }
  39. //如果发送的来源是 Selectpage,则转发到 Selectpage
  40. if ($this->request->request('keyField')) {
  41. return $this->selectpage();
  42. }
  43. [$where, $sort, $order, $offset, $limit] = $this->buildparams();
  44. $list = $this->model
  45. ->where($where)
  46. ->order($sort, $order)
  47. ->paginate($limit);
  48. // $duration = $this->model->field('duration,into')->select();
  49. $haoshigou_time = 0;
  50. $duoxiangshi_time = 0;
  51. $menshigou_time = 0;
  52. $haishigou_time = 0;
  53. $shizhishi_time = 0;
  54. $time_for_correct_ans = $this->model->field('type,TIME_TO_SEC(duration) as total')->select();
  55. foreach ($time_for_correct_ans as $v){
  56. switch ($v['type']){
  57. case '好柿购':
  58. $haoshigou_time += $v['total'];
  59. break;
  60. case '多享柿':
  61. $duoxiangshi_time += $v['total'];
  62. break;
  63. case '门柿购':
  64. $menshigou_time += $v['total'];
  65. break;
  66. case '海柿购':
  67. $haishigou_time += $v['total'];
  68. break;
  69. case '柿知识':
  70. $shizhishi_time += $v['total'];
  71. }
  72. }
  73. $result = ['total' => $list->total(), 'rows' => $list->items(),"extend" => ['haoshigou_time' => $this->changeTimeType($haoshigou_time), 'duoxiangshi_time' => $this->changeTimeType($duoxiangshi_time), 'menshigou_time' => $this->changeTimeType($menshigou_time), 'haishigou_time' => $this->changeTimeType($haishigou_time), 'shizhishi_time' => $this->changeTimeType($shizhishi_time)]];
  74. return json($result);
  75. }
  76. /**
  77. * 计算视频总时长
  78. */
  79. public function changeTimeType($seconds){
  80. if ($seconds >3600){
  81. $hours =intval($seconds/3600);
  82. $minutes = $seconds % 3600;
  83. $time = $hours.":".gmstrftime('%M:%S',$minutes);
  84. }else{
  85. $time = gmstrftime('%H:%M:%S',$seconds);
  86. }
  87. return$time;
  88. }
  89. }