mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-04 19:49:16 +00:00
80 lines
2.6 KiB
PHP
80 lines
2.6 KiB
PHP
<?php
|
||
|
||
namespace App\Jobs\VNet;
|
||
|
||
use App\Models\User;
|
||
use Arr;
|
||
use Exception;
|
||
use Http;
|
||
use Illuminate\Bus\Queueable;
|
||
use Illuminate\Contracts\Queue\ShouldQueue;
|
||
use Illuminate\Foundation\Bus\Dispatchable;
|
||
use Illuminate\Queue\InteractsWithQueue;
|
||
use Illuminate\Queue\SerializesModels;
|
||
use Log;
|
||
use Throwable;
|
||
|
||
class editUser implements ShouldQueue
|
||
{
|
||
use Dispatchable;
|
||
use InteractsWithQueue;
|
||
use Queueable;
|
||
use SerializesModels;
|
||
|
||
private $data;
|
||
private $nodes;
|
||
|
||
public function __construct(User $user, $nodes)
|
||
{
|
||
$this->nodes = $nodes;
|
||
$this->data = [
|
||
'uid' => $user->id,
|
||
'port' => (int) $user->port,
|
||
'passwd' => $user->passwd,
|
||
'speed_limit' => $user->speed_limit,
|
||
'enable' => (int) $user->enable,
|
||
];
|
||
}
|
||
|
||
public function handle(): void
|
||
{
|
||
foreach ($this->nodes as $node) {
|
||
$list = (new getUser())->list($node);
|
||
if ($list && in_array($this->data['uid'], $list, true)) { // 如果用户已存在节点内,则执行修改;否则为添加
|
||
if ($node->is_ddns) {
|
||
$this->send($node->server.':'.$node->push_port, $node->auth->secret);
|
||
} else { // 多IP支持
|
||
foreach ($node->ips() as $ip) {
|
||
$this->send($ip.':'.$node->push_port, $node->auth->secret);
|
||
}
|
||
}
|
||
} else {
|
||
addUser::dispatch($this->data['uid'], $node);
|
||
}
|
||
}
|
||
}
|
||
|
||
private function send(string $host, string $secret): void
|
||
{
|
||
try {
|
||
$response = Http::baseUrl($host)->timeout(20)->withHeaders(['secret' => $secret])->post('api/user/edit', $this->data);
|
||
$message = $response->json();
|
||
if ($message && Arr::has($message, ['success', 'content']) && $response->ok()) {
|
||
if ($message['success'] === 'false') {
|
||
Log::warning("【编辑用户】推送失败(推送地址:{$host},返回内容:".$message['content'].')');
|
||
} else {
|
||
Log::info("【编辑用户】推送成功(推送地址:{$host},内容:".json_encode($this->data, true).')');
|
||
}
|
||
}
|
||
} catch (Exception $exception) {
|
||
Log::alert('【编辑用户】推送异常:'.$exception->getMessage());
|
||
}
|
||
}
|
||
|
||
// 队列失败处理
|
||
public function failed(Throwable $exception)
|
||
{
|
||
Log::alert('【编辑用户】推送异常:'.$exception->getMessage());
|
||
}
|
||
}
|