截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CommunitySearchRecordLogic.php 2.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. <?php
  2. namespace app\api\logic;
  3. use app\common\basics\Logic;
  4. use app\common\model\community\CommunitySearchRecord;
  5. use app\common\model\community\CommunityTopic;
  6. /**
  7. * 种草社区搜索记录
  8. * Class CommunitySearchRecordLogic
  9. * @package app\api\logic
  10. */
  11. class CommunitySearchRecordLogic extends Logic
  12. {
  13. /**
  14. * @notes 搜索列表
  15. * @param $userId
  16. * @return array
  17. * @throws \think\db\exception\DataNotFoundException
  18. * @throws \think\db\exception\DbException
  19. * @throws \think\db\exception\ModelNotFoundException
  20. * @author 段誉
  21. * @date 2022/5/9 16:57
  22. */
  23. public static function lists($userId)
  24. {
  25. // 推荐话题
  26. $topic = CommunityTopic::field(['id', 'name'])
  27. ->where(['is_show' => 1, 'is_recommend' => 1, 'del' => 0])
  28. ->order(['sort' => 'desc', 'id' => 'desc'])
  29. ->limit(10)
  30. ->select()->toArray();
  31. // 用户历史搜索记录
  32. $history = [];
  33. if ($userId) {
  34. $where = [
  35. 'del' => 0,
  36. 'user_id' => $userId
  37. ];
  38. $sort = [
  39. 'update_time' => 'desc',
  40. 'id' => 'desc'
  41. ];
  42. $history = CommunitySearchRecord::where($where)
  43. ->order($sort)
  44. ->limit(10)
  45. ->column('keyword');
  46. }
  47. return [
  48. 'history' => $history,
  49. 'topic' => $topic
  50. ];
  51. }
  52. /**
  53. * @notes 清空搜索记录
  54. * @param $userId
  55. * @author 段誉
  56. * @date 2022/5/9 16:58
  57. */
  58. public static function clear($userId)
  59. {
  60. CommunitySearchRecord::where('user_id', $userId)->update([
  61. 'del' => 1,
  62. 'update_time' => time()
  63. ]);
  64. }
  65. /**
  66. * @notes 搜索记录
  67. * @param $keyword
  68. * @param $user_id
  69. * @return CommunitySearchRecord|mixed|\think\Model
  70. * @author 段誉
  71. * @date 2022/5/9 16:20
  72. */
  73. public static function recordKeyword($keyword, $user_id)
  74. {
  75. $record = CommunitySearchRecord::where([
  76. 'user_id' => $user_id,
  77. 'keyword' => $keyword,
  78. 'del' => 0
  79. ])->findOrEmpty();
  80. if ($record->isEmpty()) {
  81. return CommunitySearchRecord::create([
  82. 'user_id' => $user_id,
  83. 'keyword' => $keyword,
  84. ]);
  85. }
  86. return CommunitySearchRecord::incCount($record['id']);
  87. }
  88. }