579 строки
24 KiB
Python
579 строки
24 KiB
Python
import os
|
|
import subprocess
|
|
import configparser
|
|
import json
|
|
import pytz
|
|
import socket
|
|
import logging
|
|
import tempfile
|
|
from datetime import datetime, timedelta
|
|
|
|
EXPIRATIONS_FILE = 'files/expirations.json'
|
|
PAYMENTS_FILE = 'files/payments.json'
|
|
ADMINS_FILE = 'files/admins.json'
|
|
PROMOCODES_FILE = 'files/promocodes.json'
|
|
USER_TELEGRAM_IDS_FILE = 'files/user_telegram_ids.json'
|
|
UTC = pytz.UTC
|
|
|
|
logging.basicConfig(level=logging.INFO)
|
|
logger = logging.getLogger(__name__)
|
|
|
|
def get_amnezia_container():
|
|
cmd = "docker ps --filter 'name=amnezia-awg' --format '{{.Names}}'"
|
|
try:
|
|
output = subprocess.check_output(cmd, shell=True).decode().strip()
|
|
if output:
|
|
return output
|
|
else:
|
|
logger.error("Docker-контейнер 'amnezia-awg' не найден или не запущен.")
|
|
exit(1)
|
|
except subprocess.CalledProcessError:
|
|
logger.error("Не удалось выполнить Docker-команду для поиска контейнера 'amnezia-awg'.")
|
|
exit(1)
|
|
|
|
def create_config(path='files/setting.ini'):
|
|
os.makedirs(os.path.dirname(path), exist_ok=True)
|
|
config = configparser.ConfigParser()
|
|
config.add_section("setting")
|
|
|
|
bot_token = input('Введите токен Telegram бота: ').strip()
|
|
admin_ids_input = input('Введите Telegram ID администраторов через запятую (например, 12345, 67890): ').strip()
|
|
admin_ids = [admin_id.strip() for admin_id in admin_ids_input.split(',')]
|
|
|
|
docker_container = get_amnezia_container()
|
|
logger.info(f"Найден Docker-контейнер: {docker_container}")
|
|
|
|
cmd = f"docker exec {docker_container} find / -name wg0.conf"
|
|
try:
|
|
wg_config_file = subprocess.check_output(cmd, shell=True).decode().strip()
|
|
if not wg_config_file:
|
|
logger.warning("Не удалось найти файл конфигурации WireGuard 'wg0.conf'. Используется путь по умолчанию.")
|
|
wg_config_file = '/opt/amnezia/awg/wg0.conf'
|
|
except subprocess.CalledProcessError:
|
|
logger.warning("Ошибка при определении пути к файлу конфигурации WireGuard. Используется путь по умолчанию.")
|
|
wg_config_file = '/opt/amnezia/awg/wg0.conf'
|
|
|
|
try:
|
|
endpoint = subprocess.check_output("curl -s https://api.ipify.org", shell=True).decode().strip()
|
|
socket.inet_aton(endpoint)
|
|
except (subprocess.CalledProcessError, socket.error):
|
|
logger.error("Ошибка при определении внешнего IP-адреса сервера.")
|
|
endpoint = input('Не удалось автоматически определить внешний IP-адрес. Введите его вручную: ').strip()
|
|
|
|
config.set("setting", "bot_token", bot_token)
|
|
config.set("setting", "admin_ids", ','.join(admin_ids))
|
|
config.set("setting", "docker_container", docker_container)
|
|
config.set("setting", "wg_config_file", wg_config_file)
|
|
config.set("setting", "endpoint", endpoint)
|
|
|
|
with open(path, "w") as config_file:
|
|
config.write(config_file)
|
|
logger.info(f"Конфигурация сохранена в {path}")
|
|
|
|
save_admins(admin_ids)
|
|
|
|
def ensure_peer_names():
|
|
setting = get_config()
|
|
wg_config_file = setting['wg_config_file']
|
|
docker_container = setting['docker_container']
|
|
|
|
clientsTable = get_full_clients_table()
|
|
clients_dict = {client['clientId']: client['userData'] for client in clientsTable}
|
|
|
|
try:
|
|
cmd = f"docker exec -i {docker_container} cat {wg_config_file}"
|
|
config_content = subprocess.check_output(cmd, shell=True).decode('utf-8')
|
|
|
|
lines = config_content.splitlines()
|
|
new_config_lines = []
|
|
i = 0
|
|
modified = False
|
|
updated_clientsTable = False
|
|
|
|
while i < len(lines):
|
|
line = lines[i]
|
|
if line.strip().startswith('[Peer]'):
|
|
peer_block = [line]
|
|
i += 1
|
|
has_name_comment = False
|
|
client_public_key = ''
|
|
while i < len(lines) and lines[i].strip() != '':
|
|
peer_line = lines[i]
|
|
if peer_line.strip().startswith('#'):
|
|
has_name_comment = True
|
|
elif peer_line.strip().startswith('PublicKey ='):
|
|
client_public_key = peer_line.strip().split('=', 1)[1].strip()
|
|
peer_block.append(peer_line)
|
|
i += 1
|
|
if not has_name_comment:
|
|
if client_public_key in clients_dict:
|
|
client_name = clients_dict[client_public_key].get('clientName', f"client_{client_public_key[:6]}")
|
|
else:
|
|
client_name = f"client_{client_public_key[:6]}"
|
|
clients_dict[client_public_key] = {
|
|
'clientName': client_name,
|
|
'creationDate': datetime.now().isoformat()
|
|
}
|
|
updated_clientsTable = True
|
|
peer_block.insert(1, f'# {client_name}')
|
|
modified = True
|
|
new_config_lines.extend(peer_block)
|
|
if i < len(lines):
|
|
new_config_lines.append(lines[i])
|
|
i += 1
|
|
else:
|
|
new_config_lines.append(line)
|
|
i += 1
|
|
|
|
if modified:
|
|
new_config_content = '\n'.join(new_config_lines)
|
|
with tempfile.NamedTemporaryFile(mode='w', delete=False) as temp_config:
|
|
temp_config.write(new_config_content)
|
|
temp_config_path = temp_config.name
|
|
docker_cmd = f"docker cp {temp_config_path} {docker_container}:{wg_config_file}"
|
|
subprocess.check_call(docker_cmd, shell=True)
|
|
os.remove(temp_config_path)
|
|
logger.info("Конфигурационный файл WireGuard обновлён с добавлением комментариев # name_client.")
|
|
|
|
if updated_clientsTable:
|
|
clientsTable_list = [{'clientId': key, 'userData': value} for key, value in clients_dict.items()]
|
|
with tempfile.NamedTemporaryFile(mode='w', delete=False) as temp_clientsTable:
|
|
json.dump(clientsTable_list, temp_clientsTable)
|
|
temp_clientsTable_path = temp_clientsTable.name
|
|
docker_cmd = f"docker cp {temp_clientsTable_path} {docker_container}:/opt/amnezia/awg/clientsTable"
|
|
subprocess.check_call(docker_cmd, shell=True)
|
|
os.remove(temp_clientsTable_path)
|
|
logger.info("clientsTable обновлён с новыми клиентами.")
|
|
except Exception as e:
|
|
logger.error(f"Ошибка при обновлении комментариев в конфигурации WireGuard: {e}")
|
|
|
|
def get_config(path='files/setting.ini'):
|
|
if not os.path.exists(path):
|
|
create_config(path)
|
|
|
|
config = configparser.ConfigParser()
|
|
config.read(path)
|
|
out = {}
|
|
for key in config['setting']:
|
|
if key == 'admin_ids':
|
|
out[key] = config['setting'][key].split(',')
|
|
else:
|
|
out[key] = config['setting'][key]
|
|
return out
|
|
|
|
def save_client_endpoint(username, endpoint):
|
|
os.makedirs('files/connections', exist_ok=True)
|
|
file_path = os.path.join('files', 'connections', f'{username}_ip.json')
|
|
timestamp = datetime.now().strftime('%d.%m.%Y %H:%M')
|
|
ip_address = endpoint.split(':')[0]
|
|
|
|
if os.path.exists(file_path):
|
|
with open(file_path, 'r') as f:
|
|
try:
|
|
data = json.load(f)
|
|
except json.JSONDecodeError:
|
|
data = {}
|
|
else:
|
|
data = {}
|
|
|
|
data[ip_address] = timestamp
|
|
|
|
with open(file_path, 'w') as f:
|
|
json.dump(data, f)
|
|
|
|
def root_add(id_user, ipv6=False):
|
|
setting = get_config()
|
|
endpoint = setting['endpoint']
|
|
wg_config_file = setting['wg_config_file']
|
|
docker_container = setting['docker_container']
|
|
|
|
clients = get_client_list()
|
|
client_entry = next((c for c in clients if c[0] == id_user), None)
|
|
if client_entry:
|
|
logger.info(f"Пользователь {id_user} уже существует. Генерация конфигурации невозможна без приватного ключа.")
|
|
return False
|
|
else:
|
|
cmd = ["./newclient.sh", id_user, endpoint, wg_config_file, docker_container]
|
|
if subprocess.call(cmd) == 0:
|
|
return True
|
|
return False
|
|
|
|
def get_clients_from_clients_table():
|
|
setting = get_config()
|
|
docker_container = setting['docker_container']
|
|
clients_table_path = '/opt/amnezia/awg/clientsTable'
|
|
try:
|
|
cmd = f"docker exec -i {docker_container} cat {clients_table_path}"
|
|
call = subprocess.check_output(cmd, shell=True)
|
|
clients_table = json.loads(call.decode('utf-8'))
|
|
client_map = {client['clientId']: client['userData']['clientName'] for client in clients_table}
|
|
return client_map
|
|
except subprocess.CalledProcessError as e:
|
|
logger.error(f"Ошибка при получении clientsTable: {e}")
|
|
return {}
|
|
except json.JSONDecodeError:
|
|
logger.error("Ошибка при разборе clientsTable JSON.")
|
|
return {}
|
|
|
|
def parse_client_name(full_name):
|
|
return full_name.split('[')[0].strip()
|
|
|
|
def get_client_list():
|
|
setting = get_config()
|
|
wg_config_file = setting['wg_config_file']
|
|
docker_container = setting['docker_container']
|
|
|
|
client_map = get_clients_from_clients_table()
|
|
|
|
try:
|
|
cmd = f"docker exec -i {docker_container} cat {wg_config_file}"
|
|
call = subprocess.check_output(cmd, shell=True)
|
|
config_content = call.decode('utf-8')
|
|
|
|
clients = []
|
|
lines = config_content.splitlines()
|
|
i = 0
|
|
while i < len(lines):
|
|
line = lines[i].strip()
|
|
if line.startswith('[Peer]'):
|
|
client_public_key = ''
|
|
allowed_ips = ''
|
|
client_name = 'Unknown'
|
|
i += 1
|
|
while i < len(lines):
|
|
peer_line = lines[i].strip()
|
|
if peer_line == '':
|
|
break
|
|
if peer_line.startswith('#'):
|
|
full_client_name = peer_line[1:].strip()
|
|
client_name = parse_client_name(full_client_name)
|
|
elif peer_line.startswith('PublicKey ='):
|
|
client_public_key = peer_line.split('=', 1)[1].strip()
|
|
elif peer_line.startswith('AllowedIPs ='):
|
|
allowed_ips = peer_line.split('=', 1)[1].strip()
|
|
i += 1
|
|
client_name = client_map.get(client_public_key, client_name if 'client_name' in locals() else 'Unknown')
|
|
clients.append([client_name, client_public_key, allowed_ips])
|
|
else:
|
|
i += 1
|
|
return clients
|
|
except subprocess.CalledProcessError as e:
|
|
logger.error(f"Ошибка при получении списка клиентов: {e}")
|
|
return []
|
|
|
|
def get_active_list():
|
|
setting = get_config()
|
|
docker_container = setting['docker_container']
|
|
|
|
client_map = get_clients_from_clients_table()
|
|
|
|
try:
|
|
clients = get_client_list()
|
|
client_key_map = {client[1]: client[0] for client in clients}
|
|
|
|
cmd = f"docker exec -i {docker_container} wg show"
|
|
call = subprocess.check_output(cmd, shell=True)
|
|
wg_output = call.decode('utf-8')
|
|
|
|
active_clients = []
|
|
current_peer = {}
|
|
for line in wg_output.splitlines():
|
|
line = line.strip()
|
|
if line.startswith('peer:'):
|
|
peer_public_key = line.split('peer: ')[1].strip()
|
|
current_peer = {'public_key': peer_public_key}
|
|
elif line.startswith('endpoint:') and 'public_key' in current_peer:
|
|
current_peer['endpoint'] = line.split('endpoint: ')[1].strip()
|
|
elif line.startswith('latest handshake:') and 'public_key' in current_peer:
|
|
current_peer['latest_handshake'] = line.split('latest handshake: ')[1].strip()
|
|
elif line.startswith('transfer:') and 'public_key' in current_peer:
|
|
current_peer['transfer'] = line.split('transfer: ')[1].strip()
|
|
elif line == '' and 'public_key' in current_peer:
|
|
last_handshake = current_peer.get('latest_handshake', '').lower()
|
|
if last_handshake not in ['never', 'нет данных', '-']:
|
|
peer_public_key = current_peer.get('public_key')
|
|
if peer_public_key in client_key_map:
|
|
username = client_key_map[peer_public_key]
|
|
last_time = current_peer.get('latest_handshake', 'Нет данных')
|
|
transfer = current_peer.get('transfer', 'Нет данных')
|
|
endpoint = current_peer.get('endpoint', 'Нет данных')
|
|
save_client_endpoint(username, endpoint)
|
|
active_clients.append([username, last_time, transfer, endpoint])
|
|
current_peer = {}
|
|
|
|
if 'public_key' in current_peer:
|
|
last_handshake = current_peer.get('latest_handshake', '').lower()
|
|
if last_handshake not in ['never', 'нет данных', '-']:
|
|
peer_public_key = current_peer.get('public_key')
|
|
if peer_public_key in client_key_map:
|
|
username = client_key_map[peer_public_key]
|
|
last_time = current_peer.get('latest_handshake', 'Нет данных')
|
|
transfer = current_peer.get('transfer', 'Нет данных')
|
|
endpoint = current_peer.get('endpoint', 'Нет данных')
|
|
save_client_endpoint(username, endpoint)
|
|
active_clients.append([username, last_time, transfer, endpoint])
|
|
|
|
return active_clients
|
|
|
|
except subprocess.CalledProcessError as e:
|
|
logger.error(f"Ошибка при получении активных клиентов: {e}")
|
|
return []
|
|
|
|
def deactive_user_db(username):
|
|
setting = get_config()
|
|
docker_container = setting['docker_container']
|
|
try:
|
|
cmd = f"./removeclient.sh {username} {docker_container}"
|
|
subprocess.check_call(cmd, shell=True)
|
|
logger.info(f"Пользователь {username} удалён.")
|
|
return True
|
|
except subprocess.CalledProcessError as e:
|
|
logger.error(f"Ошибка при удалении пользователя {username}: {e}")
|
|
return False
|
|
|
|
def save_admins(admin_ids):
|
|
os.makedirs(os.path.dirname(ADMINS_FILE), exist_ok=True)
|
|
with open(ADMINS_FILE, 'w') as f:
|
|
json.dump(admin_ids, f)
|
|
|
|
def add_admin(admin_id):
|
|
admin_ids = get_admins()
|
|
if str(admin_id) not in admin_ids:
|
|
admin_ids.append(str(admin_id))
|
|
save_admins(admin_ids)
|
|
|
|
def remove_admin(admin_id):
|
|
admin_ids = get_admins()
|
|
if str(admin_id) in admin_ids:
|
|
admin_ids.remove(str(admin_id))
|
|
save_admins(admin_ids)
|
|
|
|
def get_admins():
|
|
if os.path.exists(ADMINS_FILE):
|
|
with open(ADMINS_FILE, 'r') as f:
|
|
try:
|
|
return json.load(f)
|
|
except json.JSONDecodeError:
|
|
logger.error("Ошибка при разборе файла admins.json.")
|
|
return []
|
|
return []
|
|
|
|
def get_user_expiration(username):
|
|
if os.path.exists(EXPIRATIONS_FILE):
|
|
with open(EXPIRATIONS_FILE, 'r') as f:
|
|
try:
|
|
expirations = json.load(f)
|
|
expiration_str = expirations.get(username)
|
|
if expiration_str:
|
|
return datetime.fromisoformat(expiration_str).astimezone(UTC)
|
|
except json.JSONDecodeError:
|
|
logger.error("Ошибка при разборе файла expirations.json.")
|
|
return None
|
|
|
|
def set_user_expiration(username, expiration_date, traffic_limit):
|
|
os.makedirs(os.path.dirname(EXPIRATIONS_FILE), exist_ok=True)
|
|
expirations = {}
|
|
if os.path.exists(EXPIRATIONS_FILE):
|
|
with open(EXPIRATIONS_FILE, 'r') as f:
|
|
try:
|
|
expirations = json.load(f)
|
|
except json.JSONDecodeError:
|
|
logger.error("Ошибка при разборе файла expirations.json.")
|
|
expirations[username] = expiration_date.isoformat()
|
|
with open(EXPIRATIONS_FILE, 'w') as f:
|
|
json.dump(expirations, f)
|
|
|
|
def remove_user_expiration(username):
|
|
if os.path.exists(EXPIRATIONS_FILE):
|
|
with open(EXPIRATIONS_FILE, 'r') as f:
|
|
try:
|
|
expirations = json.load(f)
|
|
if username in expirations:
|
|
del expirations[username]
|
|
with open(EXPIRATIONS_FILE, 'w') as f:
|
|
json.dump(expirations, f)
|
|
except json.JSONDecodeError:
|
|
logger.error("Ошибка при разборе файла expirations.json.")
|
|
|
|
def set_user_telegram_id(username, telegram_id):
|
|
os.makedirs(os.path.dirname(USER_TELEGRAM_IDS_FILE), exist_ok=True)
|
|
telegram_ids = {}
|
|
if os.path.exists(USER_TELEGRAM_IDS_FILE):
|
|
with open(USER_TELEGRAM_IDS_FILE, 'r') as f:
|
|
try:
|
|
telegram_ids = json.load(f)
|
|
except json.JSONDecodeError:
|
|
logger.error("Ошибка при разборе файла user_telegram_ids.json.")
|
|
telegram_ids[username] = str(telegram_id)
|
|
with open(USER_TELEGRAM_IDS_FILE, 'w') as f:
|
|
json.dump(telegram_ids, f)
|
|
|
|
def get_user_telegram_id(username):
|
|
if os.path.exists(USER_TELEGRAM_IDS_FILE):
|
|
with open(USER_TELEGRAM_IDS_FILE, 'r') as f:
|
|
try:
|
|
telegram_ids = json.load(f)
|
|
return telegram_ids.get(username)
|
|
except json.JSONDecodeError:
|
|
logger.error("Ошибка при разборе файла user_telegram_ids.json.")
|
|
return None
|
|
|
|
def clear_old_keys(before_date):
|
|
try:
|
|
before = datetime.fromisoformat(before_date).astimezone(UTC)
|
|
except ValueError:
|
|
logger.error(f"Неверный формат даты: {before_date}")
|
|
return False
|
|
|
|
clients = get_client_list()
|
|
expirations = {}
|
|
if os.path.exists(EXPIRATIONS_FILE):
|
|
with open(EXPIRATIONS_FILE, 'r') as f:
|
|
try:
|
|
expirations = json.load(f)
|
|
except json.JSONDecodeError:
|
|
logger.error("Ошибка при разборе файла expirations.json.")
|
|
|
|
removed = False
|
|
for client in clients:
|
|
username = client[0]
|
|
expiration_str = expirations.get(username)
|
|
if expiration_str:
|
|
try:
|
|
expiration = datetime.fromisoformat(expiration_str).astimezone(UTC)
|
|
if expiration < before:
|
|
if deactive_user_db(username):
|
|
remove_user_expiration(username)
|
|
user_path = os.path.join('users', username)
|
|
if os.path.exists(user_path):
|
|
import shutil
|
|
shutil.rmtree(user_path)
|
|
logger.info(f"Удалён старый ключ для {username} с истёкшей датой {expiration_str}")
|
|
removed = True
|
|
except ValueError:
|
|
logger.error(f"Неверный формат даты истечения для {username}: {expiration_str}")
|
|
return removed
|
|
|
|
def add_payment(user_id, payment_id, amount, status):
|
|
os.makedirs(os.path.dirname(PAYMENTS_FILE), exist_ok=True)
|
|
payments = {}
|
|
if os.path.exists(PAYMENTS_FILE):
|
|
with open(PAYMENTS_FILE, 'r') as f:
|
|
try:
|
|
payments = json.load(f)
|
|
except json.JSONDecodeError:
|
|
logger.error("Ошибка при разборе файла payments.json.")
|
|
payments[payment_id] = {
|
|
'user_id': user_id,
|
|
'amount': amount,
|
|
'status': status,
|
|
'created_at': datetime.now(UTC).isoformat()
|
|
}
|
|
with open(PAYMENTS_FILE, 'w') as f:
|
|
json.dump(payments, f)
|
|
|
|
def update_payment_status(payment_id, status):
|
|
if os.path.exists(PAYMENTS_FILE):
|
|
with open(PAYMENTS_FILE, 'r') as f:
|
|
try:
|
|
payments = json.load(f)
|
|
if payment_id in payments:
|
|
payments[payment_id]['status'] = status
|
|
with open(PAYMENTS_FILE, 'w') as f:
|
|
json.dump(payments, f)
|
|
return True
|
|
except json.JSONDecodeError:
|
|
logger.error("Ошибка при разборе файла payments.json.")
|
|
return False
|
|
|
|
def get_pending_payments():
|
|
if os.path.exists(PAYMENTS_FILE):
|
|
with open(PAYMENTS_FILE, 'r') as f:
|
|
try:
|
|
payments = json.load(f)
|
|
return [
|
|
(p['user_id'], payment_id, p['amount'], p['status'])
|
|
for payment_id, p in payments.items()
|
|
if p['status'] == 'pending'
|
|
]
|
|
except json.JSONDecodeError:
|
|
logger.error("Ошибка при разборе файла payments.json.")
|
|
return []
|
|
|
|
def add_promocode(code, discount, expires_at, max_uses):
|
|
os.makedirs(os.path.dirname(PROMOCODES_FILE), exist_ok=True)
|
|
promocodes = {}
|
|
if os.path.exists(PROMOCODES_FILE):
|
|
with open(PROMOCODES_FILE, 'r') as f:
|
|
try:
|
|
promocodes = json.load(f)
|
|
except json.JSONDecodeError:
|
|
logger.error("Ошибка при разборе файла promocodes.json.")
|
|
if code in promocodes:
|
|
return False
|
|
promocodes[code] = {
|
|
'discount': discount,
|
|
'expires_at': expires_at.isoformat() if expires_at else None,
|
|
'max_uses': max_uses,
|
|
'uses': 0
|
|
}
|
|
with open(PROMOCODES_FILE, 'w') as f:
|
|
json.dump(promocodes, f)
|
|
return True
|
|
|
|
def apply_promocode(code):
|
|
if os.path.exists(PROMOCODES_FILE):
|
|
with open(PROMOCODES_FILE, 'r') as f:
|
|
try:
|
|
promocodes = json.load(f)
|
|
if code in promocodes:
|
|
promo = promocodes[code]
|
|
now = datetime.now(UTC)
|
|
expires_at = datetime.fromisoformat(promo['expires_at']).astimezone(UTC) if promo['expires_at'] else None
|
|
if (not expires_at or now < expires_at) and (promo['max_uses'] is None or promo['uses'] < promo['max_uses']):
|
|
promo['uses'] += 1
|
|
with open(PROMOCODES_FILE, 'w') as f:
|
|
json.dump(promocodes, f)
|
|
return promo['discount']
|
|
except json.JSONDecodeError:
|
|
logger.error("Ошибка при разборе файла promocodes.json.")
|
|
return 0
|
|
|
|
def remove_promocode(code):
|
|
if os.path.exists(PROMOCODES_FILE):
|
|
with open(PROMOCODES_FILE, 'r') as f:
|
|
try:
|
|
promocodes = json.load(f)
|
|
if code in promocodes:
|
|
del promocodes[code]
|
|
with open(PROMOCODES_FILE, 'w') as f:
|
|
json.dump(promocodes, f)
|
|
return True
|
|
except json.JSONDecodeError:
|
|
logger.error("Ошибка при разборе файла promocodes.json.")
|
|
return False
|
|
|
|
def get_promocodes():
|
|
if os.path.exists(PROMOCODES_FILE):
|
|
with open(PROMOCODES_FILE, 'r') as f:
|
|
try:
|
|
return json.load(f)
|
|
except json.JSONDecodeError:
|
|
logger.error("Ошибка при разборе файла promocodes.json.")
|
|
return {}
|
|
|
|
def get_full_clients_table():
|
|
setting = get_config()
|
|
docker_container = setting['docker_container']
|
|
clients_table_path = '/opt/amnezia/awg/clientsTable'
|
|
try:
|
|
cmd = f"docker exec -i {docker_container} cat {clients_table_path}"
|
|
call = subprocess.check_output(cmd, shell=True)
|
|
return json.loads(call.decode('utf-8'))
|
|
except subprocess.CalledProcessError as e:
|
|
logger.error(f"Ошибка при получении clientsTable: {e}")
|
|
return []
|
|
except json.JSONDecodeError:
|
|
logger.error("Ошибка при разборе clientsTable JSON.")
|
|
return []
|