截流自动化的商城平台
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.

SearchRecordLogic.php 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?php
  2. namespace app\api\logic;
  3. use app\common\basics\Logic;
  4. use app\common\model\SearchRecord;
  5. use app\common\server\ConfigServer;
  6. use think\facade\Db;
  7. class SearchRecordLogic extends Logic
  8. {
  9. public static function lists($userId)
  10. {
  11. // 热搜关键词
  12. $hotLists= ConfigServer::get('hot_search', 'hot_keyword', []);
  13. // 用户历史搜索记录
  14. if($userId) {
  15. // 已登录
  16. $where = [
  17. 'del' => 0,
  18. 'user_id' => $userId
  19. ];
  20. $order = [
  21. 'update_time' => 'desc',
  22. 'id' => 'desc'
  23. ];
  24. $historyLists = SearchRecord::where($where)
  25. ->order($order)
  26. ->limit(10)
  27. ->column('keyword');
  28. }else{
  29. // 未登录
  30. $historyLists = [];
  31. }
  32. return [
  33. 'history_lists' => $historyLists,
  34. 'hot_lists' => $hotLists
  35. ];
  36. }
  37. /**
  38. * 清空搜索历史
  39. */
  40. public static function clear($userId)
  41. {
  42. try {
  43. $data = [
  44. 'update_time' => time(),
  45. 'del' => 1
  46. ];
  47. $result = Db::name('search_record')->where('user_id', $userId)->update($data);
  48. return true;
  49. } catch(\Exception $e) {
  50. self::$error = $e->getMessage();
  51. return false;
  52. }
  53. }
  54. }