v2board/app/Console/Commands/SendRemindMail.php

92 lines
2.5 KiB
PHP
Raw Normal View History

2019-12-30 15:13:11 +08:00
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
use App\Models\User;
2019-12-30 16:37:47 +08:00
use App\Models\MailLog;
2020-03-18 18:12:19 +08:00
use App\Jobs\SendEmailJob;
2019-12-30 15:13:11 +08:00
class SendRemindMail extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'send:remindMail';
/**
* The console command description.
*
* @var string
*/
protected $description = '发送提醒邮件';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
$users = User::all();
foreach ($users as $user) {
2019-12-30 16:21:50 +08:00
if ($user->remind_expire) $this->remindExpire($user);
if ($user->remind_traffic) $this->remindTraffic($user);
2019-12-30 15:13:11 +08:00
}
}
2020-01-11 13:36:52 +08:00
private function remindExpire($user)
{
2019-12-30 16:57:21 +08:00
if (($user->expired_at - 86400) < time() && $user->expired_at > time()) {
2020-03-18 18:12:19 +08:00
SendEmailJob::dispatch([
2019-12-30 16:57:21 +08:00
'email' => $user->email,
'subject' => '在' . config('v2board.app_name', 'V2board') . '的服务即将到期',
2020-03-18 18:12:19 +08:00
'template_name' => 'remindExpire',
2019-12-30 16:57:21 +08:00
'template_value' => [
2019-12-30 21:05:48 +08:00
'name' => config('v2board.app_name', 'V2Board'),
'url' => config('v2board.app_url')
2019-12-30 16:57:21 +08:00
]
2019-12-30 17:54:50 +08:00
]);
2019-12-30 16:57:21 +08:00
}
2019-12-30 15:13:11 +08:00
}
2020-01-11 13:36:52 +08:00
private function remindTraffic($user)
{
2019-12-30 16:57:21 +08:00
if ($this->remindTrafficIsWarnValue(($user->u + $user->d), $user->transfer_enable)) {
2020-01-11 13:36:52 +08:00
$sendCount = MailLog::where('created_at', '>=', strtotime(date('Y-m-1')))
2020-04-05 15:29:45 +08:00
->where('template_name', 'like', '%remindTraffic%')
2020-01-11 13:36:52 +08:00
->count();
2019-12-30 16:57:21 +08:00
if ($sendCount > 0) return;
2020-03-18 18:12:19 +08:00
SendEmailJob::dispatch([
2019-12-30 16:57:21 +08:00
'email' => $user->email,
'subject' => '在' . config('v2board.app_name', 'V2board') . '的流量使用已达到80%',
2020-03-18 18:12:19 +08:00
'template_name' => 'remindTraffic',
2019-12-30 16:57:21 +08:00
'template_value' => [
2019-12-30 21:05:48 +08:00
'name' => config('v2board.app_name', 'V2Board'),
'url' => config('v2board.app_url')
2019-12-30 16:57:21 +08:00
]
2019-12-30 17:54:50 +08:00
]);
2019-12-30 16:57:21 +08:00
}
2019-12-30 16:21:50 +08:00
}
2020-01-11 13:36:52 +08:00
private function remindTrafficIsWarnValue($ud, $transfer_enable)
{
2019-12-30 16:37:47 +08:00
if ($ud <= 0) return false;
if (($ud / $transfer_enable * 100) < 80) return false;
return true;
}
2019-12-30 16:21:50 +08:00
2019-12-30 15:13:11 +08:00
}