UserTrafficAutoWarning.php 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?php
  2. namespace App\Console\Commands;
  3. use App\Components\Helpers;
  4. use App\Mail\userTrafficWarning;
  5. use App\Models\User;
  6. use Illuminate\Console\Command;
  7. use Log;
  8. use Mail;
  9. class UserTrafficAutoWarning extends Command {
  10. protected static $systemConfig;
  11. protected $signature = 'userTrafficAutoWarning';
  12. protected $description = '用户流量超过警告阈值自动发邮件提醒';
  13. public function __construct() {
  14. parent::__construct();
  15. self::$systemConfig = Helpers::systemConfig();
  16. }
  17. public function handle(): void {
  18. $jobStartTime = microtime(true);
  19. // 用户流量超过警告阈值自动发邮件提醒
  20. if(self::$systemConfig['traffic_warning']){
  21. $this->userTrafficWarning();
  22. }
  23. $jobEndTime = microtime(true);
  24. $jobUsedTime = round(($jobEndTime - $jobStartTime), 4);
  25. Log::info('---【'.$this->description.'】完成---,耗时'.$jobUsedTime.'秒');
  26. }
  27. // 用户流量超过警告阈值自动发邮件提醒
  28. private function userTrafficWarning(): void {
  29. foreach(User::query()->activeUser()->where('transfer_enable', '>', 0)->get() as $user){
  30. // 用户名不是邮箱的跳过
  31. if(false === filter_var($user->email, FILTER_VALIDATE_EMAIL)){
  32. continue;
  33. }
  34. $usedPercent = round(($user->d + $user->u) / $user->transfer_enable, 2) * 100; // 已使用流量百分比
  35. if($usedPercent >= self::$systemConfig['traffic_warning_percent']){
  36. $title = '流量提醒';
  37. $content = '流量已使用:'.$usedPercent.'%,请保持关注。';
  38. $logId = Helpers::addNotificationLog($title, $content, 1, $user->email);
  39. Mail::to($user->email)->send(new userTrafficWarning($logId, $usedPercent));
  40. }
  41. }
  42. }
  43. }