Comment.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?php
  2. namespace Act\Lib;
  3. use Dever;
  4. class Comment
  5. {
  6. private function table($type) {
  7. if ($type == 3) {
  8. $table = 'act/live_comment';
  9. } else {
  10. $table = 'act/comment';
  11. }
  12. return $table;
  13. }
  14. # 获取评论列表
  15. public function get($id, $type)
  16. {
  17. $where['type'] = $type;
  18. $where['data_id'] = $id;
  19. $table = $this->table($type);
  20. $data = Dever::db($table)->getAll($where);
  21. if ($data) {
  22. foreach ($data as $k => $v) {
  23. $user = Dever::load('passport/api')->info($v['uid']);
  24. $data[$k]['username'] = $user['username'];
  25. $data[$k]['avatar'] = $user['avatar'];
  26. }
  27. }
  28. return $data;
  29. }
  30. # 获取当前用户的评论列表
  31. public function getList($uid)
  32. {
  33. $where['uid'] = $uid;
  34. $info = Dever::db('act/like')->getAll($where);
  35. return $info;
  36. }
  37. # 发表评论
  38. public function submit($uid, $id, $type, $content)
  39. {
  40. $where['uid'] = $uid;
  41. $where['data_id'] = $id;
  42. $where['type'] = $type;
  43. $where['content'] = $content;
  44. $table = $this->table($type);
  45. $info = Dever::db($table)->one($where);
  46. if (!$info) {
  47. Dever::db($table)->insert($where);
  48. }
  49. # 更新评论数
  50. $where = array();
  51. $where['data_id'] = $id;
  52. $where['type'] = $type;
  53. $where['state'] = 1;
  54. $total = Dever::db($table)->total($where);
  55. $table = Dever::config('base')->type_table[$type];
  56. Dever::db($table)->update(array('where_id' => $id, 'num_comment' => $total));
  57. return true;
  58. }
  59. }