UserSearchDao.php 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  8. // +----------------------------------------------------------------------
  9. // | Author: CRMEB Team <admin@crmeb.com>
  10. // +----------------------------------------------------------------------
  11. declare (strict_types=1);
  12. namespace app\dao\user;
  13. use app\dao\BaseDao;
  14. use app\model\user\UserSearch;
  15. /**
  16. * 用户搜索
  17. * Class UserSearchDao
  18. * @package app\dao\user
  19. */
  20. class UserSearchDao extends BaseDao
  21. {
  22. /**
  23. * 设置模型
  24. * @return string
  25. */
  26. protected function setModel(): string
  27. {
  28. return UserSearch::class;
  29. }
  30. /**
  31. * 获取列表
  32. * @param array $where
  33. * @param string $order
  34. * @param int $page
  35. * @param int $limit
  36. * @return array
  37. * @throws \think\db\exception\DataNotFoundException
  38. * @throws \think\db\exception\DbException
  39. * @throws \think\db\exception\ModelNotFoundException
  40. */
  41. public function getList(array $where = [], string $order = 'id desc', int $page = 0, int $limit = 0): array
  42. {
  43. return $this->search($where)->order($order)->when($page && $limit, function ($query) use ($page, $limit) {
  44. $query->page($page, $limit);
  45. })->select()->toArray();
  46. }
  47. /**
  48. * * 获取全局|用户某个关键词搜素结果
  49. * @param int $uid
  50. * @param string $keyword 关键词
  51. * @param int $preTime 多长时间内认为结果集有效
  52. * @return array|\think\Model
  53. * @throws \think\db\exception\DataNotFoundException
  54. * @throws \think\db\exception\DbException
  55. * @throws \think\db\exception\ModelNotFoundException
  56. */
  57. public function getKeywordResult(int $uid, string $keyword, int $preTime = 7200)
  58. {
  59. if (!$keyword) return [];
  60. $where = ['keyword' => $keyword];
  61. if ($uid) $where['uid'] = $uid;
  62. return $this->search($where)->when($uid && $preTime == 0, function ($query) {
  63. $query->where('is_del', 0);
  64. })->when($preTime > 0, function ($query) use ($preTime) {
  65. $query->where('add_time', '>', time() - $preTime);
  66. })->order('add_time desc,id desc')->find() ?? [];
  67. }
  68. }