123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246 |
- <?php
- namespace App\Console\Commands;
- use App\Components\Helpers;
- use App\Components\PushNotification;
- use App\Models\Config;
- use App\Models\Coupon;
- use App\Models\Invite;
- use App\Models\Node;
- use App\Models\NodeHeartBeat;
- use App\Models\Order;
- use App\Models\User;
- use App\Models\UserBanedLog;
- use App\Models\UserHourlyDataFlow;
- use App\Models\VerifyCode;
- use Cache;
- use Illuminate\Console\Command;
- use Log;
- class AutoJob extends Command
- {
- protected $signature = 'autoJob';
- protected $description = '自动化任务';
-
- public function handle(): void
- {
- $jobStartTime = microtime(true);
-
- $this->closeOrders();
-
- $this->expireCode();
-
- $this->blockSubscribe();
-
- $this->blockUsers();
-
- $this->unblockUsers();
-
- if (sysConfig('auto_release_port')) {
- $this->dispatchPort();
- }
-
- $this->checkNodeStatus();
-
- if (sysConfig('maintenance_mode')) {
- Config::whereIn('name', ['maintenance_mode', 'maintenance_time'])->update(['value' => null]);
- }
- $jobEndTime = microtime(true);
- $jobUsedTime = round(($jobEndTime - $jobStartTime), 4);
- Log::info('---【'.$this->description.'】完成---,耗时'.$jobUsedTime.'秒');
- }
-
- private function closeOrders(): void
- {
-
- foreach (Order::recentUnPay()->get() as $order) {
-
- $order->update(['status' => -1]);
- }
- }
-
- private function expireCode(): void
- {
-
- VerifyCode::recentUnused()->update(['status' => 2]);
-
- Coupon::whereStatus(0)
- ->where('end_time', '<=', time())
- ->orWhereIn('type', [1, 2])
- ->whereUsableTimes(0)
- ->update(['status' => 2]);
-
- Invite::whereStatus(0)->where('dateline', '<=', date('Y-m-d H:i:s'))->update(['status' => 2]);
- }
-
- private function blockSubscribe(): void
- {
- if (sysConfig('is_subscribe_ban')) {
- $subscribe_ban_times = sysConfig('subscribe_ban_times');
- foreach (User::activeUser()->with('subscribe')->get() as $user) {
- if (!$user->subscribe || $user->subscribe->status === 0) {
- continue;
- }
-
- $request_times = $user->subscribeLogs()
- ->where('request_time', '>=', date("Y-m-d H:i:s", strtotime("-1 days")))
- ->distinct()
- ->count('request_ip');
- if ($request_times >= $subscribe_ban_times) {
- $user->subscribe->update([
- 'status' => 0,
- 'ban_time' => strtotime("+".sysConfig('traffic_ban_time')." minutes"),
- 'ban_desc' => '存在异常,自动封禁',
- ]);
-
- $this->addUserBanLog($user->id, 0, '【完全封禁订阅】-订阅24小时内请求异常');
- }
- }
- }
- }
-
- private function addUserBanLog(int $userId, int $time, string $description): void
- {
- $log = new UserBanedLog();
- $log->user_id = $userId;
- $log->time = $time;
- $log->description = $description;
- $log->save();
- }
-
- private function blockUsers(): void
- {
-
- foreach (User::activeUser()->whereRaw("u + d >= transfer_enable")->get() as $user) {
- $user->update(['enable' => 0]);
-
- $this->addUserBanLog($user->id, 0, '【封禁代理】-流量已用完');
- }
-
- if (sysConfig('is_traffic_ban')) {
- $trafficBanValue = sysConfig('traffic_ban_value');
- $trafficBanTime = sysConfig('traffic_ban_time');
- foreach (User::activeUser()->whereBanTime(null)->get() as $user) {
-
- if ($user->is_admin) {
- continue;
- }
-
- $totalTraffic = UserHourlyDataFlow::userRecentUsed($user->id)->sum('total');
- if ($totalTraffic >= $trafficBanValue * GB) {
- $user->update([
- 'enable' => 0,
- 'ban_time' => strtotime("+".$trafficBanTime." minutes"),
- ]);
-
- $this->addUserBanLog($user->id, $trafficBanTime, '【临时封禁代理】-1小时内流量异常');
- }
- }
- }
- }
-
- private function unblockUsers(): void
- {
-
- $userList = User::whereEnable(0)->where('status', '>=', 0)->whereNotNull('ban_time')->get();
- foreach ($userList as $user) {
- if ($user->ban_time < time()) {
- $user->update(['enable' => 1, 'ban_time' => null]);
-
- $this->addUserBanLog($user->id, 0, '【自动解封】-临时封禁到期');
- }
- }
-
- $userList = User::whereEnable(0)
- ->where('status', '>=', 0)
- ->whereBanTime(null)
- ->where('expired_at', '>=', date('Y-m-d'))
- ->whereRaw("u + d < transfer_enable")
- ->get();
- foreach ($userList as $user) {
- $user->update(['enable' => 1]);
-
- $this->addUserBanLog($user->id, 0, '【自动解封】-有流量解封');
- }
- }
-
- private function dispatchPort(): void
- {
-
- foreach (User::activeUser()->wherePort(0)->get() as $user) {
- $user->update(['port' => Helpers::getPort()]);
- }
-
- User::where('port', '<>', 0)
- ->whereStatus(-1)
- ->orWhere('expired_at', '<=', date("Y-m-d", strtotime("-1 months")))
- ->update(['port' => 0]);
- }
-
- private function checkNodeStatus(): void
- {
- if (sysConfig('is_node_offline')) {
- $offlineCheckTimes = sysConfig('offline_check_times');
- $onlineNode = NodeHeartBeat::recently()->distinct()->pluck('node_id')->toArray();
- foreach (Node::whereIsRelay(0)->whereStatus(1)->get() as $node) {
-
- $nodeTTL = !in_array($node->id, $onlineNode, true);
- if ($nodeTTL && $offlineCheckTimes) {
-
- $cacheKey = 'offline_check_times'.$node->id;
- if (Cache::has($cacheKey)) {
- $times = Cache::get($cacheKey);
- } else {
-
- Cache::put($cacheKey, 1, Day);
- $times = 1;
- }
- if ($times < $offlineCheckTimes) {
- Cache::increment($cacheKey);
- PushNotification::send('节点异常警告', "节点**{$node->name}【{$node->ip}】**异常:**心跳异常,可能离线了**");
- }
- }
- }
- }
- }
- }
|