forked from l3uddz/plex_autoscan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.py
371 lines (321 loc) · 13.3 KB
/
config.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
import argparse
import json
import logging
import os
import sys
import uuid
from copy import copy
logger = logging.getLogger("CONFIG")
class Singleton(type):
_instances = {}
def __call__(cls, *args, **kwargs):
if cls not in cls._instances:
cls._instances[cls] = super(Singleton, cls).__call__(*args, **kwargs)
return cls._instances[cls]
class Config(object):
__metaclass__ = Singleton
base_config = {
'PLEX_USER': 'plex',
'PLEX_SCANNER': '/usr/lib/plexmediaserver/Plex\\ Media\\ Scanner',
'PLEX_SUPPORT_DIR': '/var/lib/plexmediaserver/Library/Application\ Support',
'PLEX_LD_LIBRARY_PATH': '/usr/lib/plexmediaserver/lib',
'PLEX_DATABASE_PATH': '/var/lib/plexmediaserver/Library/Application Support/Plex Media Server'
'/Plug-in Support/Databases/com.plexapp.plugins.library.db',
'PLEX_LOCAL_URL': 'http://localhost:32400',
'PLEX_EMPTY_TRASH': False,
'PLEX_EMPTY_TRASH_MAX_FILES': 100,
'PLEX_EMPTY_TRASH_CONTROL_FILES': [],
'PLEX_EMPTY_TRASH_ZERO_DELETED': False,
'PLEX_WAIT_FOR_EXTERNAL_SCANNERS': True,
'PLEX_ANALYZE_TYPE': 'basic',
'PLEX_ANALYZE_DIRECTORY': True,
'PLEX_FIX_MISMATCHED': False,
'PLEX_FIX_MISMATCHED_LANG': 'en',
'PLEX_TOKEN': '',
'PLEX_CHECK_BEFORE_SCAN': False,
'SERVER_IP': '0.0.0.0',
'SERVER_PORT': 3467,
'SERVER_PASS': uuid.uuid4().hex,
'SERVER_PATH_MAPPINGS': {},
'SERVER_SCAN_DELAY': 180,
'SERVER_MAX_FILE_CHECKS': 10,
'SERVER_FILE_CHECK_DELAY': 60,
'SERVER_FILE_EXIST_PATH_MAPPINGS': {},
'SERVER_ALLOW_MANUAL_SCAN': False,
'SERVER_IGNORE_LIST': [],
'SERVER_USE_SQLITE': False,
'SERVER_SCAN_PRIORITIES': {},
'SERVER_SCAN_FOLDER_ON_FILE_EXISTS_EXHAUSTION': False,
'RCLONE': {
'RC_CACHE_REFRESH': {
'ENABLED': False,
'FILE_EXISTS_TO_REMOTE_MAPPINGS': {},
'RC_URL': 'http://localhost:5572'
},
'BINARY': '/usr/bin/rclone',
'CRYPT_MAPPINGS': {},
'CONFIG': ''
},
'DOCKER_NAME': 'plex',
'RUN_COMMAND_BEFORE_SCAN': '',
'RUN_COMMAND_AFTER_SCAN': '',
'USE_DOCKER': False,
'USE_SUDO': True,
'GOOGLE': {
'ENABLED': False,
'CLIENT_ID': '',
'CLIENT_SECRET': '',
'ALLOWED': {
'FILE_PATHS': [],
'FILE_EXTENSIONS': False,
'FILE_EXTENSIONS_LIST': [],
'MIME_TYPES': False,
'MIME_TYPES_LIST': []
},
'POLL_INTERVAL': 120,
'TEAMDRIVE': False,
'TEAMDRIVES': [],
'SHOW_CACHE_LOGS': True
}
}
base_settings = {
'config': {
'argv': '--config',
'env': 'PLEX_AUTOSCAN_CONFIG',
'default': os.path.join(os.path.dirname(sys.argv[0]), 'config', 'config.json')
},
'logfile': {
'argv': '--logfile',
'env': 'PLEX_AUTOSCAN_LOGFILE',
'default': os.path.join(os.path.dirname(sys.argv[0]), 'plex_autoscan.log')
},
'loglevel': {
'argv': '--loglevel',
'env': 'PLEX_AUTOSCAN_LOGLEVEL',
'default': 'INFO'
},
'queuefile': {
'argv': '--queuefile',
'env': 'PLEX_AUTOSCAN_QUEUEFILE',
'default': os.path.join(os.path.dirname(sys.argv[0]), 'queue.db')
},
'cachefile': {
'argv': '--cachefile',
'env': 'PLEX_AUTOSCAN_CACHEFILE',
'default': os.path.join(os.path.dirname(sys.argv[0]), 'cache.db')
}
}
def __init__(self):
"""Initializes config"""
# Args and settings
self.args = self.parse_args()
self.settings = self.get_settings()
# Configs
self.configs = None
@property
def default_config(self):
cfg = copy(self.base_config)
# add example scan priorities
cfg['SERVER_SCAN_PRIORITIES'] = {
"0": [
'/Movies/'
],
"1": [
'/TV/'
],
"2": [
'/Music/'
]
}
# add example file trash control files
cfg['PLEX_EMPTY_TRASH_CONTROL_FILES'] = ['/mnt/unionfs/mounted.bin']
# add example server path mappings
cfg['SERVER_PATH_MAPPINGS'] = {
'/mnt/unionfs/': [
'/home/user/media/fused/'
]
}
# add example file exist path mappings
cfg['SERVER_FILE_EXIST_PATH_MAPPINGS'] = {
'/home/user/rclone/': [
'/data/'
]
}
# add example server ignore list
cfg['SERVER_IGNORE_LIST'] = ['/.grab/', '.DS_Store', 'Thumbs.db']
# add example allowed scan paths to google
cfg['GOOGLE']['ALLOWED']['FILE_PATHS'] = [
"My Drive/Media/Movies/",
"My Drive/Media/TV/",
"My Drive/Media/4K/"
]
# add example scan extensions to google
cfg['GOOGLE']['ALLOWED']['FILE_EXTENSIONS'] = True
cfg['GOOGLE']['ALLOWED']['FILE_EXTENSIONS_LIST'] = ['webm', 'mkv', 'flv', 'vob', 'ogv', 'ogg', 'drc', 'gif',
'gifv', 'mng', 'avi', 'mov', 'qt', 'wmv', 'yuv', 'rm',
'rmvb', 'asf', 'amv', 'mp4', 'm4p', 'm4v', 'mpg', 'mp2',
'mpeg', 'mpe', 'mpv', 'm2v', 'm4v', 'svi', '3gp',
'3g2', 'mxf', 'roq', 'nsv', 'f4v', 'f4p', 'f4a', 'f4b',
'mp3', 'flac', 'ts']
# add example scan mimes for google
cfg['GOOGLE']['ALLOWED']['MIME_TYPES'] = True
cfg['GOOGLE']['ALLOWED']['MIME_TYPES_LIST'] = ['video']
# add example Rclone file exists to remote mappings
cfg['RCLONE']['RC_CACHE_REFRESH']['FILE_EXISTS_TO_REMOTE_MAPPINGS'] = {
'Media/': [
'/mnt/rclone/Media/'
]
}
return cfg
def __inner_upgrade(self, settings1, settings2, key=None, overwrite=False):
sub_upgraded = False
merged = copy(settings2)
if isinstance(settings1, dict):
for k, v in settings1.items():
# missing k
if k not in settings2:
merged[k] = v
sub_upgraded = True
if not key:
logger.info("Added %r config option: %s", str(k), str(v))
else:
logger.info("Added %r to config option %r: %s", str(k), str(key), str(v))
continue
# iterate children
if isinstance(v, dict) or isinstance(v, list):
merged[k], did_upgrade = self.__inner_upgrade(settings1[k], settings2[k], key=k,
overwrite=overwrite)
sub_upgraded = did_upgrade if did_upgrade else sub_upgraded
elif settings1[k] != settings2[k] and overwrite:
merged = settings1
sub_upgraded = True
elif isinstance(settings1, list) and key:
for v in settings1:
if v not in settings2:
merged.append(v)
sub_upgraded = True
logger.info("Added to config option %r: %s", str(key), str(v))
continue
return merged, sub_upgraded
def upgrade_settings(self, currents):
fields_env = {}
# ENV gets priority: ENV > config.json
for name, data in self.base_config.items():
if name in os.environ:
# Use JSON decoder to get same behaviour as config file
fields_env[name] = json.JSONDecoder().decode(os.environ[name])
logger.info("Using ENV setting %s=%s", name, fields_env[name])
# Update in-memory config with environment settings
currents.update(fields_env)
# Do inner upgrade
upgraded_settings, upgraded = self.__inner_upgrade(self.base_config, currents)
return upgraded_settings, upgraded
def load(self):
logger.debug("Upgrading config...")
if not os.path.exists(self.settings['config']):
logger.info("No config file found. Creating a default config...")
self.save(self.default_config)
cfg = {}
with open(self.settings['config'], 'r') as fp:
cfg, upgraded = self.upgrade_settings(json.load(fp))
# Save config if upgraded
if upgraded:
self.save(cfg)
exit(0)
else:
logger.debug("Config was not upgraded as there were no changes to add.")
self.configs = cfg
def save(self, cfg, exitOnSave=True):
with open(self.settings['config'], 'w') as fp:
json.dump(cfg, fp, indent=2, sort_keys=True)
if exitOnSave:
logger.info(
"Your config was upgraded. You may check the changes here: %r",
self.settings['config']
)
if exitOnSave:
exit(0)
def get_settings(self):
setts = {}
for name, data in self.base_settings.items():
# Argrument priority: cmd < environment < default
try:
value = None
# Command line argument
if self.args[name]:
value = self.args[name]
logger.info("Using ARG setting %s=%s", name, value)
# Envirnoment variable
elif data['env'] in os.environ:
value = os.environ[data['env']]
logger.info("Using ENV setting %s=%s" % (
data['env'],
value
))
# Default
else:
value = data['default']
logger.info("Using default setting %s=%s" % (
data['argv'],
value
))
setts[name] = value
except Exception:
logger.exception("Exception retrieving setting value: %r" % name)
return setts
# Parse command line arguments
def parse_args(self):
parser = argparse.ArgumentParser(
description=(
'Script to assist Sonarr/Radarr/Lidarr with Plex imports so that it will only scan the folder \n'
'that has been imported, instead of the entire library section.'
),
formatter_class=argparse.RawTextHelpFormatter
)
# Mode
parser.add_argument('cmd',
choices=('sections', 'sections+', 'server', 'authorize', 'build_caches', 'update_config'),
help=(
'"sections": prints Plex Sections\n'
'"sections+": prints Plex Sections with more details\n'
'"server": starts the application\n'
'"authorize": authorize against a Google account\n'
'"build_caches": build complete Google Drive caches\n'
'"update_config": perform upgrade of config'
)
)
# Config file
parser.add_argument(self.base_settings['config']['argv'],
nargs='?',
const=None,
help='Config file location (default: %s)' % self.base_settings['config']['default']
)
# Log file
parser.add_argument(self.base_settings['logfile']['argv'],
nargs='?',
const=None,
help='Log file location (default: %s)' % self.base_settings['logfile']['default']
)
# Queue file
parser.add_argument(self.base_settings['queuefile']['argv'],
nargs='?',
const=None,
help='Queue file location (default: %s)' % self.base_settings['queuefile']['default']
)
# Cache file
parser.add_argument(self.base_settings['cachefile']['argv'],
nargs='?',
const=None,
help='Google cache file location (default: %s)' % self.base_settings['cachefile']['default']
)
# Logging level
parser.add_argument(self.base_settings['loglevel']['argv'],
choices=('WARN', 'INFO', 'DEBUG'),
help='Log level (default: %s)' % self.base_settings['loglevel']['default']
)
# Print help by default if no arguments
if len(sys.argv) == 1:
parser.print_help()
sys.exit(0)
else:
return vars(parser.parse_args())