-
Notifications
You must be signed in to change notification settings - Fork 46
/
RadarrSync.py
executable file
·135 lines (112 loc) · 5.82 KB
/
RadarrSync.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
#!/usr/bin/env python
import os
import logging
import requests
import json
import configparser
import sys
DEV = False
VER = '1.0.1'
########################################################################################################################
logger = logging.getLogger()
logger.setLevel(logging.INFO)
logFormatter = logging.Formatter("%(asctime)s [%(threadName)-12.12s] [%(levelname)-5.5s] %(message)s")
fileHandler = logging.FileHandler("./Output.txt")
fileHandler.setFormatter(logFormatter)
logger.addHandler(fileHandler)
consoleHandler = logging.StreamHandler(sys.stdout)
consoleHandler.setFormatter(logFormatter)
logger.addHandler(consoleHandler)
########################################################################################################################
def ConfigSectionMap(section):
dict1 = {}
options = Config.options(section)
for option in options:
try:
dict1[option] = Config.get(section, option)
if dict1[option] == -1:
logger.debug("skip: %s" % option)
except:
print("exception on %s!" % option)
dict1[option] = None
return dict1
logger.debug('RadarSync Version {}'.format(VER))
Config = configparser.ConfigParser()
# Loads an alternate config file so that I can work on my servers without uploading config to github
if DEV:
settingsFilename = os.path.join(os.getcwd(), 'Dev'
'Config.txt')
else:
settingsFilename = os.path.join(os.getcwd(), 'Config.txt')
Config.read(settingsFilename)
radarr_url = ConfigSectionMap("Radarr")['url']
radarr_key = ConfigSectionMap("Radarr")['key']
radarrSession = requests.Session()
radarrSession.trust_env = False
radarrMovies = radarrSession.get('{0}/api/movie?apikey={1}'.format(radarr_url, radarr_key))
if radarrMovies.status_code != 200:
logger.error('Radarr server error - response {}'.format(radarrMovies.status_code))
sys.exit(0)
for server in Config.sections():
if server == 'Default' or server == "Radarr":
continue # Default section handled previously as it always needed
else:
logger.debug('syncing to {0}'.format(server))
session = requests.Session()
session.trust_env = False
SyncServer_url = ConfigSectionMap(server)['url']
SyncServer_key = ConfigSectionMap(server)['key']
SyncServer_target_profile = ConfigSectionMap(server)['target_profile']
SyncServerMovies = session.get('{0}/api/movie?apikey={1}'.format(SyncServer_url, SyncServer_key))
if SyncServerMovies.status_code != 200:
logger.error('4K Radarr server error - response {}'.format(SyncServerMovies.status_code))
sys.exit(0)
# build a list of movied IDs already in the sync server, this is used later to prevent readding a movie that already
# exists.
# TODO refactor variable names to make it clear this builds list of existing not list of movies to add
# TODO #11 add reconcilliation to remove movies that have been deleted from source server
movieIds_to_syncserver = []
for movie_to_sync in SyncServerMovies.json():
movieIds_to_syncserver.append(movie_to_sync['tmdbId'])
#logger.debug('found movie to be added')
newMovies = 0
searchid = []
for movie in radarrMovies.json():
if movie['profileId'] == int(ConfigSectionMap(server)['profile']):
if movie['tmdbId'] not in movieIds_to_syncserver:
logging.debug('title: {0}'.format(movie['title']))
logging.debug('qualityProfileId: {0}'.format(movie['qualityProfileId']))
logging.debug('titleSlug: {0}'.format(movie['titleSlug']))
images = movie['images']
for image in images:
image['url'] = '{0}{1}'.format(radarr_url, image['url'])
logging.debug(image['url'])
logging.debug('tmdbId: {0}'.format(movie['tmdbId']))
logging.debug('path: {0}'.format(movie['path']))
logging.debug('monitored: {0}'.format(movie['monitored']))
# Update the path based on "path_from" and "path_to" passed to us in Config.txt
path = movie['path']
path = path.replace(ConfigSectionMap(server)['path_from'], ConfigSectionMap(server)['path_to'])
payload = {'title': movie['title'],
'qualityProfileId': movie['qualityProfileId'],
'titleSlug': movie['titleSlug'],
'tmdbId': movie['tmdbId'],
'path': path,
'monitored': movie['monitored'],
'images': images,
'profileId': SyncServer_target_profile,
'minimumAvailability': 'released'
}
r = session.post('{0}/api/movie?apikey={1}'.format(SyncServer_url, SyncServer_key), data=json.dumps(payload))
searchid.append(int(r.json()['id']))
logger.info('adding {0} to {1} server'.format(movie['title'], server))
else:
logging.debug('{0} already in {1} library'.format(movie['title'], server))
else:
logging.debug('Skipping {0}, wanted profile: {1} found profile: {2}'.format(movie['title'],
movie['profileId'],
int(ConfigSectionMap(server)['profile'])
))
if len(searchid):
payload = {'name' : 'MoviesSearch', 'movieIds' : searchid}
session.post('{0}/api/command?apikey={1}'.format(SyncServer_url, SyncServer_key), data=json.dumps(payload))