Topicdongtai.php 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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 Topicdongtai extends Backend
  11. {
  12. /**
  13. * Topicdongtai模型对象
  14. * @var \app\admin\model\Topicdongtai
  15. */
  16. protected $model = null;
  17. public function _initialize()
  18. {
  19. parent::_initialize();
  20. $this->model = new \app\admin\model\Topicdongtai;
  21. $this->view->assign("typeList", $this->model->getTypeList());
  22. $this->view->assign("isPublicList", $this->model->getIsPublicList());
  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','topichub'])
  50. ->where($where)
  51. ->order($sort, $order)
  52. ->paginate($limit);
  53. foreach ($list as $row) {
  54. $row->getRelation('user')->visible(['username']);
  55. $row->getRelation('topichub')->visible(['name']);
  56. }
  57. $result = array("total" => $list->total(), "rows" => $list->items());
  58. return json($result);
  59. }
  60. return $this->view->fetch();
  61. }
  62. /**
  63. * 删除
  64. */
  65. public function del($ids = "")
  66. {
  67. if (!$this->request->isPost()) {
  68. $this->error(__("Invalid parameters"));
  69. }
  70. $ids = $ids ? $ids : $this->request->post("ids");
  71. if ($ids) {
  72. $pk = $this->model->getPk();
  73. $adminIds = $this->getDataLimitAdminIds();
  74. if (is_array($adminIds)) {
  75. $this->model->where($this->dataLimitField, 'in', $adminIds);
  76. }
  77. $list = $this->model->where($pk, 'in', $ids)->select();
  78. $count = 0;
  79. Db::startTrans();
  80. try {
  81. foreach ($list as $k => $v) {
  82. $count ++;
  83. $this->delete_dongtai($v['id']);
  84. }
  85. Db::commit();
  86. } catch (PDOException $e) {
  87. Db::rollback();
  88. $this->error($e->getMessage());
  89. } catch (Exception $e) {
  90. Db::rollback();
  91. $this->error($e->getMessage());
  92. }
  93. if ($count) {
  94. $this->success();
  95. } else {
  96. $this->error(__('No rows were deleted'));
  97. }
  98. }
  99. $this->error(__('Parameter %s can not be empty', 'ids'));
  100. }
  101. //动态删除
  102. public function delete_dongtai($id){
  103. $where['id'] = $id;
  104. $dongtai = Db::name('topic_dongtai')->field('id,topic_ids')->where($where)->find();
  105. if (empty($dongtai)) {
  106. return true;
  107. }
  108. $delRes = Db::name('topic_dongtai')->where('id',$id)->delete();
  109. //话题少一个贴
  110. if (!empty($dongtai['topic_ids'])) {
  111. $res = Db::name('topic_hub')->where('id','IN',$dongtai['topic_ids'])->setDec('t_number');
  112. }
  113. //删除对应的评论,
  114. Db::name('topic_dongtai_answer')->where('dt_id',$id)->delete();
  115. //点赞,
  116. Db::name('topic_dongtai_good')->where('dt_id',$id)->delete();
  117. //评论点赞
  118. Db::name('topic_answer_good')->where('dt_id',$id)->delete();
  119. }
  120. }