Topicdongtaianswer.php 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. <?php
  2. namespace app\admin\controller;
  3. use app\common\controller\Backend;
  4. use think\Db;
  5. /**
  6. * 动态评论管理
  7. *
  8. * @icon fa fa-circle-o
  9. */
  10. class Topicdongtaianswer extends Backend
  11. {
  12. protected $noNeedRight = ['delete_answer'];
  13. /**
  14. * Topicdongtaianswer模型对象
  15. * @var \app\admin\model\Topicdongtaianswer
  16. */
  17. protected $model = null;
  18. public function _initialize()
  19. {
  20. parent::_initialize();
  21. $this->model = new \app\admin\model\Topicdongtaianswer;
  22. $this->view->assign("levelList", $this->model->getLevelList());
  23. }
  24. public function import()
  25. {
  26. parent::import();
  27. }
  28. /**
  29. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  30. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  31. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  32. */
  33. /**
  34. * 查看
  35. */
  36. public function index()
  37. {
  38. //当前是否为关联查询
  39. $this->relationSearch = true;
  40. //设置过滤方法
  41. $this->request->filter(['strip_tags', 'trim']);
  42. if ($this->request->isAjax()) {
  43. //如果发送的来源是Selectpage,则转发到Selectpage
  44. if ($this->request->request('keyField')) {
  45. return $this->selectpage();
  46. }
  47. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  48. $list = $this->model
  49. ->with(['user'])
  50. ->where($where)
  51. ->order($sort, $order)
  52. ->paginate($limit);
  53. foreach ($list as $row) {
  54. $row->getRelation('user')->visible(['username']);
  55. }
  56. $result = array("total" => $list->total(), "rows" => $list->items());
  57. return json($result);
  58. }
  59. return $this->view->fetch();
  60. }
  61. /**
  62. * 删除
  63. */
  64. public function del($ids = "")
  65. {
  66. if (!$this->request->isPost()) {
  67. $this->error(__("Invalid parameters"));
  68. }
  69. $ids = $ids ? $ids : $this->request->post("ids");
  70. if ($ids) {
  71. $pk = $this->model->getPk();
  72. $adminIds = $this->getDataLimitAdminIds();
  73. if (is_array($adminIds)) {
  74. $this->model->where($this->dataLimitField, 'in', $adminIds);
  75. }
  76. $list = $this->model->where($pk, 'in', $ids)->select();
  77. $count = 0;
  78. Db::startTrans();
  79. try {
  80. foreach ($list as $k => $v) {
  81. $count ++;
  82. $this->delete_answer($v['id']);
  83. }
  84. Db::commit();
  85. } catch (PDOException $e) {
  86. Db::rollback();
  87. $this->error($e->getMessage());
  88. } catch (Exception $e) {
  89. Db::rollback();
  90. $this->error($e->getMessage());
  91. }
  92. if ($count) {
  93. $this->success();
  94. } else {
  95. $this->error(__('No rows were deleted'));
  96. }
  97. }
  98. $this->error(__('Parameter %s can not be empty', 'ids'));
  99. }
  100. /**
  101. * 删除
  102. */
  103. private function delete_answer($id){
  104. $info = Db::name('topic_dongtai_answer')->where('id',$id)->find();
  105. if(!$info){
  106. return true;
  107. }
  108. if($info['level'] == 1){
  109. //楼层内都删
  110. $louceng_id = Db::name('topic_dongtai_answer')->where('dt_id',$info['dt_id'])->where('level',2)->where('floor',$info['floor'])->column('id');
  111. if(!empty($louceng_id)){
  112. Db::name('topic_dongtai')->where('id',$info['dt_id'])->setDec('answernum',count($louceng_id));//回复数减1
  113. Db::name('topic_dongtai_answer')->where('id','IN',$louceng_id)->delete();//评论删掉
  114. Db::name('topic_answer_good')->where('answer_id','IN',$louceng_id)->delete();//评论点赞删掉
  115. }
  116. }
  117. Db::name('topic_dongtai')->where('id',$info['dt_id'])->setDec('answernum');//回复数减1
  118. Db::name('topic_dongtai_answer')->where('id',$id)->delete(); //评论删掉
  119. Db::name('topic_answer_good')->where('answer_id',$id)->delete();//评论点赞删掉
  120. }
  121. }