| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <?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 UserExpireWarningJob extends Command
- {
- protected $signature = 'command:userExpireWarningJob';
- protected $description = '自动发邮件提醒用户临近到期';
- protected static $config;
- public function __construct()
- {
- parent::__construct();
- $config = Config::query()->get();
- $data = [];
- foreach ($config as $vo) {
- $data[$vo->name] = $vo->value;
- }
- self::$config = $data;
- }
- public function handle()
- {
- if (self::$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 <= self::$config['expire_days']) {
- $title = '账号过期提醒';
- $content = '账号还剩【' . $lastCanUseDays . '】天即将过期';
- try {
- Mail::to($user->username)->send(new userExpireWarning(self::$config['website_name'], $lastCanUseDays));
- $this->sendEmailLog($user->id, $title, $content);
- } catch (\Exception $e) {
- $this->sendEmailLog($user->id, $title, $content, 0, $e->getMessage());
- }
- }
- }
- }
- Log::info('定时任务:' . $this->description);
- }
- /**
- * 写入邮件发送日志
- * @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();
- }
- }
|