Report.php 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\model\ArticleIntro;
  4. use app\common\model\DatumIntro;
  5. use app\common\model\ReportCase;
  6. use app\common\model\User;
  7. use app\common\model\UserForum;
  8. use app\common\model\UserReport;
  9. use app\common\model\VideoComment;
  10. use app\common\model\VideoIntro;
  11. use library\tools\Data;
  12. /**
  13. * @title 举报
  14. * @controller Report
  15. * @group base
  16. */
  17. class Report extends Base
  18. {
  19. public function initialize()
  20. {
  21. parent::initialize();
  22. parent::checkLogin();
  23. }
  24. /**
  25. * @title 获取举报类目
  26. * @desc 获取举报类目(共两级)
  27. * @author qc
  28. * @url /api/Report/getReportCase
  29. * @method GET
  30. * @header name:Authorization require:1 desc:Token
  31. * @return name:id type:int default:-- desc:id
  32. * @return name:title type:string default:0 desc:名称
  33. * @return name:children type:array default:0 desc:下级分类
  34. */
  35. public function getReportCase()
  36. {
  37. $list = ReportCase::where(['is_deleted'=>0])->field('id,title,pid')->order('sort desc')->select()->toArray();
  38. $list = make_tree($list);
  39. $this->success('ok',['list'=>$list]);
  40. }
  41. /**
  42. * @title 用户举报
  43. * @desc 用户举报
  44. * @author qc
  45. * @url /api/Report/userReport
  46. * @method POST
  47. * @header name:Authorization require:1 desc:Token
  48. * @param name:type type:int default:1 desc:举报类型(1视频2视频评论3会员,4资料,5图文6论坛问题)
  49. * @param name:report_id type:int default:-- desc:举报内容的id
  50. * @param name:case_ids type:string default:-- desc:举报类目id串(逗号隔开)
  51. */
  52. public function userReport()
  53. {
  54. $type= input('post.type',1);
  55. $report_id= input('post.report_id');
  56. $case_ids= input('post.case_ids');
  57. if(!$report_id) $this->error('请现在举报内容');
  58. if(!$case_ids) $this->error('请选择举报原因');
  59. switch ($type)
  60. {
  61. case 1:
  62. $check_id = VideoIntro::where('id',$report_id)->value('id');
  63. if(!$check_id) $this->error('视频不存在');
  64. break;
  65. case 2:
  66. $check_id = VideoComment::where('id',$report_id)->value('id');
  67. if(!$check_id) $this->error('视频评论不存在');
  68. break;
  69. case 3:
  70. $check_id = User::where('id',$report_id)->value('id');
  71. if(!$check_id) $this->error('会员不存在');
  72. break;
  73. case 4:
  74. $check_id = DatumIntro::where('id',$report_id)->value('id');
  75. if(!$check_id) $this->error('资料不存在');
  76. break;
  77. case 5:
  78. $check_id = ArticleIntro::where('id',$report_id)->value('id');
  79. if(!$check_id) $this->error('图文不存在');
  80. break;
  81. case 6:
  82. $check_id = UserForum::where('id',$report_id)->value('id');
  83. if(!$check_id) $this->error('论坛问题不存在');
  84. break;
  85. }
  86. UserReport::report($this->user_id,$type,$report_id,$case_ids);
  87. $this->success('举报成功');
  88. }
  89. }