-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
974 lines (832 loc) · 34.1 KB
/
main.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
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
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
import uvicorn
import yaml
import requests
import logging
import json
import asyncio
import re
from fastapi.responses import JSONResponse, RedirectResponse
from fastapi import FastAPI, Request, Form, Depends, HTTPException
from fastapi.staticfiles import StaticFiles
from fastapi.templating import Jinja2Templates
from models import (
SonarrWebhook,
RadarrWebhook,
SonarrInstance,
RadarrInstance,
PlexServer,
JellyfinServer,
EmbyServer,
)
from typing import Dict, Any, List, Optional
from contextlib import asynccontextmanager
from radarr_service import handle_radarr_grab, handle_radarr_import
from sonarr_service import handle_sonarr_grab, handle_sonarr_import
from utils import load_config, get_config, save_config, parse_time_string
from media_server_service import MediaServerScanner
import random
import string
# Application version - update this when creating new releases
VERSION = "0.1.4"
# Create a logger for this module
logger = logging.getLogger(__name__)
# Remove this initial logging configuration
# config = load_config()
# log_level = config.get("log_level", "INFO")
# logging.basicConfig(level=getattr(logging, log_level.upper()))
# Store instances at module level with proper typing
sonarr_instances: List[SonarrInstance] = []
radarr_instances: List[RadarrInstance] = []
# TODO: Add anime support
# ------------------------------------------------------------------------------
# Load YAML Config and Setup Logging
# ------------------------------------------------------------------------------
@asynccontextmanager
async def lifespan(app: FastAPI):
try:
global sonarr_instances, radarr_instances # Add this line to use global variables
config = load_config()
# Setup logging based on config
log_level = getattr(logging, config.get('log_level', 'INFO').upper())
# Configure root logger with custom format
logging.basicConfig(
level=log_level,
format='%(asctime)s %(levelname)s %(message)s',
datefmt='%b %d %H:%M:%S'
)
# Convert level names to match desired format
logging.addLevelName(logging.INFO, 'INF')
logging.addLevelName(logging.ERROR, 'ERR')
logging.addLevelName(logging.WARNING, 'WRN')
logging.addLevelName(logging.DEBUG, 'DBG')
# Build startup messages
logger.info("Starting server on :3536")
logger.info(f"log level: {config.get('log_level', 'INFO').lower()}")
# Convert dict instances to proper types and assign to global variables
sonarr_instances = [
SonarrInstance(**inst)
for inst in config["instances"]
if inst["type"].lower() == "sonarr"
]
radarr_instances = [
RadarrInstance(**inst)
for inst in config["instances"]
if inst["type"].lower() == "radarr"
]
# Get media servers
media_servers = config.get("media_servers", [])
# Group servers by type
server_types = {}
for server in media_servers:
if server.get("enabled", True):
server_type = server["type"].capitalize()
if server_type not in server_types:
server_types[server_type] = 0
server_types[server_type] += 1
# Build initialization message for instances
instances_msg = "Initialised instances:"
instances_msg += f" sonarr={len(sonarr_instances)}"
instances_msg += f" radarr={len(radarr_instances)}"
logger.info(instances_msg)
# Build initialization message for media servers
targets_msg = "Initialised targets:"
targets_msg += f" plex={server_types.get('Plex', 0)}"
targets_msg += f" emby={server_types.get('Emby', 0)}"
targets_msg += f" jellyfin={server_types.get('Jellyfin', 0)}"
logger.info(targets_msg)
# Log version information
logger.info(f"Initialised version=\"{VERSION}\"")
except Exception as e:
logger.error(f"Failed to initialize server error=\"{str(e)}\"")
raise
yield
app = FastAPI(lifespan=lifespan)
# Mount static files
app.mount("/static", StaticFiles(directory="static"), name="static")
# Setup Jinja2 templates
templates = Jinja2Templates(directory="templates")
def get_template_context(request: Request, **kwargs) -> Dict[str, Any]:
"""Create a template context with common variables."""
context = {"request": request, "version": VERSION}
context.update(kwargs)
return context
# ------------------------------------------------------------------------------
# Frontend Routes
# ------------------------------------------------------------------------------
@app.get("/")
async def index(request: Request):
"""Render the dashboard page."""
config = get_config()
# Get instances
sonarr_instances = [
inst for inst in config.get("instances", [])
if inst.get("type", "").lower() == "sonarr"
]
radarr_instances = [
inst for inst in config.get("instances", [])
if inst.get("type", "").lower() == "radarr"
]
# Get media servers
media_servers = config.get("media_servers", [])
return templates.TemplateResponse(
"dashboard.html",
get_template_context(
request,
sonarr_instances=sonarr_instances,
radarr_instances=radarr_instances,
media_servers=media_servers,
config=config,
messages=[]
)
)
@app.get("/instances/add")
async def add_instance_form(request: Request, type: str = "sonarr"):
"""Render the add instance form."""
if type.lower() not in ["sonarr", "radarr"]:
type = "sonarr" # Default to sonarr if invalid type
config = get_config()
return templates.TemplateResponse(
"add_instance.html",
get_template_context(request, instance_type=type.lower(), config=config, messages=[])
)
@app.post("/instances/add")
async def add_instance(
request: Request,
name: str = Form(...),
type: str = Form(...),
url: str = Form(...),
api_key: str = Form(...),
root_folder_path: str = Form(...),
quality_profile_id: int = Form(...),
language_profile_id: Optional[int] = Form(None),
season_folder: Optional[bool] = Form(False),
search_on_sync: Optional[bool] = Form(False),
enabled_events: List[str] = Form([])
):
"""Add a new instance to the configuration."""
global sonarr_instances, radarr_instances
config = get_config()
# Create instance data
instance_data = {
"name": name,
"type": type,
"url": url,
"api_key": api_key,
"root_folder_path": root_folder_path,
"quality_profile_id": quality_profile_id,
"search_on_sync": search_on_sync,
"enabled_events": enabled_events
}
# Add Sonarr-specific fields
if type.lower() == "sonarr":
instance_data["language_profile_id"] = language_profile_id or 1
instance_data["season_folder"] = season_folder
# Check if instance with same name and type already exists
for idx, inst in enumerate(config.get("instances", [])):
if inst.get("name") == name and inst.get("type") == type:
# Replace existing instance
config["instances"][idx] = instance_data
save_config(config)
# Reload instances
sonarr_instances = [
SonarrInstance(**inst)
for inst in config["instances"]
if inst["type"].lower() == "sonarr"
]
radarr_instances = [
RadarrInstance(**inst)
for inst in config["instances"]
if inst["type"].lower() == "radarr"
]
return RedirectResponse(url="/", status_code=303)
# Add new instance
if "instances" not in config:
config["instances"] = []
config["instances"].append(instance_data)
save_config(config)
# Reload instances
sonarr_instances = [
SonarrInstance(**inst)
for inst in config["instances"]
if inst["type"].lower() == "sonarr"
]
radarr_instances = [
RadarrInstance(**inst)
for inst in config["instances"]
if inst["type"].lower() == "radarr"
]
return RedirectResponse(url="/", status_code=303)
@app.get("/instances/delete/{name}/{type}")
async def delete_instance(request: Request, name: str, type: str):
"""Delete an instance from the configuration."""
global sonarr_instances, radarr_instances
config = get_config()
# Find and remove the instance
config["instances"] = [
inst for inst in config.get("instances", [])
if not (inst.get("name") == name and inst.get("type").lower() == type.lower())
]
save_config(config)
# Reload instances
sonarr_instances = [
SonarrInstance(**inst)
for inst in config["instances"]
if inst["type"].lower() == "sonarr"
]
radarr_instances = [
RadarrInstance(**inst)
for inst in config["instances"]
if inst["type"].lower() == "radarr"
]
return RedirectResponse(url="/", status_code=303)
@app.get("/media-servers/add")
async def add_media_server_form(request: Request):
"""Render the add media server form."""
config = get_config()
return templates.TemplateResponse(
"add_media_server.html",
get_template_context(request, config=config, messages=[])
)
@app.post("/media-servers/add")
async def add_media_server(
request: Request,
name: str = Form(...),
type: str = Form(...),
url: str = Form(...),
token: Optional[str] = Form(None),
api_key: Optional[str] = Form(None),
enabled: Optional[bool] = Form(True)
):
"""Add a new media server to the configuration."""
config = get_config()
# Create media server data
server_data = {
"name": name,
"type": type,
"url": url,
"enabled": enabled
}
# Add type-specific fields
if type.lower() == "plex":
if not token:
return templates.TemplateResponse(
"add_media_server.html",
get_template_context(request, messages=[{"type": "danger", "text": "Plex token is required"}])
)
server_data["token"] = token
else:
if not api_key:
return templates.TemplateResponse(
"add_media_server.html",
get_template_context(request, messages=[{"type": "danger", "text": "API key is required"}])
)
server_data["api_key"] = api_key
# Check if server with same name already exists
if "media_servers" not in config:
config["media_servers"] = []
for idx, server in enumerate(config.get("media_servers", [])):
if server.get("name") == name:
# Replace existing server
config["media_servers"][idx] = server_data
save_config(config)
return RedirectResponse(url="/", status_code=303)
# Add new server
config["media_servers"].append(server_data)
save_config(config)
return RedirectResponse(url="/", status_code=303)
@app.get("/media-servers/delete/{name}")
async def delete_media_server(request: Request, name: str):
"""Delete a media server from the configuration."""
config = get_config()
# Find and remove the server
config["media_servers"] = [
server for server in config.get("media_servers", [])
if server.get("name") != name
]
save_config(config)
return RedirectResponse(url="/", status_code=303)
@app.get("/instances/edit/{name}/{type}")
async def edit_instance_form(request: Request, name: str, type: str):
"""Render the edit instance form."""
config = get_config()
# Find the instance
instance = None
for inst in config["instances"]:
if inst["name"] == name and inst["type"].lower() == type.lower():
instance = inst
break
if not instance:
return RedirectResponse(url="/", status_code=303)
return templates.TemplateResponse(
"edit_instance.html",
get_template_context(request, instance=instance, config=config, messages=[])
)
@app.post("/instances/edit/{name}/{type}")
async def edit_instance(
request: Request,
name: str,
type: str,
url: str = Form(...),
api_key: str = Form(...),
root_folder_path: str = Form(...),
quality_profile_id: int = Form(...),
language_profile_id: Optional[int] = Form(None),
season_folder: Optional[bool] = Form(False),
search_on_sync: Optional[bool] = Form(False),
enabled_events: List[str] = Form([])
):
"""Update an existing instance in the configuration."""
global sonarr_instances, radarr_instances
config = get_config()
# Create updated instance data
instance_data = {
"name": name,
"type": type,
"url": url,
"api_key": api_key,
"root_folder_path": root_folder_path,
"quality_profile_id": quality_profile_id,
"search_on_sync": search_on_sync,
"enabled_events": enabled_events
}
# Add Sonarr-specific fields
if type.lower() == "sonarr":
instance_data["language_profile_id"] = language_profile_id or 1
instance_data["season_folder"] = season_folder
# Find and update the instance
for idx, inst in enumerate(config.get("instances", [])):
if inst.get("name") == name and inst.get("type").lower() == type.lower():
config["instances"][idx] = instance_data
save_config(config)
# Reload instances
sonarr_instances = [
SonarrInstance(**inst)
for inst in config["instances"]
if inst["type"].lower() == "sonarr"
]
radarr_instances = [
RadarrInstance(**inst)
for inst in config["instances"]
if inst["type"].lower() == "radarr"
]
break
return RedirectResponse(url="/", status_code=303)
@app.get("/media-servers/edit/{name}")
async def edit_media_server_form(request: Request, name: str):
"""Render the edit media server form."""
config = get_config()
# Find the server
server = None
for srv in config["media_servers"]:
if srv["name"] == name:
server = srv
break
if not server:
return RedirectResponse(url="/", status_code=303)
return templates.TemplateResponse(
"edit_media_server.html",
get_template_context(request, server=server, config=config, messages=[])
)
@app.post("/media-servers/edit/{name}")
async def edit_media_server(
request: Request,
name: str,
type: str = Form(...),
url: str = Form(...),
token: Optional[str] = Form(None),
api_key: Optional[str] = Form(None),
enabled: Optional[bool] = Form(True)
):
"""Update an existing media server in the configuration."""
config = get_config()
# Create updated server data
server_data = {
"name": name,
"type": type,
"url": url,
"enabled": enabled
}
# Add type-specific fields
if type.lower() == "plex":
if not token:
return templates.TemplateResponse(
"edit_media_server.html",
get_template_context(request, server=server_data, messages=[{"type": "danger", "text": "Plex token is required"}])
)
server_data["token"] = token
else:
if not api_key:
return templates.TemplateResponse(
"edit_media_server.html",
get_template_context(request, server=server_data, messages=[{"type": "danger", "text": "API key is required"}])
)
server_data["api_key"] = api_key
# Find and update the server
for idx, server in enumerate(config.get("media_servers", [])):
if server.get("name") == name:
config["media_servers"][idx] = server_data
save_config(config)
break
return RedirectResponse(url="/", status_code=303)
@app.get("/settings")
async def settings_form(request: Request):
"""Render the settings form."""
config = get_config()
return templates.TemplateResponse(
"settings.html",
get_template_context(request, config=config, messages=[])
)
@app.post("/settings")
async def update_settings(
request: Request,
log_level: str = Form(...),
sync_delay: str = Form(...),
sync_interval: str = Form(...)
):
"""Update application settings."""
config = get_config()
# Update settings
config["log_level"] = log_level
config["sync_delay"] = sync_delay
config["sync_interval"] = sync_interval
# Validate time formats
try:
parse_time_string(sync_delay)
parse_time_string(sync_interval)
except Exception as e:
return templates.TemplateResponse(
"settings.html",
get_template_context(
request,
config=config,
messages=[{"type": "danger", "text": f"Invalid time format: {str(e)}"}]
),
status_code=400
)
# Save config
if save_config(config):
# Update logging level
logging.getLogger().setLevel(getattr(logging, log_level.upper()))
# Redirect to dashboard with success message
return RedirectResponse(
url="/",
status_code=303,
headers={"HX-Trigger": json.dumps({"showMessage": {"type": "success", "text": "Settings updated successfully"}})}
)
else:
# Show error
return templates.TemplateResponse(
"settings.html",
get_template_context(
request,
config=config,
messages=[{"type": "danger", "text": "Failed to save settings"}]
),
status_code=500
)
# ------------------------------------------------------------------------------
# API Routes
# ------------------------------------------------------------------------------
@app.post("/debug-webhook")
async def debug_webhook(payload: Dict[str, Any], request: Request) -> Dict[str, Any]:
"""
Debug endpoint that simply logs and returns the received webhook payload.
"""
logger.info("========================")
logger.info("Received webhook on debug endpoint")
logger.info("Headers:")
for name, value in request.headers.items():
logger.info(f"{name}: {value}")
logger.info("Payload:")
logger.info(json.dumps(payload, indent=2))
logger.info("========================")
return {
"status": "received",
"eventType": payload.get("eventType", "unknown"),
"payload": payload,
}
async def handle_sonarr_delete(payload: Dict[str, Any], instances: List[SonarrInstance]):
"""Handle series or episode deletion by syncing across instances and scanning media servers"""
series_id = payload.get("series", {}).get("tvdbId")
path = payload.get("series", {}).get("path")
event_type = payload.get("eventType")
results = {
"status": "ok",
"event": event_type,
"deletions": [],
"scanResults": []
}
# Get sync interval from config
config = get_config()
sync_interval = parse_time_string(config.get("sync_interval", "0"))
# Sync deletion across instances
for i, instance in enumerate(instances):
try:
# Apply sync interval between instances (but not before the first one)
if i > 0 and sync_interval > 0:
logger.info(f"Waiting {sync_interval} seconds before processing next instance")
await asyncio.sleep(sync_interval)
if event_type == "SeriesDelete":
# Delete series from instance
response = await instance.delete_series(series_id)
elif event_type == "EpisodeFileDelete":
# Delete episode file from instance
episode_id = payload.get("episodeFile", {}).get("id")
response = await instance.delete_episode(episode_id)
results["deletions"].append({
"instance": instance.name,
"status": "success"
})
except Exception as e:
logger.error(f"Failed to delete from {instance.name}: {str(e)}")
results["deletions"].append({
"instance": instance.name,
"status": "error",
"error": str(e)
})
# Scan media servers if path exists
if path:
# Apply sync interval before media server scanning
if sync_interval > 0 and results["deletions"]:
logger.info(f"Waiting {sync_interval} seconds before scanning media servers")
await asyncio.sleep(sync_interval)
scanner = MediaServerScanner(config.get("media_servers", []))
results["scanResults"] = await scanner.scan_path(path, is_series=True)
return results
async def handle_radarr_delete(payload: Dict[str, Any], instances: List[RadarrInstance]):
"""Handle movie or movie file deletion by syncing across instances and scanning media servers"""
tmdb_id = payload.get("movie", {}).get("tmdbId")
path = payload.get("movie", {}).get("folderPath")
event_type = payload.get("eventType")
results = {
"status": "ok",
"event": event_type,
"deletions": [],
"scanResults": []
}
# Get sync interval from config
config = get_config()
sync_interval = parse_time_string(config.get("sync_interval", "0"))
# Sync deletion across instances
for i, instance in enumerate(instances):
try:
# Apply sync interval between instances (but not before the first one)
if i > 0 and sync_interval > 0:
logger.info(f"Waiting {sync_interval} seconds before processing next instance")
await asyncio.sleep(sync_interval)
if event_type == "MovieDelete":
# Delete movie from instance
response = await instance.delete_movie(tmdb_id)
elif event_type == "MovieFileDelete":
# Delete movie file from instance
movie_file_id = payload.get("movieFile", {}).get("id")
response = await instance.delete_movie_file(movie_file_id)
results["deletions"].append({
"instance": instance.name,
"status": "success"
})
except Exception as e:
logger.error(f"Failed to delete from {instance.name}: {str(e)}")
results["deletions"].append({
"instance": instance.name,
"status": "error",
"error": str(e)
})
# Scan media servers if path exists
if path:
# Apply sync interval before media server scanning
if sync_interval > 0 and results["deletions"]:
logger.info(f"Waiting {sync_interval} seconds before scanning media servers")
await asyncio.sleep(sync_interval)
scanner = MediaServerScanner(config.get("media_servers", []))
results["scanResults"] = await scanner.scan_path(path, is_series=False)
return results
@app.post("/webhook")
async def webhook_handler(payload: Dict[str, Any], request: Request) -> Dict[str, Any]:
"""
Handle webhooks from Sonarr and Radarr with proper validation.
"""
try:
event_type = payload.get("eventType")
if not event_type:
raise ValueError("Webhook payload missing eventType")
# Get config for event validation
config = get_config()
# Generate a unique ID for this webhook
webhook_id = ''.join(random.choices(string.ascii_lowercase + string.digits, k=16))
# Get sync timing settings
sync_delay = parse_time_string(config.get("sync_delay", "0"))
sync_interval = parse_time_string(config.get("sync_interval", "0"))
if sync_delay > 0:
logger.info(f"Delaying webhook processing for {sync_delay} seconds")
await asyncio.sleep(sync_delay)
# Try to parse as Sonarr webhook first
if "series" in payload:
# Validate event type
if event_type not in config.get("webhook_events", {}).get("sonarr", []):
logger.info(f"Ignoring unsupported Sonarr event={event_type}")
return {"status": "ignored", "reason": f"Unsupported event type: {event_type}"}
# Map "Download" to "Import" for consistency
if event_type == "Download":
event_type = "Import"
# Log webhook receipt
path = payload.get("series", {}).get("path", "")
logger.info(f"Scan moved to processor event={event_type} id={webhook_id} method=POST path=\"{path}\" instance=sonarr")
webhook_data = SonarrWebhook(**payload)
# Filter instances that have this event type enabled
valid_instances = [
inst for inst in sonarr_instances
if event_type.lower() in [e.lower() for e in inst.enabled_events]
]
logger.debug(f"Found {len(valid_instances)} Sonarr instances for event {event_type}")
if not valid_instances:
logger.info(f"No Sonarr instances configured for event={event_type}")
return {"status": "ignored", "reason": f"No instances configured for {event_type}"}
if event_type == "Grab":
return await handle_sonarr_grab(payload, valid_instances)
elif event_type == "Import":
# Add sync interval to the import handler context
result = await handle_sonarr_import(payload, valid_instances)
logger.info(f"Import result: {result}")
return result
elif event_type in ["SeriesDelete", "EpisodeFileDelete"]:
logger.info(f"Received {event_type} event, syncing deletion and scanning media servers")
return await handle_sonarr_delete(payload, valid_instances)
else:
logger.info(f"Unhandled Sonarr event type: {event_type}")
return {"status": "ignored", "reason": f"Unhandled event type: {event_type}"}
# Try to parse as Radarr webhook
elif "movie" in payload:
# Validate event type
if event_type not in config.get("webhook_events", {}).get("radarr", []):
logger.info(f"Ignoring unsupported Radarr event={event_type}")
return {"status": "ignored", "reason": f"Unsupported event type: {event_type}"}
# Map "Download" to "Import" for consistency
if event_type == "Download":
event_type = "Import"
# Get paths from payload for logging
movie_data = payload.get("movie", {})
movie_file = payload.get("movieFile", {})
folder_path = movie_data.get("folderPath", "")
file_path = movie_file.get("path", "")
logger.info(f"Processing Radarr webhook: event={event_type} id={webhook_id}")
logger.info(f"Movie folder path: {folder_path}")
logger.info(f"Movie file path: {file_path}")
webhook_data = RadarrWebhook(**payload)
# Filter instances that have this event type enabled
valid_instances = [
inst for inst in radarr_instances
if event_type.lower() in [e.lower() for e in inst.enabled_events]
]
logger.debug(f"Found {len(valid_instances)} Radarr instances for event {event_type}")
if not valid_instances:
logger.info(f"No Radarr instances configured for event={event_type}")
return {"status": "ignored", "reason": f"No instances configured for {event_type}"}
if event_type == "Grab":
return await handle_radarr_grab(payload, valid_instances)
elif event_type == "Import":
result = await handle_radarr_import(payload, valid_instances)
logger.info(f"Import result: {result}")
return result
elif event_type in ["MovieDelete", "MovieFileDelete"]:
logger.info(f"Received {event_type} event, syncing deletion and scanning media servers")
return await handle_radarr_delete(payload, valid_instances)
else:
logger.info(f"Unhandled Radarr event type: {event_type}")
return {"status": "ignored", "reason": f"Unhandled event type: {event_type}"}
else:
logger.warning("Unknown webhook type")
raise ValueError("Webhook must contain either 'series' or 'movie' data")
except ValueError as e:
logger.warning(f"Invalid webhook format: {str(e)}")
return JSONResponse(
status_code=400,
content={"status": "error", "reason": f"Invalid webhook format: {str(e)}"},
)
except Exception as e:
logger.error(f"Failed to process webhook: {str(e)}")
return JSONResponse(
status_code=500,
content={"status": "error", "reason": f"Internal server error: {str(e)}"},
)
async def handle_sonarr_rename(payload: Dict[str, Any], instances: List[SonarrInstance]):
"""Handle series rename by syncing across instances and scanning media servers"""
series_id = payload.get("series", {}).get("tvdbId")
path = payload.get("series", {}).get("path")
results = {
"status": "ok",
"event": "Rename",
"renames": [],
"scanResults": []
}
# Sync rename across instances
for instance in instances:
try:
# Get the series from the instance
series = await instance.get_series_by_tvdb_id(series_id)
if series:
# Trigger series refresh to update filenames
response = await instance.refresh_series(series['id'])
results["renames"].append({
"instance": instance.name,
"status": "success"
})
else:
logger.warning(f"Series not found in {instance.name}")
results["renames"].append({
"instance": instance.name,
"status": "skipped",
"reason": "Series not found"
})
except Exception as e:
logger.error(f"Failed to rename in {instance.name}: {str(e)}")
results["renames"].append({
"instance": instance.name,
"status": "error",
"error": str(e)
})
# Scan media servers if path exists
if path:
config = get_config()
scanner = MediaServerScanner(config.get("media_servers", []))
results["scanResults"] = await scanner.scan_path(path, is_series=True)
return results
async def handle_radarr_rename(payload: Dict[str, Any], instances: List[RadarrInstance]):
"""Handle movie rename by syncing across instances and scanning media servers"""
movie_id = payload.get("movie", {}).get("tmdbId")
path = payload.get("movie", {}).get("folderPath") or payload.get("movie", {}).get("path")
event_type = payload.get("eventType")
results = {
"status": "ok",
"event": "Rename",
"renames": [],
"scanResults": []
}
# Sync rename across instances
for instance in instances:
try:
# Get the movie from the instance
movie = await instance.get_movie_by_tmdb_id(movie_id)
if movie:
# Trigger movie refresh to update filenames
response = await instance.refresh_movie(movie['id'])
results["renames"].append({
"instance": instance.name,
"status": "success"
})
else:
logger.warning(f"Movie not found in {instance.name}")
results["renames"].append({
"instance": instance.name,
"status": "skipped",
"reason": "Movie not found"
})
except Exception as e:
logger.error(f"Failed to rename in {instance.name}: {str(e)}")
results["renames"].append({
"instance": instance.name,
"status": "error",
"error": str(e)
})
# Scan media servers if path exists
if path:
config = get_config()
scanner = MediaServerScanner(config.get("media_servers", []))
results["scanResults"] = await scanner.scan_path(path, is_series=False)
return results
# ------------------------------------------------------------------------------
# Helper Functions
# ------------------------------------------------------------------------------
if __name__ == "__main__":
# Configure uvicorn logging to match our format
log_config = {
"version": 1,
"disable_existing_loggers": True, # Changed to True to prevent duplicates
"formatters": {
"default": {
"()": "uvicorn.logging.DefaultFormatter",
"fmt": "%(asctime)s %(levelname)s %(message)s",
"datefmt": "%b %d %H:%M:%S",
},
},
"handlers": {
"default": {
"formatter": "default",
"class": "logging.StreamHandler",
"stream": "ext://sys.stderr",
},
},
"loggers": {
"uvicorn": {"handlers": ["default"], "level": "INFO", "propagate": False},
"uvicorn.error": {"level": "INFO", "propagate": False},
"uvicorn.access": {"handlers": ["default"], "level": "INFO", "propagate": False},
},
}
uvicorn.run(
"main:app",
host="0.0.0.0",
port=3536,
reload=False,
log_config=log_config,
access_log=False # Disable access logging
)