File size: 14,033 Bytes
bd51aea 56a64e0 bd51aea 56a64e0 bd51aea 151773c 4b81310 bd51aea 4b81310 39c5a48 4a021bd 4b81310 e2deb31 4b81310 56a64e0 4b81310 bd51aea 815f274 bd51aea 151773c bd51aea 4e9654b bd51aea 151773c bd51aea fdc1154 151773c 56a64e0 151773c 56a64e0 4e9654b 151773c bd51aea 56a64e0 151773c 56a64e0 151773c 56a64e0 151773c 56a64e0 151773c 56a64e0 bd51aea 4b81310 e2deb31 4b81310 4e9654b 56a64e0 82d44ca 40df71d 4e9654b 4b81310 40df71d 4b81310 815f274 40df71d f056a74 4b81310 feb2ad3 40df71d f056a74 40df71d f056a74 40df71d f056a74 40df71d f056a74 40df71d f056a74 40df71d f056a74 32262e9 204e87b 4b81310 56a64e0 e01cdb7 56a64e0 e01cdb7 56a64e0 e01cdb7 56a64e0 ba775a4 56a64e0 ba775a4 204e87b 56a64e0 73e339f 10ba288 151773c 73e339f 56a64e0 73e339f 56a64e0 73e339f 56a64e0 1fa8166 56a64e0 1fa8166 56a64e0 1fa8166 151773c 1fa8166 56a64e0 1fa8166 56a64e0 1fa8166 56a64e0 1fa8166 56a64e0 bd51aea 56a64e0 bd51aea 56a64e0 bd51aea 56a64e0 bd51aea 56a64e0 bd51aea 56a64e0 bd51aea 56a64e0 bd51aea 4b81310 56a64e0 bd51aea 56a64e0 |
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 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 |
import os
import json
import asyncio
import logging
import re
from indexer import indexer
from tvdb import fetch_and_cache_json
from utils import convert_to_gb
from api import InstancesAPI
CACHE_DIR = os.getenv("CACHE_DIR")
download_progress = {}
class LoadBalancer:
def __init__(self, cache_dir, index_file, token, repo, polling_interval=4, max_retries=3, initial_delay=1):
self.version = "0.0.2.9 V Beta"
self.instances = []
self.instances_health = {}
self.polling_interval = polling_interval
self.max_retries = max_retries
self.initial_delay = initial_delay
self.stop_event = asyncio.Event()
self.instances_api = InstancesAPI(self.instances)
self.CACHE_DIR = cache_dir
self.INDEX_FILE = index_file
self.TOKEN = token
self.REPO = repo
self.FILM_STORE = {}
self.TV_STORE = {}
self.file_structure = None
self.index_file_last_modified = None
# Ensure CACHE_DIR exists
if not os.path.exists(self.CACHE_DIR):
os.makedirs(self.CACHE_DIR)
# Index the file structure initially
indexer()
# Load the file structure JSON
asyncio.run(self.load_file_structure())
# Start polling and file checking in separate tasks
asyncio.create_task(self.start_polling())
asyncio.create_task(self.check_file_updates())
async def load_file_structure(self):
if not os.path.exists(self.INDEX_FILE):
raise FileNotFoundError(f"{self.INDEX_FILE} not found. Please make sure the file exists.")
with open(self.INDEX_FILE, 'r') as f:
self.file_structure = json.load(f)
logging.info("File structure loaded successfully.")
async def check_file_updates(self):
while not self.stop_event.is_set():
if self.index_file_last_modified != os.path.getmtime(self.INDEX_FILE):
logging.info(f"{self.INDEX_FILE} has been updated. Re-indexing...")
indexer() # Re-run the indexer
await self.load_file_structure() # Reload the file structure
self.index_file_last_modified = os.path.getmtime(self.INDEX_FILE)
# Restart prefetching task
if hasattr(self, 'prefetch_task') and not self.prefetch_task.done():
await self.prefetch_task
self.prefetch_task = asyncio.create_task(self.start_prefetching())
await asyncio.sleep(120) # Check every 2 minutes
def register_instance(self, instance_url):
if instance_url not in self.instances:
self.instances.append(instance_url)
logging.info(f"Registered instance {instance_url}")
else:
logging.info(f"Instance {instance_url} is already registered.")
def remove_instance(self, instance_url):
if instance_url in self.instances:
self.instances.remove(instance_url)
self.instances_health.pop(instance_url, None)
logging.info(f"Removed instance {instance_url}")
else:
logging.info(f"Instance {instance_url} not found for removal.")
async def get_reports(self):
reports = await self.instances_api.fetch_reports()
# Initialize temporary JSON data holders
temp_film_store = {}
temp_tv_store = {}
for instance_url in self.instances[:]: # Copy list to avoid modification during iteration
if instance_url in reports:
report = reports[instance_url]
logging.info(f"Report from {instance_url}: {report}")
self.process_report(instance_url, report, temp_film_store, temp_tv_store)
else:
logging.error(f"Failed to get report from {instance_url}. Removing instance.")
self.remove_instance(instance_url)
self.FILM_STORE = temp_film_store
self.TV_STORE = temp_tv_store
def process_report(self, instance_url, report, temp_film_store, temp_tv_store):
film_store = report.get('film_store', {})
tv_store = report.get('tv_store', {})
cache_size = report.get('cache_size')
logging.info(f"Processing report from {instance_url}")
# Update temporary film store
for title, path in film_store.items():
url = f"{instance_url}/api/film/{title.replace(' ', '%20')}"
temp_film_store[title] = url
# Update temporary TV store
for title, seasons in tv_store.items():
if title not in temp_tv_store:
temp_tv_store[title] = {}
for season, episodes in seasons.items():
if season not in temp_tv_store[title]:
temp_tv_store[title][season] = {}
for episode, path in episodes.items():
url = f"{instance_url}/api/tv/{title.replace(' ', '%20')}/{season.replace(' ', '%20')}/{episode.replace(' ', '%20')}"
temp_tv_store[title][season][episode] = url
logging.info("Film and TV Stores processed successfully.")
self.update_instances_health(instance=instance_url, cache_size=cache_size)
async def start_polling(self):
logging.info("Starting polling.")
while not self.stop_event.is_set():
await self.get_reports()
await asyncio.sleep(self.polling_interval)
logging.info("Polling stopped.")
async def stop_polling(self):
logging.info("Stopping polling.")
self.stop_event.set()
async def start_prefetching(self):
"""Start the metadata prefetching."""
await self.prefetch_metadata()
def update_instances_health(self, instance, cache_size):
self.instances_health[instance] = {"used": cache_size["cache_size"],
"total": "50 GB"}
logging.info(f"Updated instance {instance} with cache size {cache_size}")
async def download_film_to_best_instance(self, title):
"""
Downloads a film to the first instance that has more free space on the self.instance_health list variable.
The instance_health looks like this:
{
"https://unicone-studio-instance1.hf.space": {
"total": "50 GB",
"used": "3.33 GB"
}
}
Args:
title (str): The title of the film.
"""
best_instance = None
max_free_space = -1
# Calculate free space for each instance
for instance_url, space_info in self.instances_health.items():
total_space = convert_to_gb(space_info['total'])
used_space = convert_to_gb(space_info['used'])
free_space = total_space - used_space
if free_space > max_free_space:
max_free_space = free_space
best_instance = instance_url
if best_instance:
result = await self.instances_api.download_film(best_instance, title)
film_id = result["film_id"]
status = result["status"]
progress_url = f'{best_instance}/api/progress/{film_id}'
response = {
"film_id": film_id,
"status": status,
"progress_url": progress_url
}
return response
else:
logging.error("No suitable instance found for downloading the film.")
return {"error": "No suitable instance found for downloading the film."}
async def download_episode_to_best_instance(self, title, season, episode):
"""
Downloads an episode to the first instance that has more free space on the self.instance_health list variable.
The instance_health looks like this:
{
"https://unicone-studio-instance1.hf.space": {
"total": "50 GB",
"used": "3.33 GB"
}
}
Args:
title (str): The title of the TV show.
season (str): The season of the TV show.
episode (str): The episode of the TV show.
"""
best_instance = None
max_free_space = -1
# Calculate free space for each instance
for instance_url, space_info in self.instances_health.items():
total_space = convert_to_gb(space_info['total'])
used_space = convert_to_gb(space_info['used'])
free_space = total_space - used_space
if free_space > max_free_space:
max_free_space = free_space
best_instance = instance_url
if best_instance:
result = await self.instances_api.download_episode(best_instance, title, season, episode)
episode_id = result["episode_id"]
status = result["status"]
progress_url = f'{best_instance}/api/progress/{episode_id}'
response = {
"episode_id": episode_id,
"status": status,
"progress_url": progress_url
}
return response
else:
logging.error("No suitable instance found for downloading the episode.")
return {"error": "No suitable instance found for downloading the episode."}
async def find_movie_path(self, title):
"""Find the path of the movie in the JSON data based on the title."""
for directory in self.file_structure:
if directory['type'] == 'directory' and directory['path'] == 'films':
for sub_directory in directory['contents']:
if sub_directory['type'] == 'directory':
for item in sub_directory['contents']:
if item['type'] == 'file' and title.lower() in item['path'].lower():
return item['path']
return None
async def find_tv_path(self, title):
"""Find the path of the TV show in the JSON data based on the title."""
for directory in self.file_structure:
if directory['type'] == 'directory' and directory['path'] == 'tv':
for sub_directory in directory['contents']:
if sub_directory['type'] == 'directory' and title.lower() in sub_directory['path'].lower():
return sub_directory['path']
return None
async def get_tv_structure(self, title):
"""Find the path of the TV show in the JSON data based on the title."""
for directory in self.file_structure:
if directory['type'] == 'directory' and directory['path'] == 'tv':
for sub_directory in directory['contents']:
if sub_directory['type'] == 'directory' and title.lower() in sub_directory['path'].lower():
return sub_directory
return None
async def get_film_id(self, title):
"""Generate a film ID based on the title."""
return title.replace(" ", "_").lower()
async def prefetch_metadata(self):
"""Prefetch metadata for all items in the file structure."""
for item in self.file_structure:
if 'contents' in item:
for sub_item in item['contents']:
original_title = sub_item['path'].split('/')[-1]
media_type = 'series' if item['path'].startswith('tv') else 'movie'
title = original_title
year = None
# Extract year from the title if available
match = re.search(r'\((\d{4})\)', original_title)
if match:
year_str = match.group(1)
if year_str.isdigit() and len(year_str) == 4:
title = original_title[:match.start()].strip()
year = int(year_str)
else:
parts = original_title.rsplit(' ', 1)
if len(parts) > 1 and parts[-1].isdigit() and len(parts[-1]) == 4:
title = parts[0].strip()
year = int(parts[-1])
await fetch_and_cache_json(original_title, title, media_type, year)
async def get_all_tv_shows(self):
"""Get all TV shows from the indexed cache structure JSON file."""
tv_shows = {}
for directory in self.file_structure:
if directory['type'] == 'directory' and directory['path'] == 'tv':
for sub_directory in directory['contents']:
if sub_directory['type'] == 'directory':
show_title = sub_directory['path'].split('/')[-1]
tv_shows[show_title] = []
for season_directory in sub_directory['contents']:
if season_directory['type'] == 'directory':
season = season_directory['path'].split('/')[-1]
for episode in season_directory['contents']:
if episode['type'] == 'file':
tv_shows[show_title].append({
"season": season,
"episode": episode['path'].split('/')[-1],
"path": episode['path']
})
return tv_shows
async def get_all_films(self):
"""Get all films from the indexed cache structure JSON file."""
films = []
for directory in self.file_structure:
if directory['type'] == 'directory' and directory['path'] == 'films':
for sub_directory in directory['contents']:
if sub_directory['type'] == 'directory':
films.append(sub_directory['path'])
return films
|