Report.php 4.5 KB

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