News.php 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?php
  2. namespace app\data\controller\api;
  3. use app\data\service\NewsService;
  4. use think\admin\Controller;
  5. /**
  6. * 文章接口控制器
  7. * Class News
  8. * @package app\data\controller\api
  9. */
  10. class News extends Controller
  11. {
  12. /**
  13. * 获取文章标签列表
  14. * @throws \think\db\exception\DataNotFoundException
  15. * @throws \think\db\exception\DbException
  16. * @throws \think\db\exception\ModelNotFoundException
  17. */
  18. public function getMark()
  19. {
  20. $query = $this->_query('DataNewsMark')->like('name');
  21. $query->where(['status' => 1, 'deleted' => 0])->withoutField('sort,status,deleted');
  22. $this->success('获取文章标签列表', $query->order('sort desc,id desc')->page(false, false));
  23. }
  24. /**
  25. * 获取文章内容列表
  26. * @throws \think\db\exception\DataNotFoundException
  27. * @throws \think\db\exception\DbException
  28. * @throws \think\db\exception\ModelNotFoundException
  29. */
  30. public function getItem()
  31. {
  32. if ($code = input('code', '')) {
  33. $this->app->db->name('DataNewsItem')->where(['code' => $code])->update([
  34. 'num_read' => $this->app->db->raw('`num_read`+1'),
  35. ]);
  36. if (($uid = input('uid', 0)) > 0) {
  37. $data = ['uid' => $uid, 'code' => $code, 'type' => 3, 'status' => 2];
  38. $this->app->db->name('DataNewsXCollect')->where($data)->delete();
  39. $this->app->db->name('DataNewsXCollect')->insert($data);
  40. }
  41. }
  42. $query = $this->_query('DataNewsItem')->like('name,mark')->equal('id,code');
  43. $query->where(['deleted' => 0, 'status' => 1])->withoutField('sort,status,deleted');
  44. $result = $query->order('sort desc,id desc')->page(true, false, false, 15);
  45. NewsService::instance()->buildListState($result['list'], input('uid', 0));
  46. $this->success('获取列表成功!', $result);
  47. }
  48. /**
  49. * 获取文章评论
  50. * @throws \think\db\exception\DataNotFoundException
  51. * @throws \think\db\exception\DbException
  52. * @throws \think\db\exception\ModelNotFoundException
  53. */
  54. public function getComment()
  55. {
  56. $map = $this->_vali(['code.require' => '文章不能为空!']);
  57. $query = $this->_query('DataNewsXCollect')->where(['type' => 4, 'status' => 2]);
  58. $result = $query->where($map)->order('id desc')->page(true, false, false, 15);
  59. NewsService::instance()->buildListByUidAndCode($result['list']);
  60. $this->success('获取评论成功!', $result);
  61. }
  62. }