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

FootprintRecord.php 3.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. <?php
  2. namespace app\common\model;
  3. use app\common\basics\Models;
  4. use app\common\enum\FootprintEnum;
  5. use Exception;
  6. /**
  7. * 足迹记录模型
  8. * Class FootprintRecord
  9. * @package app\common\model
  10. */
  11. class FootprintRecord extends Models
  12. {
  13. /**
  14. * Notes: 关联用户模型
  15. * @author 张无忌(2020/12/17 11:51)
  16. */
  17. public function user()
  18. {
  19. return $this->hasOne('app\common\model\user\User', 'id', 'user_id')
  20. ->field(['id', 'nickname', 'avatar']);
  21. }
  22. /**
  23. * @Notes: 获取器-转换时间
  24. * @Author: 张无忌
  25. * @param $value
  26. * @param $data
  27. * @return string
  28. */
  29. public function getTimeAttr($value, $data)
  30. {
  31. unset($value);
  32. // 足迹记录时间
  33. $create_time = strtotime($data['create_time']);
  34. // 一小时前时间戳
  35. $an_hour_ago = strtotime("-1 hour");
  36. // 小于1小时内显示xx分钟, 否则显示多少个小时
  37. if ($create_time > $an_hour_ago) {
  38. $minute = intval((time() - $create_time) / 60);
  39. return $minute <= 1 ? '刚刚' : strval($minute).'分钟前';
  40. } else {
  41. return '1小时前';
  42. }
  43. }
  44. /**
  45. * Notes: 获取30分钟内容的足迹
  46. * @param $data
  47. * @return array|bool
  48. * @author 张无忌(2020/12/16 18:17)
  49. */
  50. public static function getFootPrintOneHourInner($data)
  51. {
  52. try {
  53. // 一小时前时间戳
  54. $an_hour_ago = strtotime("-1 hour");
  55. // 30分钟前时间戳
  56. $half_an_hour_ago = $an_hour_ago + 1800;
  57. // 当前时间戳
  58. $current_time = time();
  59. $where = [
  60. ['create_time', '>', $half_an_hour_ago],
  61. ['create_time', '<', $current_time]
  62. ];
  63. if ($data['type']) {
  64. $where[] = ['user_id', '=', (int)$data['user_id']];
  65. $where[] = ['type', '=', (int)$data['type']];
  66. }
  67. // 进入商城
  68. if ($data['type'] === FootprintEnum::ENTER_MALL) {
  69. $where[] = ['foreign_id', '=', 0];
  70. }
  71. // 如果是浏览器商品
  72. if ($data['type'] === FootprintEnum::BROWSE_GOODS) {
  73. $where[] = ['foreign_id', '=', (int)$data['foreign_id']];
  74. }
  75. $model = new self;
  76. return $model->field(true)->where($where)->find();
  77. } catch (Exception $e) {
  78. return false;
  79. }
  80. }
  81. /**
  82. * @Notes: 增加足迹
  83. * @Author: 张无忌
  84. * @param $data
  85. * @param $tpl
  86. * @return bool
  87. * @throws \think\Exception
  88. */
  89. public static function add($data, $tpl)
  90. {
  91. try {
  92. self::create([
  93. 'type' => $data['type'],
  94. 'user_id' => $data['user_id'],
  95. 'foreign_id' => empty($data['foreign_id']) ? 0 : $data['foreign_id'],
  96. 'template' => $tpl,
  97. 'create_time' => time(),
  98. ]);
  99. return true;
  100. } catch (\Exception $e) {
  101. throw new \think\Exception($e->getMessage());
  102. }
  103. }
  104. }