| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <?php
- namespace App\Console\Commands;
- use Illuminate\Console\Command;
- use App\Http\Models\Config;
- use App\Http\Models\User;
- use App\Http\Models\EmailLog;
- use App\Mail\userExpireWarning;
- use Mail;
- use Log;
- class UserExpireAutoWarning extends Command
- {
- protected $signature = 'userExpireAutoWarning';
- protected $description = '用户临近到期自动发邮件提醒';
- protected static $config;
- public function __construct()
- {
- parent::__construct();
- }
- public function handle()
- {
- $jobStartTime = microtime(true);
- $config = $this->systemConfig();
- if ($config['expire_warning']) {
- $userList = User::query()->where('transfer_enable', '>', 0)->whereIn('status', [0, 1])->where('enable', 1)->get();
- foreach ($userList as $user) {
- // 用户名不是邮箱的跳过
- if (false === filter_var($user->username, FILTER_VALIDATE_EMAIL)) {
- continue;
- }
- $lastCanUseDays = floor(round(strtotime($user->expire_time) - strtotime(date('Y-m-d H:i:s'))) / 3600 / 24);
- if ($lastCanUseDays > 0 && $lastCanUseDays <= $config['expire_days']) {
- $title = '账号过期提醒';
- $content = '账号还剩' . $lastCanUseDays . '天即将过期';
- try {
- Mail::to($user->username)->send(new userExpireWarning($config['website_name'], $lastCanUseDays));
- $this->sendEmailLog($user->id, $title, $content);
- } catch (\Exception $e) {
- $this->sendEmailLog($user->id, $title, $content, 0, $e->getMessage());
- }
- }
- }
- }
- $jobEndTime = microtime(true);
- $jobUsedTime = round(($jobEndTime - $jobStartTime) , 4);
- Log::info('执行定时任务【' . $this->description . '】,耗时' . $jobUsedTime . '秒');
- }
- /**
- * 写入邮件发送日志
- * @param int $user_id 用户ID
- * @param string $title 标题
- * @param string $content 内容
- * @param int $status 投递状态
- * @param string $error 投递失败时记录的异常信息
- */
- private function sendEmailLog($user_id, $title, $content, $status = 1, $error = '')
- {
- $emailLogObj = new EmailLog();
- $emailLogObj->user_id = $user_id;
- $emailLogObj->title = $title;
- $emailLogObj->content = $content;
- $emailLogObj->status = $status;
- $emailLogObj->error = $error;
- $emailLogObj->created_at = date('Y-m-d H:i:s');
- $emailLogObj->save();
- }
- // 系统配置
- private function systemConfig() {
- $config = Config::query()->get();
- $data = [];
- foreach ($config as $vo) {
- $data[$vo->name] = $vo->value;
- }
- return $data;
- }
- }
|