v2board/app/Services/UserService.php

132 lines
4.0 KiB
PHP
Raw Normal View History

2020-02-28 01:12:55 +08:00
<?php
namespace App\Services;
2021-08-31 23:55:07 +08:00
use App\Jobs\ServerLogJob;
2022-02-20 01:06:02 +08:00
use App\Jobs\StatServerJob;
use App\Jobs\StatUserJob;
2021-08-31 23:55:07 +08:00
use App\Jobs\TrafficFetchJob;
2021-07-01 19:06:09 +08:00
use App\Models\InviteCode;
2020-04-22 16:57:00 +08:00
use App\Models\Order;
2021-09-21 18:07:53 +08:00
use App\Models\ServerV2ray;
2021-07-01 19:06:09 +08:00
use App\Models\Ticket;
2020-02-28 01:12:55 +08:00
use App\Models\User;
2021-07-01 19:06:09 +08:00
use Illuminate\Support\Facades\DB;
2020-02-28 01:12:55 +08:00
class UserService
{
2022-05-30 15:42:25 +08:00
public function getResetDay(User $user)
{
if ($user->expired_at <= time() || $user->expired_at === NULL) return null;
// if reset method is not reset
if (isset($user->plan->reset_traffic_method) && $user->plan->reset_traffic_method === 2) return null;
if ((int)config('v2board.reset_traffic_method') === 0 ||
(isset($user->plan->reset_traffic_method) && $user->plan->reset_traffic_method === 0))
{
$day = date('d', $user->expired_at);
$today = date('d');
$lastDay = date('d', strtotime('last day of +0 months'));
return $lastDay - $today;
}
if ((int)config('v2board.reset_traffic_method') === 1 ||
(isset($user->plan->reset_traffic_method) && $user->plan->reset_traffic_method === 1))
{
$day = date('d', $user->expired_at);
$today = date('d');
$lastDay = date('d', strtotime('last day of +0 months'));
if ((int)$day >= (int)$today && (int)$day >= (int)$lastDay) {
return $lastDay - $today;
}
if ((int)$day >= (int)$today) {
return $day - $today;
} else {
return $lastDay - $today + $day;
}
}
if ((int)config('v2board.reset_traffic_method') === 2 ||
(isset($user->plan->reset_traffic_method) && $user->plan->reset_traffic_method === 2))
{
$nextYear = strtotime(date("Y-01-01", strtotime('+1 year')));
return (int)(($nextYear - time()) / 86400);
}
return null;
}
2020-02-28 17:16:05 +08:00
public function isAvailable(User $user)
{
2020-03-02 20:29:17 +08:00
if (!$user->banned && $user->transfer_enable && ($user->expired_at > time() || $user->expired_at === NULL)) {
2020-02-28 17:16:05 +08:00
return true;
}
return false;
}
2020-02-28 01:12:55 +08:00
2020-02-28 17:16:05 +08:00
public function getAvailableUsers()
2020-02-28 01:12:55 +08:00
{
2020-02-28 17:16:05 +08:00
return User::whereRaw('u + d < transfer_enable')
->where(function ($query) {
$query->where('expired_at', '>=', time())
2020-03-01 23:29:49 +08:00
->orWhere('expired_at', NULL);
2020-02-28 17:16:05 +08:00
})
2020-03-02 20:29:17 +08:00
->where('banned', 0)
2020-02-28 17:16:05 +08:00
->get();
2020-02-28 01:12:55 +08:00
}
2020-02-28 17:16:05 +08:00
public function getUnAvailbaleUsers()
2020-02-28 01:12:55 +08:00
{
2020-02-28 17:16:05 +08:00
return User::where(function ($query) {
$query->where('expired_at', '<', time())
->orWhere('expired_at', 0);
})
->where(function ($query) {
$query->where('plan_id', NULL)
->orWhere('transfer_enable', 0);
})
->get();
}
public function getUsersByIds($ids)
{
return User::whereIn('id', $ids)->get();
}
public function getAllUsers()
{
return User::all();
2020-02-28 01:12:55 +08:00
}
2020-03-17 20:00:46 +08:00
public function addBalance(int $userId, int $balance):bool
{
2021-07-11 00:13:09 +08:00
$user = User::lockForUpdate()->find($userId);
2020-03-17 20:00:46 +08:00
if (!$user) {
return false;
}
$user->balance = $user->balance + $balance;
if ($user->balance < 0) {
return false;
}
if (!$user->save()) {
return false;
}
return true;
}
2020-04-22 16:57:00 +08:00
public function isNotCompleteOrderByUserId(int $userId):bool
{
$order = Order::whereIn('status', [0, 1])
->where('user_id', $userId)
->first();
if (!$order) {
return false;
}
return true;
}
2020-04-25 19:44:47 +08:00
2021-08-31 23:55:07 +08:00
public function trafficFetch(int $u, int $d, int $userId, object $server, string $protocol)
2020-04-25 19:44:47 +08:00
{
2021-08-31 23:55:07 +08:00
TrafficFetchJob::dispatch($u, $d, $userId, $server, $protocol);
2022-02-20 01:06:02 +08:00
StatServerJob::dispatch($u, $d, $server, $protocol, 'd');
StatUserJob::dispatch($u, $d, $userId, $server, $protocol, 'd');
2020-04-25 19:44:47 +08:00
}
2020-02-28 01:12:55 +08:00
}