NewsService.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <?php
  2. namespace app\data\service;
  3. use think\admin\Service;
  4. /**
  5. * 文章数据服务
  6. * Class NewsService
  7. * @package app\data\service
  8. */
  9. class NewsService extends Service
  10. {
  11. /**
  12. * 同步文章数据统计
  13. * @param string $code 文章编号
  14. * @param array $total 查询统计
  15. * @throws \think\db\exception\DbException
  16. */
  17. public function syncNewsTotal(string $code, $total = []): void
  18. {
  19. $query = $this->app->db->name('DataNewsXCollect')->field('type,count(1) count');
  20. foreach ($query->where(['code' => $code, 'status' => 2])->group('type')->cursor() as $item) {
  21. $total[$item['type']] = $item['count'];
  22. }
  23. $this->app->db->name('DataNewsItem')->where(['code' => $code])->update([
  24. 'num_like' => $total[1] ?? 0, 'num_collect' => $total[2] ?? 0, 'num_comment' => $total[4] ?? 0,
  25. ]);
  26. }
  27. /**
  28. * 根据code绑定列表数据
  29. * @param array $list 数据列表
  30. * @return array
  31. */
  32. public function buildListByUidAndCode(array &$list = []): array
  33. {
  34. if (count($list) > 0) {
  35. /*! 绑定文章内容 */
  36. $codes = array_unique(array_column($list, 'code'));
  37. $colls = 'id,code,name,cover,mark,status,deleted,create_at,num_like,num_read,num_comment,num_collect';
  38. $items = $this->app->db->name('DataNewsItem')->whereIn('code', $codes)->column($colls, 'code');
  39. $marks = $this->app->db->name('DataNewsMark')->where(['status' => 1])->column('name');
  40. foreach ($items as &$vo) $vo['mark'] = str2arr($vo['mark'] ?: '', ',', $marks);
  41. foreach ($list as &$vo) $vo['record'] = $items[$vo['code']] ?? [];
  42. /*! 绑定用户数据 */
  43. $colls = 'id,phone,nickname,username,headimg,status';
  44. UserService::instance()->buildByUid($list, 'uid', 'user', $colls);
  45. }
  46. return $list;
  47. }
  48. /**
  49. * 获取列表状态
  50. * @param array $list 数据列表
  51. * @param integer $uid 用户UID
  52. * @return array
  53. */
  54. public function buildListState(array &$list, int $uid = 0): array
  55. {
  56. if (count($list) > 0) {
  57. [$code2, $code1, $marks] = [[], [], []];
  58. if ($uid > 0) {
  59. $map = [['uid', '=', $uid], ['code', 'in', array_unique(array_column($list, 'code'))]];
  60. $marks = $this->app->db->name('DataNewsMark')->where(['status' => 1])->column('name');
  61. $code1 = $this->app->db->name('DataNewsXCollect')->where($map)->where(['type' => 1])->column('code');
  62. $code2 = $this->app->db->name('DataNewsXCollect')->where($map)->where(['type' => 2])->column('code');
  63. }
  64. foreach ($list as &$vo) {
  65. $vo['mark'] = str2arr($vo['mark'] ?: '', ',', $marks);
  66. $vo['my_like_state'] = in_array($vo['code'], $code2) ? 1 : 0;
  67. $vo['my_coll_state'] = in_array($vo['code'], $code1) ? 1 : 0;
  68. }
  69. }
  70. return $list;
  71. }
  72. }