Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
77c6f0dab7 | ||
|
|
fd257a59f7 |
@@ -1,6 +1,6 @@
|
||||
# Amnezia Web Panel
|
||||
|
||||
A modern, high-performance web interface for managing **AmneziaWG**, **Classic WireGuard**, **Xray (XTLS-Reality)**, **Hysteria 2**, **NaiveProxy**, **Telemt (Telegram MTProxy)**, **Cloudflare WARP**, **AmneziaDNS**, **AdGuard Home**, **SOCKS5**, and **NGINX + Let's Encrypt** services on remote Ubuntu servers — from a single dashboard. Designed to provide a premium user experience with robust administrative capabilities.
|
||||
A modern, high-performance web interface for managing **AmneziaWG**, **Classic WireGuard**, **Xray (XTLS-Reality)**, **Hysteria 2**, **NaiveProxy**, **Telemt (Telegram MTProxy)**, **Cloudflare WARP**, **NordVPN**, **AmneziaDNS**, **AdGuard Home**, **SOCKS5**, and **NGINX + Let's Encrypt** services on remote Ubuntu servers — from a single dashboard. Designed to provide a premium user experience with robust administrative capabilities.
|
||||
|
||||
> ### 🔄 Compatibility with Official Amnezia Client
|
||||
>
|
||||
@@ -66,6 +66,7 @@ Configuration panel for system parameters and preferences:
|
||||
* **NaiveProxy** (stable): HTTPS/HTTP2 camouflage proxy via [klzgrad/naiveproxy](https://github.com/klzgrad/naiveproxy) (Caddy + [klzgrad/forwardproxy](https://github.com/klzgrad/forwardproxy) naïve fork). ACME TLS on the domain, per-client basic auth, `naive+https://` share links. Requires free TCP **80** and **443**. **Use Karing** as the client — do **not** use v2rayN; other clients are untested.
|
||||
* **Telemt (Telegram MTProxy)**: High-performance Telegram MTProxy with TLS emulation and comprehensive management (quotas, IP limits, real-time session tracking). Robust install path that auto-configures Docker's official apt/yum repository when needed.
|
||||
* **Cloudflare WARP**: Add and manage WARP-powered connectivity from the panel for routing and network flexibility.
|
||||
* **NordVPN**: Connect/disconnect outbound NordVPN from Settings via the official CLI (optional country/city).
|
||||
* **🛠 Services**:
|
||||
* **AmneziaDNS**: Internal DNS resolver on a private docker network (`amnezia-dns-net`, IP `172.29.172.254`) to prevent DNS leaks and blockings.
|
||||
* **AdGuard Home**: DNS-based ad blocker with a web admin UI. Two install modes: **Replace AmneziaDNS** (takes its IP, all VPN clients use AdGuard immediately) or **Side-by-side** (parallel deployment on `172.29.172.253`, web UI accessible only over the VPN by default). Optional opt-in checkboxes to expose the web UI / DoT / DoH on the host.
|
||||
@@ -85,6 +86,11 @@ Configuration panel for system parameters and preferences:
|
||||
* **🌐 Internationalization (i18n)**:
|
||||
* Full support for **English**, **Russian**, **French**, **Chinese**, and **Persian**.
|
||||
* Native **RTL (Right-to-Left)** support for Persian language.
|
||||
* **🔄 Auto-update**:
|
||||
* Settings → About checks releases on [git.evilfox.cc](https://git.evilfox.cc/test2/Amnezia-Web-Panel-main) and can install the latest tag via git + restart (when the panel runs from a git checkout).
|
||||
* **🌍 Tunnels & outbound VPN**:
|
||||
* **Cloudflare Quick Tunnel** and **ngrok** expose the local panel to the internet.
|
||||
* **Cloudflare WARP** and **NordVPN** route the host outbound (no public panel URL).
|
||||
* **👥 Advanced User Management**:
|
||||
* Role-based access (Admin, Support, Regular User).
|
||||
* Traffic limits, status monitoring, and account expiration.
|
||||
@@ -222,6 +228,12 @@ GitHub Actions workflows in `.github/workflows/`:
|
||||
|
||||
## 📋 Fix / changelog (this fork)
|
||||
|
||||
### v2.5.0
|
||||
* **NordVPN in Tunnels** — connect/disconnect outbound NordVPN from Settings (official `nordvpn` CLI; optional country/city).
|
||||
|
||||
### v2.4.0
|
||||
* **Auto-update from Gitea**: Settings → About checks https://git.evilfox.cc/test2/Amnezia-Web-Panel-main releases and can install the latest tag via `git fetch` + checkout, then restart (git install only).
|
||||
|
||||
### v2.3.0
|
||||
* **Cascade removed** — double-VPN feature dropped from the panel (manager, API, UI, i18n).
|
||||
|
||||
|
||||
@@ -46,6 +46,7 @@ from managers.awg_manager import AWGManager
|
||||
from managers.xray_manager import XrayManager
|
||||
from managers.wireguard_manager import WireGuardManager
|
||||
from managers.backup_manager import BackupManager
|
||||
from managers.update_manager import UpdateManager, version_gt, api_latest_url, repo_url
|
||||
import telegram_bot as tg_bot
|
||||
|
||||
# Configure logging
|
||||
@@ -101,9 +102,9 @@ else:
|
||||
application_path = os.path.dirname(__file__)
|
||||
|
||||
DATA_FILE = os.path.join(application_path, 'data.json') # legacy JSON; used only for one-shot import / export
|
||||
CURRENT_VERSION = "v2.3.0"
|
||||
RELEASES_REPO_URL = "https://git.evilfox.cc/test2/Amnezia-Web-Panel-main"
|
||||
RELEASES_API_LATEST = "https://git.evilfox.cc/api/v1/repos/test2/Amnezia-Web-Panel-main/releases/latest"
|
||||
CURRENT_VERSION = "v2.5.0"
|
||||
RELEASES_REPO_URL = repo_url()
|
||||
RELEASES_API_LATEST = api_latest_url()
|
||||
BIN_DIR = os.environ.get('TUNNEL_BIN_DIR', os.path.join(application_path, 'bin'))
|
||||
TUNNEL_STATE_FILE = os.environ.get('TUNNEL_STATE_FILE', os.path.join(application_path, 'tunnels_state.json'))
|
||||
|
||||
@@ -137,6 +138,7 @@ TUNNEL_RUNTIMES = {
|
||||
TUNNEL_LOCK = threading.Lock()
|
||||
TUNNEL_URL_RE = re.compile(r'https://[^\s"\']+')
|
||||
WARP_CLI_COMMAND = 'warp-cli.exe' if os.name == 'nt' else 'warp-cli'
|
||||
NORDVPN_CLI_COMMAND = 'nordvpn.exe' if os.name == 'nt' else 'nordvpn'
|
||||
|
||||
|
||||
|
||||
@@ -372,6 +374,152 @@ def disable_warp():
|
||||
return get_warp_status()
|
||||
|
||||
|
||||
def get_nordvpn_cli_binary():
|
||||
found = shutil.which(NORDVPN_CLI_COMMAND)
|
||||
if found:
|
||||
return found
|
||||
if os.name == 'nt':
|
||||
for base in (os.environ.get('ProgramFiles'), os.environ.get('ProgramFiles(x86)')):
|
||||
if not base:
|
||||
continue
|
||||
for sub in ('NordVPN', 'NordVPN NordSec'):
|
||||
candidate = os.path.join(base, sub, 'nordvpn.exe')
|
||||
if os.path.exists(candidate):
|
||||
return candidate
|
||||
return None
|
||||
|
||||
|
||||
def is_nordvpn_cli_installed():
|
||||
return bool(get_nordvpn_cli_binary())
|
||||
|
||||
|
||||
def _nordvpn_install_hint():
|
||||
system = platform.system().lower()
|
||||
if system == 'windows':
|
||||
return (
|
||||
'Install NordVPN from https://nordvpn.com/download/ or Microsoft Store, '
|
||||
'then restart this panel.'
|
||||
)
|
||||
if system == 'darwin':
|
||||
return 'Install NordVPN for macOS from https://nordvpn.com/download/, then restart this panel.'
|
||||
return (
|
||||
'Install NordVPN CLI: sh <(curl -sSf https://downloads.nordcdn.com/apps/linux/install.sh), '
|
||||
'add your user to the nordvpn group, run nordvpn login, then restart this panel.'
|
||||
)
|
||||
|
||||
|
||||
def run_nordvpn_cli(*args, timeout: int = 30):
|
||||
binary = get_nordvpn_cli_binary()
|
||||
if not binary:
|
||||
raise RuntimeError(_nordvpn_install_hint())
|
||||
creationflags = subprocess.CREATE_NO_WINDOW if os.name == 'nt' else 0
|
||||
result = subprocess.run(
|
||||
[binary, *args],
|
||||
capture_output=True,
|
||||
text=True,
|
||||
encoding='utf-8',
|
||||
errors='replace',
|
||||
timeout=timeout,
|
||||
creationflags=creationflags,
|
||||
)
|
||||
output = '\n'.join(part.strip() for part in (result.stdout, result.stderr) if part and part.strip())
|
||||
if result.returncode != 0:
|
||||
raise RuntimeError(output or f'nordvpn exited with code {result.returncode}')
|
||||
return output
|
||||
|
||||
|
||||
def _parse_nordvpn_status(output: str):
|
||||
lowered = (output or '').lower()
|
||||
if 'not logged in' in lowered or 'login required' in lowered or 'please log in' in lowered:
|
||||
return 'not_logged_in'
|
||||
if 'disconnected' in lowered:
|
||||
return 'disconnected'
|
||||
if 'connecting' in lowered:
|
||||
return 'connecting'
|
||||
if 'connected' in lowered:
|
||||
return 'connected'
|
||||
if 'daemon' in lowered or 'nordvpnd' in lowered:
|
||||
return 'service_unavailable'
|
||||
return 'unknown'
|
||||
|
||||
|
||||
def _nordvpn_server_line(output: str) -> str:
|
||||
for line in (output or '').splitlines():
|
||||
stripped = line.strip()
|
||||
if not stripped:
|
||||
continue
|
||||
low = stripped.lower()
|
||||
if low.startswith('server:') or low.startswith('country:') or low.startswith('your new ip:'):
|
||||
return stripped
|
||||
return ''
|
||||
|
||||
|
||||
def get_nordvpn_status():
|
||||
installed = is_nordvpn_cli_installed()
|
||||
status = {
|
||||
'installed': installed,
|
||||
'running': False,
|
||||
'connected': False,
|
||||
'status': 'not_installed' if not installed else 'unknown',
|
||||
'server': '',
|
||||
'raw': '',
|
||||
'last_error': '' if installed else _nordvpn_install_hint(),
|
||||
'install_hint': _nordvpn_install_hint(),
|
||||
}
|
||||
if not installed:
|
||||
return status
|
||||
try:
|
||||
output = run_nordvpn_cli('status', timeout=15)
|
||||
parsed = _parse_nordvpn_status(output)
|
||||
status.update({
|
||||
'running': parsed in ('connected', 'connecting'),
|
||||
'connected': parsed == 'connected',
|
||||
'status': parsed,
|
||||
'server': _nordvpn_server_line(output),
|
||||
'raw': output,
|
||||
'last_error': '',
|
||||
})
|
||||
except Exception as e:
|
||||
status['last_error'] = str(e)
|
||||
lowered = str(e).lower()
|
||||
if 'not logged in' in lowered or 'login' in lowered:
|
||||
status['status'] = 'not_logged_in'
|
||||
elif 'daemon' in lowered or 'nordvpnd' in lowered or 'service' in lowered or 'permission' in lowered:
|
||||
status['status'] = 'service_unavailable'
|
||||
else:
|
||||
status['status'] = 'error'
|
||||
return status
|
||||
|
||||
|
||||
def enable_nordvpn(country: str = '', city: str = ''):
|
||||
current = get_nordvpn_status()
|
||||
if not current.get('installed'):
|
||||
raise RuntimeError(current.get('install_hint') or _nordvpn_install_hint())
|
||||
if current.get('status') == 'not_logged_in':
|
||||
raise RuntimeError(
|
||||
'NordVPN is not logged in. Run `nordvpn login` on this host (browser flow), then retry.'
|
||||
)
|
||||
args = ['connect']
|
||||
country = (country or '').strip()
|
||||
city = (city or '').strip()
|
||||
if country and city:
|
||||
args.extend([country, city])
|
||||
elif country:
|
||||
args.append(country)
|
||||
run_nordvpn_cli(*args, timeout=45)
|
||||
time.sleep(1)
|
||||
return get_nordvpn_status()
|
||||
|
||||
|
||||
def disable_nordvpn():
|
||||
current = get_nordvpn_status()
|
||||
if not current.get('installed'):
|
||||
raise RuntimeError(current.get('install_hint') or _nordvpn_install_hint())
|
||||
run_nordvpn_cli('disconnect', timeout=30)
|
||||
time.sleep(0.5)
|
||||
return get_nordvpn_status()
|
||||
|
||||
|
||||
def get_tunnel_command_name(provider: str):
|
||||
if provider == 'cloudflare':
|
||||
return 'cloudflared.exe' if os.name == 'nt' else 'cloudflared'
|
||||
@@ -1992,6 +2140,16 @@ class TunnelStartRequest(BaseModel):
|
||||
authtoken: Optional[str] = None
|
||||
|
||||
|
||||
class ApplyUpdateRequest(BaseModel):
|
||||
target_version: Optional[str] = None
|
||||
allow_dirty: bool = False
|
||||
|
||||
|
||||
class NordvpnConnectRequest(BaseModel):
|
||||
country: Optional[str] = ''
|
||||
city: Optional[str] = ''
|
||||
|
||||
|
||||
# ======================== Startup ========================
|
||||
|
||||
@app.on_event("startup")
|
||||
@@ -5498,6 +5656,8 @@ async def api_check_updates(request: Request):
|
||||
if not _check_admin(request):
|
||||
return JSONResponse({'error': 'Forbidden'}, status_code=403)
|
||||
try:
|
||||
updater = UpdateManager(application_path, CURRENT_VERSION)
|
||||
mode = updater.detect_mode()
|
||||
async with httpx.AsyncClient(timeout=15.0, follow_redirects=True) as client:
|
||||
resp = await client.get(
|
||||
RELEASES_API_LATEST,
|
||||
@@ -5511,20 +5671,61 @@ async def api_check_updates(request: Request):
|
||||
data = resp.json() if resp.content else {}
|
||||
latest = (data.get('tag_name') or data.get('name') or '').strip()
|
||||
html_url = (data.get('html_url') or f'{RELEASES_REPO_URL}/releases').strip()
|
||||
body = (data.get('body') or '')[:4000]
|
||||
current = CURRENT_VERSION
|
||||
update_available = bool(latest) and latest != current
|
||||
update_available = bool(latest) and version_gt(latest, current)
|
||||
return {
|
||||
'current_version': current,
|
||||
'latest_version': latest,
|
||||
'update_available': update_available,
|
||||
'html_url': html_url,
|
||||
'releases_url': f'{RELEASES_REPO_URL}/releases',
|
||||
'body': body,
|
||||
'can_auto_update': bool(mode.get('can_auto_update')),
|
||||
'update_mode': mode.get('mode'),
|
||||
'mode': mode,
|
||||
}
|
||||
except Exception as e:
|
||||
logger.exception('Error checking for updates')
|
||||
return JSONResponse({'error': str(e)}, status_code=502)
|
||||
|
||||
|
||||
@app.post('/api/settings/apply_update', tags=["Settings"])
|
||||
async def api_apply_update(request: Request, req: ApplyUpdateRequest):
|
||||
"""Pull the selected release tag from git.evilfox.cc and restart the panel."""
|
||||
if not _check_admin(request):
|
||||
return JSONResponse({'error': 'Forbidden'}, status_code=403)
|
||||
updater = UpdateManager(application_path, CURRENT_VERSION)
|
||||
target = (req.target_version or '').strip()
|
||||
if not target:
|
||||
# Resolve latest if UI did not pass a tag
|
||||
try:
|
||||
async with httpx.AsyncClient(timeout=15.0, follow_redirects=True) as client:
|
||||
resp = await client.get(
|
||||
RELEASES_API_LATEST,
|
||||
headers={'Accept': 'application/json'},
|
||||
)
|
||||
if resp.status_code < 400 and resp.content:
|
||||
payload = resp.json()
|
||||
target = (payload.get('tag_name') or payload.get('name') or '').strip()
|
||||
except Exception:
|
||||
logger.exception('Failed to resolve latest tag for apply_update')
|
||||
if not target:
|
||||
return JSONResponse({'error': 'No target version specified'}, status_code=400)
|
||||
|
||||
result = await asyncio.to_thread(
|
||||
updater.apply_update,
|
||||
target,
|
||||
bool(req.allow_dirty),
|
||||
)
|
||||
if result.get('status') != 'success':
|
||||
return JSONResponse({'error': result.get('message') or 'Update failed', **result}, status_code=500)
|
||||
|
||||
if result.get('restart'):
|
||||
UpdateManager.schedule_restart(1.5)
|
||||
return result
|
||||
|
||||
|
||||
@app.get('/api/settings/tunnels/status', tags=["Settings"])
|
||||
async def api_tunnels_status(request: Request):
|
||||
if not _check_admin(request):
|
||||
@@ -5534,6 +5735,7 @@ async def api_tunnels_status(request: Request):
|
||||
'cloudflare': get_tunnel_status('cloudflare'),
|
||||
'ngrok': get_tunnel_status('ngrok'),
|
||||
'warp': get_warp_status(),
|
||||
'nordvpn': get_nordvpn_status(),
|
||||
}
|
||||
|
||||
|
||||
@@ -5619,6 +5821,28 @@ async def api_warp_disconnect(request: Request):
|
||||
return JSONResponse({'error': str(e)}, status_code=500)
|
||||
|
||||
|
||||
@app.post('/api/settings/nordvpn/connect', tags=["Settings"])
|
||||
async def api_nordvpn_connect(request: Request, req: NordvpnConnectRequest = NordvpnConnectRequest()):
|
||||
if not _check_admin(request):
|
||||
return JSONResponse({'error': 'Forbidden'}, status_code=403)
|
||||
try:
|
||||
return await asyncio.to_thread(enable_nordvpn, req.country or '', req.city or '')
|
||||
except Exception as e:
|
||||
logger.exception("Error connecting NordVPN")
|
||||
return JSONResponse({'error': str(e)}, status_code=500)
|
||||
|
||||
|
||||
@app.post('/api/settings/nordvpn/disconnect', tags=["Settings"])
|
||||
async def api_nordvpn_disconnect(request: Request):
|
||||
if not _check_admin(request):
|
||||
return JSONResponse({'error': 'Forbidden'}, status_code=403)
|
||||
try:
|
||||
return await asyncio.to_thread(disable_nordvpn)
|
||||
except Exception as e:
|
||||
logger.exception("Error disconnecting NordVPN")
|
||||
return JSONResponse({'error': str(e)}, status_code=500)
|
||||
|
||||
|
||||
# @app.post('/api/settings/save')
|
||||
# async def api_save_settings(request: Request, body: SaveSettingsRequest):
|
||||
# _check_admin(request)
|
||||
|
||||
@@ -0,0 +1,249 @@
|
||||
"""Panel self-update from the EvilFox Gitea repository."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import logging
|
||||
import os
|
||||
import re
|
||||
import subprocess
|
||||
import sys
|
||||
import threading
|
||||
import time
|
||||
from typing import Optional
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
DEFAULT_REPO_URL = 'https://git.evilfox.cc/test2/Amnezia-Web-Panel-main'
|
||||
DEFAULT_GIT_URL = 'https://git.evilfox.cc/test2/Amnezia-Web-Panel-main.git'
|
||||
DEFAULT_API_LATEST = 'https://git.evilfox.cc/api/v1/repos/test2/Amnezia-Web-Panel-main/releases/latest'
|
||||
UPDATE_REMOTE = 'panel-update'
|
||||
|
||||
|
||||
def _env(name: str, default: str) -> str:
|
||||
return (os.environ.get(name) or default).strip()
|
||||
|
||||
|
||||
def repo_url() -> str:
|
||||
return _env('PANEL_UPDATE_REPO_URL', DEFAULT_REPO_URL).rstrip('/')
|
||||
|
||||
|
||||
def git_url() -> str:
|
||||
return _env('PANEL_UPDATE_GIT_URL', DEFAULT_GIT_URL)
|
||||
|
||||
|
||||
def api_latest_url() -> str:
|
||||
return _env('PANEL_UPDATE_API_LATEST', DEFAULT_API_LATEST)
|
||||
|
||||
|
||||
def parse_version(value: str) -> tuple:
|
||||
"""Parse semver-ish tags like v2.3.0 / 2.3.0-beta into a comparable tuple."""
|
||||
raw = (value or '').strip()
|
||||
if not raw:
|
||||
return (0, 0, 0, 1, '')
|
||||
raw = raw.lstrip('vV')
|
||||
main, _, pre = raw.partition('-')
|
||||
parts = []
|
||||
for piece in main.split('.'):
|
||||
if piece.isdigit():
|
||||
parts.append(int(piece))
|
||||
else:
|
||||
m = re.match(r'(\d+)', piece or '')
|
||||
parts.append(int(m.group(1)) if m else 0)
|
||||
while len(parts) < 3:
|
||||
parts.append(0)
|
||||
# release > prerelease: empty pre sorts higher
|
||||
pre_rank = 0 if not pre else 1
|
||||
return (parts[0], parts[1], parts[2], pre_rank, pre)
|
||||
|
||||
|
||||
def version_gt(a: str, b: str) -> bool:
|
||||
return parse_version(a) > parse_version(b)
|
||||
|
||||
|
||||
def _run(cmd: list, cwd: str, timeout: int = 120) -> tuple[int, str, str]:
|
||||
try:
|
||||
proc = subprocess.run(
|
||||
cmd,
|
||||
cwd=cwd,
|
||||
capture_output=True,
|
||||
text=True,
|
||||
timeout=timeout,
|
||||
encoding='utf-8',
|
||||
errors='replace',
|
||||
)
|
||||
return proc.returncode, (proc.stdout or '').strip(), (proc.stderr or '').strip()
|
||||
except FileNotFoundError:
|
||||
return 127, '', f'Command not found: {cmd[0]}'
|
||||
except subprocess.TimeoutExpired:
|
||||
return 124, '', f'Timeout running: {" ".join(cmd)}'
|
||||
|
||||
|
||||
class UpdateManager:
|
||||
def __init__(self, app_root: str, current_version: str):
|
||||
self.app_root = os.path.abspath(app_root)
|
||||
self.current_version = current_version
|
||||
|
||||
def detect_mode(self) -> dict:
|
||||
frozen = bool(getattr(sys, 'frozen', False))
|
||||
in_docker = os.path.exists('/.dockerenv') or os.environ.get('PANEL_IN_DOCKER') == '1'
|
||||
git_dir = os.path.join(self.app_root, '.git')
|
||||
is_git = os.path.isdir(git_dir)
|
||||
git_ok = False
|
||||
if is_git and not frozen:
|
||||
code, _, _ = _run(['git', '--version'], self.app_root, timeout=10)
|
||||
git_ok = code == 0
|
||||
can_auto = bool(git_ok and not frozen)
|
||||
mode = 'git' if can_auto else ('docker' if in_docker else ('binary' if frozen else 'manual'))
|
||||
return {
|
||||
'mode': mode,
|
||||
'can_auto_update': can_auto,
|
||||
'is_git': is_git,
|
||||
'frozen': frozen,
|
||||
'in_docker': in_docker,
|
||||
'app_root': self.app_root,
|
||||
'repo_url': repo_url(),
|
||||
'git_url': git_url(),
|
||||
}
|
||||
|
||||
def _ensure_update_remote(self) -> Optional[str]:
|
||||
code, out, err = _run(['git', 'remote'], self.app_root, timeout=15)
|
||||
if code != 0:
|
||||
return err or out or 'git remote failed'
|
||||
remotes = set((out or '').split())
|
||||
target = git_url()
|
||||
if UPDATE_REMOTE in remotes:
|
||||
code, _, err = _run(
|
||||
['git', 'remote', 'set-url', UPDATE_REMOTE, target],
|
||||
self.app_root,
|
||||
timeout=15,
|
||||
)
|
||||
else:
|
||||
code, _, err = _run(
|
||||
['git', 'remote', 'add', UPDATE_REMOTE, target],
|
||||
self.app_root,
|
||||
timeout=15,
|
||||
)
|
||||
if code != 0:
|
||||
return err or 'Failed to configure update remote'
|
||||
return None
|
||||
|
||||
def working_tree_dirty(self) -> bool:
|
||||
code, out, _ = _run(['git', 'status', '--porcelain'], self.app_root, timeout=30)
|
||||
return code == 0 and bool(out.strip())
|
||||
|
||||
def apply_update(self, target_version: str, allow_dirty: bool = False) -> dict:
|
||||
mode = self.detect_mode()
|
||||
if not mode['can_auto_update']:
|
||||
return {
|
||||
'status': 'error',
|
||||
'message': (
|
||||
'Auto-update requires a git checkout of the panel sources. '
|
||||
'Docker/binary installs: pull a new image or download a release manually.'
|
||||
),
|
||||
'mode': mode,
|
||||
}
|
||||
|
||||
target = (target_version or '').strip()
|
||||
if not re.match(r'^v?\d+(\.\d+){0,3}([.-][\w.]+)?$', target):
|
||||
return {'status': 'error', 'message': f'Invalid target version: {target_version}'}
|
||||
if not target.startswith('v'):
|
||||
target = 'v' + target
|
||||
|
||||
if not allow_dirty and self.working_tree_dirty():
|
||||
return {
|
||||
'status': 'error',
|
||||
'message': (
|
||||
'Working tree has local changes. Commit/stash them or set allow_dirty, '
|
||||
'then retry auto-update.'
|
||||
),
|
||||
}
|
||||
|
||||
err = self._ensure_update_remote()
|
||||
if err:
|
||||
return {'status': 'error', 'message': err}
|
||||
|
||||
code, out, stderr = _run(
|
||||
['git', 'fetch', '--tags', '--force', UPDATE_REMOTE],
|
||||
self.app_root,
|
||||
timeout=180,
|
||||
)
|
||||
if code != 0:
|
||||
return {
|
||||
'status': 'error',
|
||||
'message': f'git fetch failed: {stderr or out or code}',
|
||||
}
|
||||
|
||||
# Prefer annotated/lightweight tag; fall back to remote main tip if tag missing
|
||||
code, _, _ = _run(
|
||||
['git', 'rev-parse', '-q', '--verify', f'refs/tags/{target}'],
|
||||
self.app_root,
|
||||
timeout=15,
|
||||
)
|
||||
if code == 0:
|
||||
checkout_ref = target
|
||||
else:
|
||||
# tag might only exist as FETCH_HEAD / remote tag
|
||||
code2, _, _ = _run(
|
||||
['git', 'rev-parse', '-q', '--verify', f'refs/tags/{target}^{{}}'],
|
||||
self.app_root,
|
||||
timeout=15,
|
||||
)
|
||||
checkout_ref = target if code2 == 0 else f'tags/{target}'
|
||||
|
||||
code, out, stderr = _run(
|
||||
['git', 'checkout', '--force', checkout_ref],
|
||||
self.app_root,
|
||||
timeout=60,
|
||||
)
|
||||
if code != 0:
|
||||
# last resort: checkout remote main
|
||||
code_m, out_m, err_m = _run(
|
||||
['git', 'checkout', '--force', '-B', 'main', f'{UPDATE_REMOTE}/main'],
|
||||
self.app_root,
|
||||
timeout=60,
|
||||
)
|
||||
if code_m != 0:
|
||||
return {
|
||||
'status': 'error',
|
||||
'message': f'git checkout {target} failed: {stderr or out or err_m or out_m}',
|
||||
}
|
||||
checkout_ref = f'{UPDATE_REMOTE}/main'
|
||||
|
||||
req = os.path.join(self.app_root, 'requirements.txt')
|
||||
pip_log = ''
|
||||
if os.path.isfile(req):
|
||||
code_p, out_p, err_p = _run(
|
||||
[sys.executable, '-m', 'pip', 'install', '-r', req],
|
||||
self.app_root,
|
||||
timeout=300,
|
||||
)
|
||||
pip_log = (out_p or err_p or '')[:1500]
|
||||
if code_p != 0:
|
||||
return {
|
||||
'status': 'error',
|
||||
'message': f'pip install failed after checkout: {err_p or out_p or code_p}',
|
||||
'checkout': checkout_ref,
|
||||
}
|
||||
|
||||
return {
|
||||
'status': 'success',
|
||||
'message': f'Updated to {target}. Panel will restart.',
|
||||
'target_version': target,
|
||||
'checkout': checkout_ref,
|
||||
'pip': pip_log[:500],
|
||||
'restart': True,
|
||||
}
|
||||
|
||||
@staticmethod
|
||||
def schedule_restart(delay_sec: float = 1.5) -> None:
|
||||
def _restart():
|
||||
time.sleep(max(0.5, float(delay_sec)))
|
||||
try:
|
||||
argv = [sys.executable] + sys.argv
|
||||
logger.info('Restarting panel after update: %s', argv)
|
||||
os.execv(sys.executable, argv)
|
||||
except Exception:
|
||||
logger.exception('Failed to restart after update; exiting')
|
||||
os._exit(0)
|
||||
|
||||
threading.Thread(target=_restart, name='panel-update-restart', daemon=False).start()
|
||||
+175
-13
@@ -284,6 +284,30 @@
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="tunnel-row" data-provider="nordvpn" style="padding: var(--space-md); border: 1px solid var(--border-color); border-radius: var(--radius-md); background: var(--bg-primary);">
|
||||
<div style="display:flex; align-items:center; justify-content:space-between; gap:var(--space-md); margin-bottom: var(--space-sm);">
|
||||
<strong>NordVPN</strong>
|
||||
<span class="badge badge-secondary" id="nordvpnInstallBadge">{{ _('not_installed') }}</span>
|
||||
</div>
|
||||
<div id="nordvpnStatusText" class="form-hint" style="margin-bottom: var(--space-sm);">{{ _('nordvpn_status_unknown') }}</div>
|
||||
<div id="nordvpnServerText" class="form-hint hidden" style="margin-bottom: var(--space-sm);"></div>
|
||||
<div id="nordvpnHintText" class="form-hint" style="margin-bottom: var(--space-sm);">{{ _('nordvpn_hint') }}</div>
|
||||
<div class="grid" style="display:grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm); margin-bottom: var(--space-sm);">
|
||||
<input type="text" class="form-input" id="nordvpnCountry" placeholder="{{ _('nordvpn_country_placeholder') }}" autocomplete="off">
|
||||
<input type="text" class="form-input" id="nordvpnCity" placeholder="{{ _('nordvpn_city_placeholder') }}" autocomplete="off">
|
||||
</div>
|
||||
<div style="display:grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm);">
|
||||
<button type="button" class="btn btn-primary" id="nordvpnConnectBtn" onclick="connectNordvpn()">
|
||||
<span id="nordvpnConnectBtnText">{{ _('nordvpn_connect') }}</span>
|
||||
<div class="spinner hidden" id="nordvpnConnectSpinner" style="width:14px; height:14px;"></div>
|
||||
</button>
|
||||
<button type="button" class="btn btn-secondary hidden" id="nordvpnDisconnectBtn" onclick="disconnectNordvpn()">
|
||||
<span id="nordvpnDisconnectBtnText">{{ _('nordvpn_disconnect') }}</span>
|
||||
<div class="spinner hidden" id="nordvpnDisconnectSpinner" style="width:14px; height:14px;"></div>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<p class="form-hint" style="margin-top: var(--space-md);">{{ _('tunnels_hint') }}</p>
|
||||
</div>
|
||||
@@ -597,15 +621,20 @@
|
||||
<!-- Updated via JS -->
|
||||
</div>
|
||||
|
||||
<div style="display: flex; gap: var(--space-sm); margin-top: var(--space-sm);">
|
||||
<button type="button" class="btn btn-secondary" onclick="checkForUpdates()" id="checkUpdateBtn" style="flex:1;">
|
||||
<div style="display: flex; gap: var(--space-sm); margin-top: var(--space-sm); flex-wrap: wrap;">
|
||||
<button type="button" class="btn btn-secondary" onclick="checkForUpdates()" id="checkUpdateBtn" style="flex:1; min-width:140px;">
|
||||
<span id="checkUpdateBtnText">🔄 {{ _('check_updates') }}</span>
|
||||
<div class="spinner hidden" id="checkUpdateSpinner" style="width:14px; height:14px;"></div>
|
||||
</button>
|
||||
<a href="https://git.evilfox.cc/test2/Amnezia-Web-Panel-main/releases" target="_blank" class="btn btn-primary hidden" id="downloadUpdateBtn" style="flex:1; text-decoration: none; justify-content: center;">
|
||||
<button type="button" class="btn btn-primary hidden" onclick="applyPanelUpdate()" id="applyUpdateBtn" style="flex:1; min-width:140px;">
|
||||
<span id="applyUpdateBtnText">⬆ {{ _('apply_update') }}</span>
|
||||
<div class="spinner hidden" id="applyUpdateSpinner" style="width:14px; height:14px;"></div>
|
||||
</button>
|
||||
<a href="https://git.evilfox.cc/test2/Amnezia-Web-Panel-main/releases" target="_blank" class="btn btn-secondary hidden" id="downloadUpdateBtn" style="flex:1; min-width:140px; text-decoration: none; justify-content: center;">
|
||||
⬇️ {{ _('download_update') }}
|
||||
</a>
|
||||
</div>
|
||||
<p class="form-hint" id="updateModeHint" style="margin:0;">{{ _('auto_update_hint') }}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -951,6 +980,7 @@
|
||||
updateTunnelProvider('cloudflare', data.cloudflare || {});
|
||||
updateTunnelProvider('ngrok', data.ngrok || {});
|
||||
updateWarpStatus(data.warp || {});
|
||||
updateNordvpnStatus(data.nordvpn || {});
|
||||
} catch (err) {
|
||||
showToast(`${_('error')}: ` + err.message, 'error');
|
||||
}
|
||||
@@ -1020,6 +1050,81 @@
|
||||
}
|
||||
}
|
||||
|
||||
function updateNordvpnStatus(status) {
|
||||
const badge = document.getElementById('nordvpnInstallBadge');
|
||||
const statusText = document.getElementById('nordvpnStatusText');
|
||||
const serverText = document.getElementById('nordvpnServerText');
|
||||
const hintText = document.getElementById('nordvpnHintText');
|
||||
const connectBtn = document.getElementById('nordvpnConnectBtn');
|
||||
const disconnectBtn = document.getElementById('nordvpnDisconnectBtn');
|
||||
const connectText = document.getElementById('nordvpnConnectBtnText');
|
||||
if (!badge || !statusText || !connectBtn || !disconnectBtn || !connectText) return;
|
||||
|
||||
const installed = !!status.installed;
|
||||
const connected = !!status.connected || status.status === 'connected';
|
||||
badge.className = connected ? 'badge badge-success' : (installed ? 'badge badge-info' : 'badge badge-secondary');
|
||||
badge.textContent = connected ? _('nordvpn_connected') : (installed ? _('installed') : _('not_installed'));
|
||||
|
||||
const statusKey = `nordvpn_status_${status.status || 'unknown'}`;
|
||||
statusText.textContent = _(statusKey) || status.status || _('nordvpn_status_unknown');
|
||||
if (serverText) {
|
||||
const serverLine = status.server || '';
|
||||
serverText.textContent = serverLine;
|
||||
serverText.classList.toggle('hidden', !serverLine);
|
||||
}
|
||||
hintText.textContent = status.last_error || (installed ? _('nordvpn_hint') : (status.install_hint || _('nordvpn_install_hint')));
|
||||
connectText.textContent = installed ? _('nordvpn_connect') : _('nordvpn_install_required');
|
||||
connectBtn.disabled = connected;
|
||||
disconnectBtn.classList.toggle('hidden', !connected);
|
||||
}
|
||||
|
||||
async function connectNordvpn() {
|
||||
const btn = document.getElementById('nordvpnConnectBtn');
|
||||
const spinner = document.getElementById('nordvpnConnectSpinner');
|
||||
const text = document.getElementById('nordvpnConnectBtnText');
|
||||
btn.disabled = true;
|
||||
spinner.classList.remove('hidden');
|
||||
text.textContent = _('loading');
|
||||
|
||||
try {
|
||||
const country = (document.getElementById('nordvpnCountry') || {}).value || '';
|
||||
const city = (document.getElementById('nordvpnCity') || {}).value || '';
|
||||
const status = await apiCall('/api/settings/nordvpn/connect', 'POST', {
|
||||
country: country.trim(),
|
||||
city: city.trim(),
|
||||
});
|
||||
updateNordvpnStatus(status);
|
||||
showToast(_('nordvpn_connected'), 'success');
|
||||
} catch (err) {
|
||||
showToast(`${_('error')}: ` + err.message, 'error');
|
||||
await loadTunnelStatus();
|
||||
} finally {
|
||||
spinner.classList.add('hidden');
|
||||
}
|
||||
}
|
||||
|
||||
async function disconnectNordvpn() {
|
||||
const btn = document.getElementById('nordvpnDisconnectBtn');
|
||||
const spinner = document.getElementById('nordvpnDisconnectSpinner');
|
||||
const text = document.getElementById('nordvpnDisconnectBtnText');
|
||||
btn.disabled = true;
|
||||
spinner.classList.remove('hidden');
|
||||
text.textContent = _('loading');
|
||||
|
||||
try {
|
||||
const status = await apiCall('/api/settings/nordvpn/disconnect', 'POST');
|
||||
updateNordvpnStatus(status);
|
||||
showToast(_('nordvpn_disconnected'), 'success');
|
||||
} catch (err) {
|
||||
showToast(`${_('error')}: ` + err.message, 'error');
|
||||
await loadTunnelStatus();
|
||||
} finally {
|
||||
btn.disabled = false;
|
||||
text.textContent = _('nordvpn_disconnect');
|
||||
spinner.classList.add('hidden');
|
||||
}
|
||||
}
|
||||
|
||||
async function enableTunnel(provider) {
|
||||
const btn = document.getElementById(`${provider}TunnelBtn`);
|
||||
const spinner = document.getElementById(`${provider}TunnelSpinner`);
|
||||
@@ -1482,42 +1587,99 @@
|
||||
updateProtocolsForSync();
|
||||
}
|
||||
|
||||
async function checkForUpdates() {
|
||||
let latestUpdateInfo = null;
|
||||
|
||||
async function checkForUpdates(silent) {
|
||||
const btn = document.getElementById('checkUpdateBtn');
|
||||
const text = document.getElementById('checkUpdateBtnText');
|
||||
const spinner = document.getElementById('checkUpdateSpinner');
|
||||
const statusDiv = document.getElementById('updateStatus');
|
||||
const downloadBtn = document.getElementById('downloadUpdateBtn');
|
||||
|
||||
btn.disabled = true;
|
||||
text.textContent = "{{ _('checking_updates')|default('Checking...') }}";
|
||||
spinner.classList.remove('hidden');
|
||||
const applyBtn = document.getElementById('applyUpdateBtn');
|
||||
const modeHint = document.getElementById('updateModeHint');
|
||||
|
||||
if (!silent) {
|
||||
btn.disabled = true;
|
||||
text.textContent = "{{ _('checking_updates')|default('Checking...') }}";
|
||||
spinner.classList.remove('hidden');
|
||||
}
|
||||
statusDiv.classList.add('hidden');
|
||||
downloadBtn.classList.add('hidden');
|
||||
applyBtn.classList.add('hidden');
|
||||
|
||||
try {
|
||||
const data = await apiCall('/api/settings/check_updates');
|
||||
latestUpdateInfo = data;
|
||||
const latestVersion = data.latest_version || '';
|
||||
statusDiv.classList.remove('hidden');
|
||||
|
||||
|
||||
if (modeHint) {
|
||||
const mode = data.update_mode || (data.mode && data.mode.mode) || '';
|
||||
if (data.can_auto_update) {
|
||||
modeHint.textContent = "{{ _('auto_update_ready')|default('Git auto-update is available for this install.') }}";
|
||||
} else if (mode === 'docker') {
|
||||
modeHint.textContent = "{{ _('auto_update_docker')|default('Docker install: rebuild/pull image, or use a git checkout for one-click update.') }}";
|
||||
} else {
|
||||
modeHint.textContent = "{{ _('auto_update_manual')|default('One-click update needs a git clone. You can still download a release.') }}";
|
||||
}
|
||||
}
|
||||
|
||||
if (data.update_available && latestVersion) {
|
||||
statusDiv.innerHTML = `<span style="color: var(--success); font-weight: bold;">{{ _('update_available')|default('Update available') }}: ${latestVersion}</span>`;
|
||||
statusDiv.style.border = '1px solid var(--success)';
|
||||
downloadBtn.href = data.html_url || data.releases_url || 'https://git.evilfox.cc/test2/Amnezia-Web-Panel-main/releases';
|
||||
downloadBtn.classList.remove('hidden');
|
||||
if (data.can_auto_update) {
|
||||
applyBtn.classList.remove('hidden');
|
||||
}
|
||||
} else {
|
||||
statusDiv.innerHTML = `<span style="color: var(--text-muted);">{{ _('up_to_date')|default('Up to date') }}</span>`;
|
||||
statusDiv.style.border = '1px solid var(--border-color)';
|
||||
}
|
||||
} catch (err) {
|
||||
showToast('Failed to check for updates: ' + err.message, 'error');
|
||||
if (!silent) showToast('Failed to check for updates: ' + err.message, 'error');
|
||||
} finally {
|
||||
btn.disabled = false;
|
||||
text.textContent = "🔄 {{ _('check_updates')|default('Check for updates') }}";
|
||||
spinner.classList.add('hidden');
|
||||
if (!silent) {
|
||||
btn.disabled = false;
|
||||
text.textContent = "🔄 {{ _('check_updates')|default('Check for updates') }}";
|
||||
spinner.classList.add('hidden');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
async function applyPanelUpdate() {
|
||||
const applyBtn = document.getElementById('applyUpdateBtn');
|
||||
const applyText = document.getElementById('applyUpdateBtnText');
|
||||
const applySpinner = document.getElementById('applyUpdateSpinner');
|
||||
const target = (latestUpdateInfo && latestUpdateInfo.latest_version) || '';
|
||||
if (!target) {
|
||||
showToast("{{ _('update_no_target')|default('No target version. Check for updates first.') }}", 'error');
|
||||
return;
|
||||
}
|
||||
if (!confirm("{{ _('apply_update_confirm')|default('Install update from git and restart the panel?') }} " + target)) {
|
||||
return;
|
||||
}
|
||||
applyBtn.disabled = true;
|
||||
applyText.textContent = "{{ _('applying_update')|default('Updating…') }}";
|
||||
applySpinner.classList.remove('hidden');
|
||||
try {
|
||||
const data = await apiCall('/api/settings/apply_update', 'POST', {
|
||||
target_version: target,
|
||||
allow_dirty: false,
|
||||
});
|
||||
showToast(data.message || "{{ _('update_restarting')|default('Updated. Restarting…') }}", 'success');
|
||||
setTimeout(() => { window.location.reload(); }, 3500);
|
||||
} catch (err) {
|
||||
showToast(_('error') + ': ' + err.message, 'error');
|
||||
applyBtn.disabled = false;
|
||||
applyText.textContent = "⬆ {{ _('apply_update')|default('Install update') }}";
|
||||
applySpinner.classList.add('hidden');
|
||||
}
|
||||
}
|
||||
|
||||
// Auto-check once on Settings load
|
||||
setTimeout(() => checkForUpdates(true), 800);
|
||||
|
||||
/* ========== API Tokens ========== */
|
||||
|
||||
function fmtTokenDate(iso) {
|
||||
|
||||
@@ -481,6 +481,15 @@
|
||||
"update_available": "New version available",
|
||||
"download_update": "Download update",
|
||||
"up_to_date": "You have the latest version",
|
||||
"apply_update": "Install update",
|
||||
"applying_update": "Updating…",
|
||||
"apply_update_confirm": "Install update from git.evilfox.cc and restart the panel?",
|
||||
"update_restarting": "Updated. Restarting panel…",
|
||||
"update_no_target": "No target version. Check for updates first.",
|
||||
"auto_update_hint": "Auto-update pulls the release tag from git.evilfox.cc (git checkout required).",
|
||||
"auto_update_ready": "Git auto-update is available for this install.",
|
||||
"auto_update_docker": "Docker install: rebuild/pull image, or use a git checkout for one-click update.",
|
||||
"auto_update_manual": "One-click update needs a git clone. You can still download a release.",
|
||||
"warp_hint": "WARP routes this host outbound through Cloudflare. It does not create a public panel URL like Quick Tunnel or ngrok.",
|
||||
"warp_install_hint": "Install the official Cloudflare WARP client first, then restart the panel.",
|
||||
"warp_install_required": "Install WARP first",
|
||||
@@ -496,6 +505,23 @@
|
||||
"warp_status_not_registered": "Cloudflare WARP is installed but not registered yet. Connect will try to register automatically.",
|
||||
"warp_status_service_unavailable": "Cloudflare WARP service is not available. Make sure warp-svc is running.",
|
||||
"warp_status_error": "Cloudflare WARP returned an error.",
|
||||
"nordvpn_hint": "NordVPN routes this host outbound through NordVPN servers. It does not create a public panel URL like Quick Tunnel or ngrok. Run nordvpn login on the host once before connecting.",
|
||||
"nordvpn_install_hint": "Install the official NordVPN client/CLI on this host, run nordvpn login, then restart the panel.",
|
||||
"nordvpn_install_required": "Install NordVPN first",
|
||||
"nordvpn_connect": "Connect NordVPN",
|
||||
"nordvpn_disconnect": "Disconnect",
|
||||
"nordvpn_connected": "NordVPN connected",
|
||||
"nordvpn_disconnected": "NordVPN disconnected",
|
||||
"nordvpn_status_unknown": "NordVPN status is unknown.",
|
||||
"nordvpn_status_not_installed": "NordVPN CLI is not installed on this host.",
|
||||
"nordvpn_status_connected": "NordVPN is connected.",
|
||||
"nordvpn_status_connecting": "NordVPN is connecting.",
|
||||
"nordvpn_status_disconnected": "NordVPN is disconnected.",
|
||||
"nordvpn_status_not_logged_in": "NordVPN is installed but not logged in. Run nordvpn login on this host.",
|
||||
"nordvpn_status_service_unavailable": "NordVPN daemon is not available. Make sure nordvpnd is running.",
|
||||
"nordvpn_status_error": "NordVPN returned an error.",
|
||||
"nordvpn_country_placeholder": "Country (optional, e.g. Germany or de)",
|
||||
"nordvpn_city_placeholder": "City (optional, e.g. Berlin)",
|
||||
"install_starting": "Starting installation...",
|
||||
"server_check_complete": "Check completed",
|
||||
"server_connection_error": "Connection error",
|
||||
|
||||
@@ -448,6 +448,23 @@
|
||||
"warp_status_not_registered": "Cloudflare WARP is installed but not registered yet. Connect will try to register automatically.",
|
||||
"warp_status_service_unavailable": "Cloudflare WARP service is not available. Make sure warp-svc is running.",
|
||||
"warp_status_error": "Cloudflare WARP returned an error.",
|
||||
"nordvpn_hint": "NordVPN routes this host outbound through NordVPN servers. It does not create a public panel URL like Quick Tunnel or ngrok. Run nordvpn login on the host once before connecting.",
|
||||
"nordvpn_install_hint": "Install the official NordVPN client/CLI on this host, run nordvpn login, then restart the panel.",
|
||||
"nordvpn_install_required": "Install NordVPN first",
|
||||
"nordvpn_connect": "Connect NordVPN",
|
||||
"nordvpn_disconnect": "Disconnect",
|
||||
"nordvpn_connected": "NordVPN connected",
|
||||
"nordvpn_disconnected": "NordVPN disconnected",
|
||||
"nordvpn_status_unknown": "NordVPN status is unknown.",
|
||||
"nordvpn_status_not_installed": "NordVPN CLI is not installed on this host.",
|
||||
"nordvpn_status_connected": "NordVPN is connected.",
|
||||
"nordvpn_status_connecting": "NordVPN is connecting.",
|
||||
"nordvpn_status_disconnected": "NordVPN is disconnected.",
|
||||
"nordvpn_status_not_logged_in": "NordVPN is installed but not logged in. Run nordvpn login on this host.",
|
||||
"nordvpn_status_service_unavailable": "NordVPN daemon is not available. Make sure nordvpnd is running.",
|
||||
"nordvpn_status_error": "NordVPN returned an error.",
|
||||
"nordvpn_country_placeholder": "Country (optional, e.g. Germany or de)",
|
||||
"nordvpn_city_placeholder": "City (optional, e.g. Berlin)",
|
||||
"install_starting": "Starting installation...",
|
||||
"server_check_complete": "Check completed",
|
||||
"server_connection_error": "Connection error",
|
||||
@@ -519,4 +536,21 @@
|
||||
"xui_server_select_label": "سرور 3x-ui",
|
||||
"xui_server_select_hint": "پنل 3x-ui که URL اشتراک میدهد را انتخاب کنید.",
|
||||
"xui_server_delete_confirm": "این سرور 3x-ui حذف شود؟"
|
||||
,
|
||||
"about_title": "About & Updates",
|
||||
"current_version": "Current version",
|
||||
"check_updates": "Check for updates",
|
||||
"checking_updates": "Checking...",
|
||||
"update_available": "New version available",
|
||||
"download_update": "Download update",
|
||||
"up_to_date": "You have the latest version",
|
||||
"apply_update": "Install update",
|
||||
"applying_update": "Updating…",
|
||||
"apply_update_confirm": "Install update from git.evilfox.cc and restart the panel?",
|
||||
"update_restarting": "Updated. Restarting panel…",
|
||||
"update_no_target": "No target version. Check for updates first.",
|
||||
"auto_update_hint": "Auto-update pulls the release tag from git.evilfox.cc (git checkout required).",
|
||||
"auto_update_ready": "Git auto-update is available for this install.",
|
||||
"auto_update_docker": "Docker install: rebuild/pull image, or use a git checkout for one-click update.",
|
||||
"auto_update_manual": "One-click update needs a git clone. You can still download a release."
|
||||
}
|
||||
|
||||
@@ -448,6 +448,23 @@
|
||||
"warp_status_not_registered": "Cloudflare WARP is installed but not registered yet. Connect will try to register automatically.",
|
||||
"warp_status_service_unavailable": "Cloudflare WARP service is not available. Make sure warp-svc is running.",
|
||||
"warp_status_error": "Cloudflare WARP returned an error.",
|
||||
"nordvpn_hint": "NordVPN routes this host outbound through NordVPN servers. It does not create a public panel URL like Quick Tunnel or ngrok. Run nordvpn login on the host once before connecting.",
|
||||
"nordvpn_install_hint": "Install the official NordVPN client/CLI on this host, run nordvpn login, then restart the panel.",
|
||||
"nordvpn_install_required": "Install NordVPN first",
|
||||
"nordvpn_connect": "Connect NordVPN",
|
||||
"nordvpn_disconnect": "Disconnect",
|
||||
"nordvpn_connected": "NordVPN connected",
|
||||
"nordvpn_disconnected": "NordVPN disconnected",
|
||||
"nordvpn_status_unknown": "NordVPN status is unknown.",
|
||||
"nordvpn_status_not_installed": "NordVPN CLI is not installed on this host.",
|
||||
"nordvpn_status_connected": "NordVPN is connected.",
|
||||
"nordvpn_status_connecting": "NordVPN is connecting.",
|
||||
"nordvpn_status_disconnected": "NordVPN is disconnected.",
|
||||
"nordvpn_status_not_logged_in": "NordVPN is installed but not logged in. Run nordvpn login on this host.",
|
||||
"nordvpn_status_service_unavailable": "NordVPN daemon is not available. Make sure nordvpnd is running.",
|
||||
"nordvpn_status_error": "NordVPN returned an error.",
|
||||
"nordvpn_country_placeholder": "Country (optional, e.g. Germany or de)",
|
||||
"nordvpn_city_placeholder": "City (optional, e.g. Berlin)",
|
||||
"install_starting": "Starting installation...",
|
||||
"server_check_complete": "Check completed",
|
||||
"server_connection_error": "Connection error",
|
||||
@@ -519,4 +536,21 @@
|
||||
"xui_server_select_label": "Serveur 3x-ui",
|
||||
"xui_server_select_hint": "Choisissez le panneau 3x-ui qui émettra l\u0027URL d\u0027abonnement.",
|
||||
"xui_server_delete_confirm": "Supprimer ce serveur 3x-ui ?"
|
||||
,
|
||||
"about_title": "About & Updates",
|
||||
"current_version": "Current version",
|
||||
"check_updates": "Check for updates",
|
||||
"checking_updates": "Checking...",
|
||||
"update_available": "New version available",
|
||||
"download_update": "Download update",
|
||||
"up_to_date": "You have the latest version",
|
||||
"apply_update": "Install update",
|
||||
"applying_update": "Updating…",
|
||||
"apply_update_confirm": "Install update from git.evilfox.cc and restart the panel?",
|
||||
"update_restarting": "Updated. Restarting panel…",
|
||||
"update_no_target": "No target version. Check for updates first.",
|
||||
"auto_update_hint": "Auto-update pulls the release tag from git.evilfox.cc (git checkout required).",
|
||||
"auto_update_ready": "Git auto-update is available for this install.",
|
||||
"auto_update_docker": "Docker install: rebuild/pull image, or use a git checkout for one-click update.",
|
||||
"auto_update_manual": "One-click update needs a git clone. You can still download a release."
|
||||
}
|
||||
|
||||
@@ -481,6 +481,15 @@
|
||||
"update_available": "Доступна новая версия",
|
||||
"download_update": "Скачать обновление",
|
||||
"up_to_date": "У вас установлена последняя версия",
|
||||
"apply_update": "Установить обновление",
|
||||
"applying_update": "Обновление…",
|
||||
"apply_update_confirm": "Установить обновление с git.evilfox.cc и перезапустить панель?",
|
||||
"update_restarting": "Обновлено. Перезапуск панели…",
|
||||
"update_no_target": "Нет целевой версии. Сначала проверьте обновления.",
|
||||
"auto_update_hint": "Автообновление тянет тег релиза с git.evilfox.cc (нужен git clone панели).",
|
||||
"auto_update_ready": "Для этой установки доступно автообновление через git.",
|
||||
"auto_update_docker": "Docker: пересоберите/подтяните образ или используйте git clone для обновления в один клик.",
|
||||
"auto_update_manual": "Обновление в один клик требует git clone. Можно скачать релиз вручную.",
|
||||
"warp_hint": "WARP направляет исходящий трафик этого хоста через Cloudflare. Он не создаёт публичный URL панели как Quick Tunnel или ngrok.",
|
||||
"warp_install_hint": "Сначала установите официальный клиент Cloudflare WARP, затем перезапустите панель.",
|
||||
"warp_install_required": "Сначала установите WARP",
|
||||
@@ -496,6 +505,23 @@
|
||||
"warp_status_not_registered": "Cloudflare WARP установлен, но ещё не зарегистрирован. Подключение попробует зарегистрировать его автоматически.",
|
||||
"warp_status_service_unavailable": "Сервис Cloudflare WARP недоступен. Убедитесь, что warp-svc запущен.",
|
||||
"warp_status_error": "Cloudflare WARP вернул ошибку.",
|
||||
"nordvpn_hint": "NordVPN направляет исходящий трафик этого хоста через серверы NordVPN. Не создаёт публичный URL панели как Quick Tunnel или ngrok. Перед подключением один раз выполните nordvpn login на хосте.",
|
||||
"nordvpn_install_hint": "Установите официальный клиент/CLI NordVPN на этом хосте, выполните nordvpn login и перезапустите панель.",
|
||||
"nordvpn_install_required": "Сначала установите NordVPN",
|
||||
"nordvpn_connect": "Подключить NordVPN",
|
||||
"nordvpn_disconnect": "Отключить",
|
||||
"nordvpn_connected": "NordVPN подключён",
|
||||
"nordvpn_disconnected": "NordVPN отключён",
|
||||
"nordvpn_status_unknown": "Статус NordVPN неизвестен.",
|
||||
"nordvpn_status_not_installed": "CLI NordVPN не установлен на этом хосте.",
|
||||
"nordvpn_status_connected": "NordVPN подключён.",
|
||||
"nordvpn_status_connecting": "NordVPN подключается.",
|
||||
"nordvpn_status_disconnected": "NordVPN отключён.",
|
||||
"nordvpn_status_not_logged_in": "NordVPN установлен, но не выполнен вход. Запустите nordvpn login на хосте.",
|
||||
"nordvpn_status_service_unavailable": "Демон NordVPN недоступен. Убедитесь, что nordvpnd запущен.",
|
||||
"nordvpn_status_error": "NordVPN вернул ошибку.",
|
||||
"nordvpn_country_placeholder": "Страна (необяз., напр. Germany или de)",
|
||||
"nordvpn_city_placeholder": "Город (необяз., напр. Berlin)",
|
||||
"install_starting": "Начинаем установку...",
|
||||
"server_check_complete": "Проверка завершена",
|
||||
"server_connection_error": "Ошибка подключения",
|
||||
|
||||
@@ -448,6 +448,23 @@
|
||||
"warp_status_not_registered": "Cloudflare WARP is installed but not registered yet. Connect will try to register automatically.",
|
||||
"warp_status_service_unavailable": "Cloudflare WARP service is not available. Make sure warp-svc is running.",
|
||||
"warp_status_error": "Cloudflare WARP returned an error.",
|
||||
"nordvpn_hint": "NordVPN routes this host outbound through NordVPN servers. It does not create a public panel URL like Quick Tunnel or ngrok. Run nordvpn login on the host once before connecting.",
|
||||
"nordvpn_install_hint": "Install the official NordVPN client/CLI on this host, run nordvpn login, then restart the panel.",
|
||||
"nordvpn_install_required": "Install NordVPN first",
|
||||
"nordvpn_connect": "Connect NordVPN",
|
||||
"nordvpn_disconnect": "Disconnect",
|
||||
"nordvpn_connected": "NordVPN connected",
|
||||
"nordvpn_disconnected": "NordVPN disconnected",
|
||||
"nordvpn_status_unknown": "NordVPN status is unknown.",
|
||||
"nordvpn_status_not_installed": "NordVPN CLI is not installed on this host.",
|
||||
"nordvpn_status_connected": "NordVPN is connected.",
|
||||
"nordvpn_status_connecting": "NordVPN is connecting.",
|
||||
"nordvpn_status_disconnected": "NordVPN is disconnected.",
|
||||
"nordvpn_status_not_logged_in": "NordVPN is installed but not logged in. Run nordvpn login on this host.",
|
||||
"nordvpn_status_service_unavailable": "NordVPN daemon is not available. Make sure nordvpnd is running.",
|
||||
"nordvpn_status_error": "NordVPN returned an error.",
|
||||
"nordvpn_country_placeholder": "Country (optional, e.g. Germany or de)",
|
||||
"nordvpn_city_placeholder": "City (optional, e.g. Berlin)",
|
||||
"install_starting": "Starting installation...",
|
||||
"server_check_complete": "Check completed",
|
||||
"server_connection_error": "Connection error",
|
||||
@@ -519,4 +536,21 @@
|
||||
"xui_server_select_label": "3x-ui 服务器",
|
||||
"xui_server_select_hint": "选择签发订阅 URL 的 3x-ui 面板。",
|
||||
"xui_server_delete_confirm": "从面板删除此 3x-ui 服务器?"
|
||||
,
|
||||
"about_title": "About & Updates",
|
||||
"current_version": "Current version",
|
||||
"check_updates": "Check for updates",
|
||||
"checking_updates": "Checking...",
|
||||
"update_available": "New version available",
|
||||
"download_update": "Download update",
|
||||
"up_to_date": "You have the latest version",
|
||||
"apply_update": "Install update",
|
||||
"applying_update": "Updating…",
|
||||
"apply_update_confirm": "Install update from git.evilfox.cc and restart the panel?",
|
||||
"update_restarting": "Updated. Restarting panel…",
|
||||
"update_no_target": "No target version. Check for updates first.",
|
||||
"auto_update_hint": "Auto-update pulls the release tag from git.evilfox.cc (git checkout required).",
|
||||
"auto_update_ready": "Git auto-update is available for this install.",
|
||||
"auto_update_docker": "Docker install: rebuild/pull image, or use a git checkout for one-click update.",
|
||||
"auto_update_manual": "One-click update needs a git clone. You can still download a release."
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user