ReportController.php 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386
  1. <?php
  2. // +—————————————————————————————————————————————————————————————————————
  3. // | Created by Yunbao
  4. // +—————————————————————————————————————————————————————————————————————
  5. // | Copyright (c) 2013~2022 http://www.yunbaokj.com All rights reserved.
  6. // +—————————————————————————————————————————————————————————————————————
  7. // | Author: https://gitee.com/yunbaokeji
  8. // +—————————————————————————————————————————————————————————————————————
  9. // | Date: 2022-04-30
  10. // +—————————————————————————————————————————————————————————————————————
  11. /**
  12. * 举报
  13. */
  14. namespace app\admin\controller;
  15. use cmf\controller\AdminBaseController;
  16. use think\Db;
  17. use think\db\Query;
  18. class ReportController extends AdminbaseController {
  19. //列表
  20. public function classify(){
  21. $lists=Db::name("user_report_classify")
  22. ->where(function (Query $query) {
  23. $data = $this->request->param();
  24. $keyword=isset($data['keyword']) ? $data['keyword']: '';
  25. if (!empty($keyword)) {
  26. $query->where('title', 'like', "%$keyword%");
  27. }
  28. })
  29. ->order("orderno asc")
  30. ->paginate(20);
  31. //分页-->筛选条件参数
  32. $data = $this->request->param();
  33. $lists->appends($data);
  34. // 获取分页显示
  35. $page = $lists->render();
  36. $this->assign('lists', $lists);
  37. $this->assign('page', $page);
  38. return $this->fetch();
  39. }
  40. /*分类添加*/
  41. public function classify_add(){
  42. return $this->fetch();
  43. }
  44. /*分类添加提交*/
  45. public function classify_add_post(){
  46. if($this->request->isPost()) {
  47. $data = $this->request->param();
  48. $title=trim($data['title']);
  49. $orderno=$data['orderno'];
  50. if($title==""){
  51. $this->error("请填写分类名称");
  52. }
  53. if(!is_numeric($orderno)){
  54. $this->error("排序号请填写数字");
  55. }
  56. if($orderno<0){
  57. $this->error("排序号必须大于0");
  58. }
  59. $isexit=Db::name("user_report_classify")
  60. ->where("title='{$title}'")
  61. ->find();
  62. if($isexit){
  63. $this->error('该分类已存在');
  64. }
  65. $data['title']=$title;
  66. $data['orderno']=$orderno;
  67. $data['addtime']=time();
  68. $result=Db::name("user_report_classify")->insert($data);
  69. if($result){
  70. $this->success('添加成功','admin/Report/classify',3);
  71. }else{
  72. $this->error('添加失败');
  73. }
  74. }
  75. }
  76. //分类排序
  77. public function classify_listorders() {
  78. $ids = $this->request->param('listorders');
  79. foreach ($ids as $key => $r) {
  80. $data['orderno'] = $r;
  81. Db::name("user_report_classify")
  82. ->where(array('id' => $key))
  83. ->update($data);
  84. }
  85. $status = true;
  86. if ($status) {
  87. $this->success("排序更新成功!");
  88. } else {
  89. $this->error("排序更新失败!");
  90. }
  91. }
  92. /*分类删除*/
  93. public function classify_del(){
  94. $id = $this->request->param('id');
  95. if($id){
  96. $result=Db::name("user_report_classify")
  97. ->where("id={$id}")
  98. ->delete();
  99. if($result){
  100. $this->success('删除成功');
  101. }else{
  102. $this->error('删除失败');
  103. }
  104. }else{
  105. $this->error('数据传入失败!');
  106. }
  107. }
  108. /*分类编辑*/
  109. public function classify_edit(){
  110. $id = $this->request->param('id');
  111. if($id){
  112. $info=Db::name("user_report_classify")
  113. ->where("id={$id}")
  114. ->find();
  115. $this->assign("classify_info",$info);
  116. }else{
  117. $this->error('数据传入失败!');
  118. }
  119. return $this->fetch();
  120. }
  121. /*分类编辑提交*/
  122. public function classify_edit_post(){
  123. if($this->request->isPost()) {
  124. $data = $this->request->param();
  125. $id=$data["id"];
  126. $title=$data["title"];
  127. $orderno=$data["orderno"];
  128. if(!trim($title)){
  129. $this->error('分类标题不能为空');
  130. }
  131. if(!is_numeric($orderno)){
  132. $this->error("排序号请填写数字");
  133. }
  134. if($orderno<0){
  135. $this->error("排序号必须大于0");
  136. }
  137. $isexit=Db::name("user_report_classify")
  138. ->where("id!={$id} and title='{$title}'")
  139. ->find();
  140. if($isexit){
  141. $this->error('该分类已存在');
  142. }
  143. $data["updatetime"]=time();
  144. $result=Db::name("user_report_classify")
  145. ->update($data);
  146. if($result!==false){
  147. $this->success('修改成功');
  148. }else{
  149. $this->error('修改失败');
  150. }
  151. }
  152. }
  153. public function index(){
  154. $lists = Db::name('user_report')
  155. ->where(function (Query $query) {
  156. $data = $this->request->param();
  157. $status=isset($data['status']) ? $data['status']: '';
  158. $start_time=isset($data['start_time']) ? $data['start_time']: '';
  159. $end_time=isset($data['end_time']) ? $data['end_time']: '';
  160. if ($status!='') {
  161. $query->where('status','eq', intval($status));
  162. }
  163. if (!empty($start_time)) {
  164. $query->where('addtime', 'gt' , strtotime($start_time));
  165. }
  166. if (!empty($end_time)) {
  167. $query->where('addtime', 'lt' ,strtotime($end_time));
  168. }
  169. if (!empty($start_time) && !empty($end_time)) {
  170. $query->where('addtime', 'between' , [strtotime($start_time),strtotime($end_time)]);
  171. }
  172. $keyword=isset($data['keyword']) ? $data['keyword']: '';
  173. if (!empty($keyword)) {
  174. $query->where('uid', 'like', "%$keyword%");
  175. }
  176. })
  177. ->order("addtime DESC")
  178. ->paginate(20);
  179. $lists->each(function($v,$k){
  180. $userinfo=Db::name("user")
  181. ->field("user_nicename")
  182. ->where("id='$v[uid]'")
  183. ->find();
  184. $v['userinfo']= $userinfo;
  185. $userinfo=Db::name("user")
  186. ->field("user_nicename,user_status")
  187. ->where("id='$v[touid]'")
  188. ->find();
  189. $v['touserinfo']= $userinfo;
  190. return $v;
  191. });
  192. //分页-->筛选条件参数
  193. $data = $this->request->param();
  194. $lists->appends($data);
  195. // 获取分页显示
  196. $page = $lists->render();
  197. $this->assign('lists', $lists);
  198. $this->assign('page', $page);
  199. return $this->fetch();
  200. }
  201. //标记处理
  202. public function setstatus(){
  203. $id = $this->request->param('id');
  204. if($id){
  205. $data['status']=1;
  206. $data['uptime']=time();
  207. $result=Db::name("user_report")
  208. ->where("id='{$id}'")
  209. ->update($data);
  210. if($result){
  211. $this->success('标记成功');
  212. }else{
  213. $this->error('标记失败');
  214. }
  215. }else{
  216. $this->error('数据传入失败!');
  217. }
  218. }
  219. //拉黑用户
  220. public function ban(){
  221. $id = $this->request->param('id');
  222. if ($id) {
  223. $rst = Db::name("user")
  224. ->where(array("id"=>$id,"user_type"=>2))
  225. ->setField('user_status','0');
  226. if ($rst!==false) {
  227. $this->success("会员拉黑成功!");
  228. } else {
  229. $this->error('会员拉黑失败!');
  230. }
  231. } else {
  232. $this->error('数据传入失败!');
  233. }
  234. }
  235. //下架视频
  236. public function ban_video(){
  237. $id = $this->request->param('id');
  238. if($id){
  239. $rst = Db::name("user_video")
  240. ->where(array("uid"=>$id))
  241. ->setField('isdel','1');
  242. if ($rst!==false) {
  243. $this->success("被举报用户所有视频下架成功!");
  244. } else {
  245. $this->error('视频下架失败!');
  246. }
  247. }else {
  248. $this->error('数据传入失败!');
  249. }
  250. }
  251. //标记处理+禁用用户+下架视频
  252. public function ban_all(){
  253. $id = $this->request->param('id');
  254. if($id){
  255. $data['status']=1;
  256. $data['uptime']=time();
  257. //标记处理
  258. $result=Db::name("user_report")
  259. ->where("id='{$id}'")
  260. ->update($data);
  261. //获取该举报信息对应的用户
  262. $info=Db::name("user_report")
  263. ->where("id='{$id}'")
  264. ->find();
  265. //用户禁用
  266. Db::name("user")
  267. ->where(array("id"=>$info['touid'],"user_type"=>2))
  268. ->setField('user_status','0');
  269. //下架视频
  270. Db::name("user_video")
  271. ->where(array("uid"=>$info['touid']))
  272. ->setField('isdel','1');
  273. $this->success("操作成功!");
  274. }else {
  275. $this->error('数据传入失败!');
  276. }
  277. }
  278. /*删除举报*/
  279. public function del(){
  280. $id = $this->request->param('id');
  281. if($id){
  282. $result=Db::name("user_report")
  283. ->where("id={$id}")
  284. ->delete();
  285. if($result){
  286. $this->success('删除成功');
  287. }else{
  288. $this->error('删除失败');
  289. }
  290. }else{
  291. $this->error('数据传入失败!');
  292. }
  293. }
  294. }