-
Notifications
You must be signed in to change notification settings - Fork 1
/
files.py
135 lines (115 loc) · 6.54 KB
/
files.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
import requests
import os
import shutil
import sys
from datetime import datetime, timedelta
from pytz import timezone
from report import send_tg_message
import asyncio
import json
import zipfile
from settings import output_json_path
# Download a file from a URL
def download_file(url, output_path):
print(f"Downloading {url}")
try:
response = requests.get(url)
with open(output_path, 'wb') as f:
f.write(response.content)
print(f'{output_path}: Archive downloaded successfully.')
with open("serverresponse.txt", 'r') as server_response:
if server_response.read() == '0':
asyncio.run(send_tg_message("Server is up!"))
with open("serverresponse.txt", 'w') as server_response:
server_response.write('1')
except Exception as e:
print(f'Error downloading archive. {e}')
with open("serverresponse.txt", 'r') as server_response:
if server_response.read() == '1':
asyncio.run(send_tg_message("""<b>Server is down</b>
Нагадую, що в репозіторії чекера на гітхаб лежать версії зі зміненим джерелом оновлень. То ж коли і якщо в вас не працює аіо, або сервер Кулера лежить, використовуйте ці версії. Ще раз - нічого не змінено, окрім сервера оновлень. Версії відповідні версіям з пульса https://github.com/rashevskyv/4ifir-checker/tree/main/github
Reminder: versions with a changed update source are available in the checker repository on GitHub. So if AIO doesn't work for you or Cooler's server is down, use thise versions. Once again - nothing has been changed except the update server. The versions correspond to those from Pulse https://github.com/rashevskyv/4ifir-checker/tree/main/github
Напоминаю, что в репозитории чекера на гитхаб лежат версии с измененным источником обновлений. Так что если у вас не работает аио, или сервер Кулера лежит, используйте эти версии. Еще раз - ничего не изменено, кроме сервера обновлений. Версии соответствуют версиям с пульса https://github.com/rashevskyv/4ifir-checker/tree/main/github"""))
with open("serverresponse.txt", 'w') as server_response:
server_response.write('0')
sys.exit(0)
# Remove directories that are not present in custom_packs
def remove_unlisted_directories(custom_packs_dict, output_parent_dir):
archives = []
for category, packs in custom_packs_dict.items():
for pack_name, pack_url in packs.items():
archives.append({"filename": pack_name})
pack_directories = [archive["filename"] + '_output' for archive in archives]
for entry in os.listdir(output_parent_dir):
entry_path = os.path.join(output_parent_dir, entry)
if os.path.isdir(entry_path) and entry.endswith('_output') and entry not in pack_directories:
shutil.rmtree(entry_path)
print(f"Removed directory: {entry}")
if os.path.exists(output_json_path):
os.remove(output_json_path)
print(f"Removed file: {output_json_path}")
# Get the last modified date of the file from the URL
def get_last_modified(url):
try:
head_response = requests.head(url)
if head_response.status_code == 200:
last_modified_utc = datetime.strptime(head_response.headers.get('Last-Modified'), '%a, %d %b %Y %H:%M:%S %Z')
# Convert to UTC timezone
last_modified_utc = last_modified_utc.replace(tzinfo=timezone('UTC'))
# Convert to GMT+3
last_modified_gmt3 = last_modified_utc.astimezone(timezone('Etc/GMT-3'))
return last_modified_gmt3.isoformat()
else:
print('Error getting Last-Modified:', head_response.status_code)
sys.exit(1)
except requests.exceptions.RequestException as e:
print('Error:', e)
sys.exit(1)
def extract_file_from_zip(zip_path, file_to_extract, output_path):
with zipfile.ZipFile(zip_path, 'r') as zip_ref:
try:
with zip_ref.open(file_to_extract, 'r') as file:
with open(output_path, 'wb') as output_file:
output_file.write(file.read())
except KeyError:
print(f"Error: {file_to_extract} not found in {zip_path}")
sys.exit(1)
def download_extract_merge_json(aio_zip_urls, file_to_extract, output_json_path):
temp_dirs = []
temp_json_files = []
# Шлях до тимчасової папки
temp_folder = 'temp'
# Перевірка наявності папки, якщо існує - видалення
if os.path.exists(temp_folder):
shutil.rmtree(temp_folder)
# Створення тимчасової папки
os.makedirs(temp_folder)
# Скачування та розпакування файлів
for url in aio_zip_urls:
zip_name = os.path.basename(url)
zip_path = os.path.join(temp_folder, zip_name)
download_file(url, zip_path)
output_path = os.path.join(temp_folder, zip_name + "_output")
os.makedirs(output_path, exist_ok=True)
temp_dirs.append(output_path)
json_path = os.path.join(output_path, 'custom_packsB.json')
extract_file_from_zip(zip_path, file_to_extract, json_path)
temp_json_files.append(json_path)
# Об'єднання JSON файлів (змінений порядок)
merged_data = {}
for json_file in temp_json_files:
with open(json_file, 'r') as file:
data = json.load(file)
for category, packs in data.items():
if category not in merged_data:
merged_data[category] = packs
else:
for pack_name, pack_url in packs.items():
if pack_url not in merged_data[category].values():
merged_data[category][pack_name] = pack_url
# Збереження об'єднаного JSON
with open(output_json_path, 'w') as file:
json.dump(merged_data, file, indent=4)
# Видалення тимчасових файлів та директорії "temp"
shutil.rmtree(temp_folder)
return output_json_path