mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-05 12:08:58 +00:00
- Optimize Blade JavaScript code. - Refactored multiple admin controllers for improved validation, error handling, and query efficiency. - Added ProxyConfig trait to centralize proxy configuration options. - Updated NodeStatusDetection to use model relationships for heartbeat checks. - Improved category, label, and country management logic and error logging. - Added new Blade components for admin UI and updated language files and assets for better localization and frontend support. - Bug fixed & introduced more bug :)
64 lines
2.1 KiB
PHP
64 lines
2.1 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Admin;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use App\Models\Node;
|
|
use App\Models\NodeAuth;
|
|
use Illuminate\Contracts\View\View;
|
|
use Illuminate\Http\JsonResponse;
|
|
use Str;
|
|
|
|
class NodeAuthController extends Controller
|
|
{
|
|
public function index(): View
|
|
{ // 节点授权列表
|
|
$authorizations = NodeAuth::with(['node:id,name,type,server,ip,ipv6'])
|
|
->orderBy('node_id')
|
|
->paginate()
|
|
->appends(request('page'));
|
|
|
|
return view('admin.node.auth', compact('authorizations'));
|
|
}
|
|
|
|
public function store(): JsonResponse
|
|
{ // 添加节点授权
|
|
$nodes = Node::whereStatus(1)->doesntHave('auth')->pluck('id');
|
|
|
|
if ($nodes->isEmpty()) {
|
|
return response()->json(['status' => 'success', 'message' => trans('admin.node.auth.empty')]);
|
|
}
|
|
|
|
$authData = [];
|
|
foreach ($nodes as $node_id) {
|
|
$authData[] = [
|
|
'node_id' => $node_id,
|
|
'key' => Str::random(),
|
|
'secret' => Str::random(8),
|
|
];
|
|
}
|
|
|
|
NodeAuth::insert($authData);
|
|
|
|
return response()->json(['status' => 'success', 'message' => trans('common.success_item', ['attribute' => trans('common.generate')])]);
|
|
}
|
|
|
|
public function update(NodeAuth $auth): JsonResponse
|
|
{ // 重置节点授权
|
|
if ($auth->update(['key' => Str::random(), 'secret' => Str::random(8)])) {
|
|
return response()->json(['status' => 'success', 'message' => trans('common.success_item', ['attribute' => trans('common.reset')])]);
|
|
}
|
|
|
|
return response()->json(['status' => 'fail', 'message' => trans('common.failed_item', ['attribute' => trans('common.reset')])]);
|
|
}
|
|
|
|
public function destroy(NodeAuth $auth): JsonResponse
|
|
{ // 删除节点授权
|
|
if ($auth->delete()) {
|
|
return response()->json(['status' => 'success', 'message' => trans('common.success_item', ['attribute' => trans('common.delete')])]);
|
|
}
|
|
|
|
return response()->json(['status' => 'fail', 'message' => trans('common.failed_item', ['attribute' => trans('common.delete')])]);
|
|
}
|
|
}
|