截流自动化的商城平台
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

FootPrintLogic.php 2.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <?php
  2. namespace app\api\logic;
  3. use app\common\basics\Logic;
  4. use app\common\model\FootprintRecord;
  5. use app\common\server\ConfigServer;
  6. use app\common\server\UrlServer;
  7. class FootPrintLogic extends Logic
  8. {
  9. public static function lists()
  10. {
  11. try {
  12. $config = ConfigServer::get('footprint', 0);
  13. if (empty($config['footprint_status']) or $config['footprint_status'] === 0) {
  14. return ['time' => time(), 'lists' => []];
  15. }
  16. $where = [];
  17. if ($config['footprint_duration'] and $config['footprint_duration'] > 0) {
  18. $duration = ($config['footprint_duration'] * 60);
  19. $time = time() - $duration; //获取多少分钟前
  20. $where = [
  21. ['create_time', '>=', $time]
  22. ];
  23. }
  24. $model = new FootprintRecord();
  25. $lists = $model->field(true)->where($where)
  26. ->with(['user' => function ($query) {
  27. $query->withAttr('nickname', function ($value) {
  28. if (mb_strlen($value) > 4) {
  29. return mb_substr($value, 0, 4) . '**';
  30. }
  31. return $value;
  32. });
  33. }])->order('id', 'desc')
  34. ->limit(50)
  35. ->append(['time'])->select();
  36. foreach ($lists as &$item) {
  37. $item['template'] = self::getTemplate($item);
  38. $item['user']['avatar'] = UrlServer::getFileUrl($item['user']['avatar']);
  39. unset($item['user_id']);
  40. unset($item['foreign_id']);
  41. }
  42. return ['time' => time(), 'lists' => $lists];
  43. } catch (\Exception $e) {
  44. self::$error = $e->getMessage();
  45. return [];
  46. }
  47. }
  48. // 获取模板
  49. private static function getTemplate($data)
  50. {
  51. $nickname = $data['user']['nickname'].' ';
  52. $time = $data['time'];
  53. return $nickname.$time.$data['template'];
  54. }
  55. }