VideoGroupLogic.php 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. <?php
  2. namespace app\admin\logic;
  3. use app\model\CommonModel;
  4. use app\model\VideoGroupModel;
  5. use think\Exception;
  6. use think\exception\ValidateException;
  7. use think\facade\Db;
  8. use think\response\Json;
  9. class VideoGroupLogic extends BaseLogic
  10. {
  11. //获取视频分组列表
  12. public static function list(array $data = []): Json
  13. {
  14. $db = VideoGroupModel::alias('a')
  15. ->leftJoin('company b', 'b.id=a.company_id')
  16. ->leftJoin('card c', 'c.id=a.card_id')
  17. ->where('a.is_del', CommonModel::$del_normal);
  18. if ($data['status'] != '') $db->where('a.status', $data['status']);
  19. if ($data['company_id'] != '') $db->where('a.company_id', $data['company_id']);
  20. if ($data['card_id'] != '') $db->where('a.card_id', $data['card_id']);
  21. $count = $db->count('a.id');
  22. $list = $db->field('a.id,b.title company_title,c.title card_title,a.num,a.status,a.addtime,a.is_top')
  23. ->page($data['page'], $data['size'])
  24. ->order(['a.is_top' => 'desc', 'a.id' => 'desc'])
  25. ->select()
  26. ->toArray();
  27. return json_show(CommonModel::$success, '获取视频分组列表成功', ['count' => $count, 'list' => $list]);
  28. }
  29. //添加视频分组
  30. public static function add(array $data = []): Json
  31. {
  32. Db::startTrans();
  33. try {
  34. $rs = VideoGroupModel::field('id')
  35. ->where([
  36. 'is_del' => CommonModel::$del_normal,
  37. 'company_id' => $data['company_id'],
  38. 'card_id' => $data['card_id']
  39. ])
  40. ->findOrEmpty()
  41. ->isEmpty();
  42. if (!$rs) throw new Exception('该分组已存在');
  43. $date = date('Y-m-d H:i:s');
  44. $video_group_id = Db::name('video_group')
  45. ->strict(false)
  46. ->insertGetId(array_merge($data, [
  47. 'num' => count($data['video_list']),
  48. 'is_top' => CommonModel::$top_no,
  49. 'status' => CommonModel::$status_normal,
  50. 'is_del' => CommonModel::$del_normal,
  51. 'createrid' => self::$uid,
  52. 'creater' => self::$uname,
  53. 'addtime' => $date,
  54. 'updaterid' => self::$uid,
  55. 'updater' => self::$uname,
  56. 'updatetime' => $date,
  57. ]));
  58. $da = [];
  59. foreach ($data['video_list'] as $item) {
  60. $da[] = [
  61. 'video_group_id' => $video_group_id,
  62. 'video_id' => $item['video_id'],
  63. 'is_top' => $item['is_top'],
  64. 'is_del' => CommonModel::$del_normal,
  65. 'addtime' => $date,
  66. 'updatetime' => $date,
  67. ];
  68. }
  69. Db::name('video_group_item')->insertAll($da);
  70. Db::commit();
  71. return json_show(CommonModel::$success, '添加视频分组成功');
  72. } catch (Exception $exception) {
  73. Db::rollback();
  74. return json_show(CommonModel::$error_param, '添加视频分组失败,' . $exception->getMessage());
  75. }
  76. }
  77. //获取视频分组详情
  78. public static function read(int $id = 0): Json
  79. {
  80. $res = VideoGroupModel::field(true)
  81. ->where(['id' => $id, 'is_del' => CommonModel::$del_normal])
  82. ->findOrEmpty()
  83. ->toArray();
  84. if (empty($res)) throw new ValidateException('该视频分组为空');
  85. $res['child'] = Db::name('video_group_item')
  86. ->field(true)
  87. ->where(['is_del' => CommonModel::$del_normal, 'video_group_id' => $id])
  88. ->order(['is_top' => 'desc', 'id' => 'desc'])
  89. ->select()
  90. ->toArray();
  91. return json_show(CommonModel::$success, '获取视频分组详情成功', $res);
  92. }
  93. //编辑视频分组
  94. public static function edit(array $data = []): Json
  95. {
  96. Db::startTrans();
  97. try {
  98. $rs = VideoGroupModel::field('id,company_id,card_id')
  99. ->where([
  100. 'is_del' => CommonModel::$del_normal,
  101. 'id' => $data['id']
  102. ])
  103. ->findOrEmpty();
  104. if ($rs->isEmpty()) throw new Exception('该视频分组不存在');
  105. if (($rs->company_id != $data['company_id']) || ($rs->card_id != $data['card_id'])) {
  106. $temp = VideoGroupModel::field('id')
  107. ->where([
  108. 'is_del' => CommonModel::$del_normal,
  109. 'company_id' => $data['company_id'],
  110. 'card_id' => $data['card_id']
  111. ])
  112. ->findOrEmpty()
  113. ->isEmpty();
  114. if (!$temp) throw new Exception('该分组已存在');
  115. }
  116. $date = date('Y-m-d H:i:s');
  117. VideoGroupModel::where(['id' => $data['id'], 'is_del' => CommonModel::$del_normal])
  118. ->strict(false)
  119. ->save(array_merge($data, ['updatetime' => $date]));
  120. $del = $ins = [];
  121. foreach ($data['video_list'] as $item) {
  122. if (isset($item['id']) && $item['id'] != 0) {
  123. if ($item['is_del'] == CommonModel::$del_deleted) $del[] = $item['id'];
  124. else Db::name('video_group_item')->where('is_del', CommonModel::$del_normal)->where('id', $item['id'])->save(array_merge($item, ['updatetime' => $date]));
  125. } else $ins[] = [
  126. 'video_group_id' => $data['id'],
  127. 'video_id' => $item['video_id'],
  128. 'is_top' => $item['is_top'],
  129. 'is_del' => CommonModel::$del_normal,
  130. 'addtime' => $date,
  131. 'updatetime' => $date,
  132. ];
  133. }
  134. if ($del) Db::name('video_group_item')
  135. ->whereIn('id', $del)
  136. ->where('is_del', CommonModel::$del_normal)
  137. ->update([
  138. 'is_del' => CommonModel::$del_deleted,
  139. 'updatetime' => $date,
  140. ]);
  141. if ($ins) Db::name('video_group_item')->insertAll($ins);
  142. Db::commit();
  143. return json_show(CommonModel::$success, '编辑视频分组成功');
  144. } catch (Exception $exception) {
  145. Db::rollback();
  146. return json_show(CommonModel::$error_param, '编辑视频分组失败,' . $exception->getMessage());
  147. }
  148. }
  149. //视频分组启禁用
  150. public static function status(array $data = []): Json
  151. {
  152. $res = VideoGroupModel::where('id', $data['id'])
  153. ->where('status', '<>', $data['status'])
  154. ->save([
  155. 'status' => $data['status'],
  156. 'updatetime' => date('Y-m-d H:i:s'),
  157. ]);
  158. return $res ? json_show(CommonModel::$success, '操作成功') : json_show(CommonModel::$success, '操作失败');
  159. }
  160. //删除视频分组
  161. public static function delete(int $id = 0): Json
  162. {
  163. $res = VideoGroupModel::where('id', $id)
  164. ->where('is_del', CommonModel::$del_normal)
  165. ->save([
  166. 'is_del' => CommonModel::$del_deleted,
  167. 'updatetime' => date('Y-m-d H:i:s'),
  168. ]);
  169. return $res ? json_show(CommonModel::$success, '删除成功') : json_show(CommonModel::$error_param, '删除失败');
  170. }
  171. //视频分组置顶
  172. public static function top(array $data = []): Json
  173. {
  174. $res = VideoGroupModel::where('id', $data['id'])
  175. ->where('is_top', '<>', $data['is_top'])
  176. ->save([
  177. 'is_top' => $data['is_top'],
  178. 'updatetime' => date('Y-m-d H:i:s'),
  179. ]);
  180. return $res ? json_show(CommonModel::$success, '操作成功') : json_show(CommonModel::$success, '操作失败');
  181. }
  182. }