-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
import_trakt.py
executable file
·515 lines (477 loc) · 25.5 KB
/
import_trakt.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
#!/usr/bin/python3
# -*- coding: utf-8 -*-
#
#------------------------------------------------------------------------
# Trakt.tv tools
#
# Copyright 2016-2021 xbgmsharp <[email protected]>. All Rights Reserved.
# License: GNU General Public License version 3 or later; see LICENSE.txt
# Website: https://trakt.tv, https://github.com/xbgmsharp/trakt
#------------------------------------------------------------------------
#
# Purpose:
# Import Movies or TVShows IDs into Trakt.tv
#
# Requirement on Ubuntu/Debian Linux system
# apt-get install python3-dateutil python3-simplejson python3-requests python3-openssl jq
#
# Requirement on Windows on Python 3
# C:\Python3\Scripts\easy_install3.exe simplejson requests
#
import sys, os
# https://urllib3.readthedocs.org/en/latest/security.html#disabling-warnings
# http://quabr.com/27981545/surpress-insecurerequestwarning-unverified-https-request-is-being-made-in-pytho
# http://docs.python-requests.org/en/v2.4.3/user/advanced/#proxies
try:
import simplejson as json
import requests
requests.packages.urllib3.disable_warnings()
import csv
except:
sys.exit("Please use your favorite method to install the following module requests and simplejson to use this script")
import argparse
import configparser
import datetime
import collections
import pprint
import time
pp = pprint.PrettyPrinter(indent=4)
desc="""This program import Movies or TVShows IDs into Trakt.tv."""
epilog="""Read a list of ID from 'imdb', 'tmdb', 'tvdb' or 'tvrage' or 'trakt'.
Import them into a list in Trakt.tv, mark as seen if need."""
_trakt = {
'client_id' : '', # Auth details for trakt API
'client_secret' : '', # Auth details for trakt API
'access_token' : '', # Auth details for trakt API
'refresh_token' : '', # Auth details for trakt API
'baseurl' : 'https://api.trakt.tv', # Sandbox environment https://api-staging.trakt.tv,
}
_headers = {
'Accept' : 'application/json', # required per API
'Content-Type' : 'application/json', # required per API
'User-Agent' : 'Trakt importer', # User-agent
'Connection' : 'Keep-Alive', # Thanks to urllib3, keep-alive is 100% automatic within a session!
'trakt-api-version' : '2', # required per API
'trakt-api-key' : '', # required per API
'Authorization' : '', # required per API
}
_proxy = {
'proxy' : False, # True or False, trigger proxy use
'host' : 'https://127.0.0.1', # Host/IP of the proxy
'port' : '3128' # Port of the proxy
}
_proxyDict = {
"http" : _proxy['host']+':'+_proxy['port'],
"https" : _proxy['host']+':'+_proxy['port']
}
response_arr = []
def read_config(options):
"""
Read config file and if provided overwrite default values
If no config file exist, create one with default values
"""
work_dir = ''
if getattr(sys, 'frozen', False):
work_dir = os.path.dirname(sys.executable)
elif __file__:
work_dir = os.path.dirname(__file__)
_configfile = os.path.join(work_dir, options.config)
if os.path.exists(options.config):
_configfile = options.config
if options.verbose:
print("Config file: {0}".format(_configfile))
if os.path.exists(_configfile):
try:
config = configparser.ConfigParser()
config.read(_configfile)
if config.has_option('TRAKT','CLIENT_ID') and len(config.get('TRAKT','CLIENT_ID')) != 0:
_trakt['client_id'] = config.get('TRAKT','CLIENT_ID')
else:
print('Error, you must specify a trakt.tv CLIENT_ID')
sys.exit(1)
if config.has_option('TRAKT','CLIENT_SECRET') and len(config.get('TRAKT','CLIENT_SECRET')) != 0:
_trakt['client_secret'] = config.get('TRAKT','CLIENT_SECRET')
else:
print('Error, you must specify a trakt.tv CLIENT_SECRET')
sys.exit(1)
if config.has_option('TRAKT','ACCESS_TOKEN') and len(config.get('TRAKT','ACCESS_TOKEN')) != 0:
_trakt['access_token'] = config.get('TRAKT','ACCESS_TOKEN')
else:
print('Warning, no access token found. Authentification is required')
if config.has_option('TRAKT','REFRESH_TOKEN') and len(config.get('TRAKT','REFRESH_TOKEN')) != 0:
_trakt['refresh_token'] = config.get('TRAKT','REFRESH_TOKEN')
else:
print('Warning, no refresh token found. Authentification is required')
if config.has_option('TRAKT','BASEURL'):
_trakt['baseurl'] = config.get('TRAKT','BASEURL')
if config.has_option('SETTINGS','PROXY'):
_proxy['proxy'] = config.getboolean('SETTINGS','PROXY')
if _proxy['proxy'] and config.has_option('SETTINGS','PROXY_HOST') and config.has_option('SETTINGS','PROXY_PORT'):
_proxy['host'] = config.get('SETTINGS','PROXY_HOST')
_proxy['port'] = config.get('SETTINGS','PROXY_PORT')
_proxyDict['http'] = _proxy['host']+':'+_proxy['port']
_proxyDict['https'] = _proxy['host']+':'+_proxy['port']
return config
except:
print("Error reading configuration file {0}".format(_configfile))
sys.exit(1)
else:
try:
print('%s file was not found!' % _configfile)
config = configparser.RawConfigParser()
config.add_section('TRAKT')
config.set('TRAKT', 'CLIENT_ID', '')
config.set('TRAKT', 'CLIENT_SECRET', '')
config.set('TRAKT', 'ACCESS_TOKEN', '')
config.set('TRAKT', 'REFRESH_TOKEN', '')
config.set('TRAKT', 'BASEURL', 'https://api.trakt.tv')
config.add_section('SETTINGS')
config.set('SETTINGS', 'PROXY', False)
config.set('SETTINGS', 'PROXY_HOST', 'https://127.0.0.1')
config.set('SETTINGS', 'PROXY_PORT', '3128')
with open(_configfile, 'w') as configfile:
config.write(configfile)
print("Default settings wrote to file {0}".format(_configfile))
except:
print("Error writing configuration file {0}".format(_configfile))
sys.exit(1)
def read_csv(options):
"""Read CSV of Movies or TVShows IDs and return a dict"""
reader = csv.DictReader(options.input, delimiter=',')
return list(reader)
def api_auth(options, config=None, refresh=False):
"""API call for authentification OAUTH"""
values = None
if refresh == False:
print("Manual authentification. Open the link in a browser and paste the pincode when prompted")
print(("https://trakt.tv/oauth/authorize?response_type=code&"
"client_id={0}&redirect_uri=urn:ietf:wg:oauth:2.0:oob".format(
_trakt["client_id"])))
pincode = str(input('Input PIN:'))
# Exchange code for access_token
# First run
values = {
"code": pincode,
"client_id": _trakt["client_id"],
"client_secret": _trakt["client_secret"],
"redirect_uri": "urn:ietf:wg:oauth:2.0:oob",
"grant_type": "authorization_code"
}
else:
# Exchange refresh_token for access_token
# Refresh token
values = {
"refresh_token": _trakt['refresh_token'],
"client_id": _trakt['client_id'],
"client_secret": _trakt["client_secret"],
"redirect_uri": "urn:ietf:wg:oauth:2.0:oob",
"grant_type": "refresh_token"
}
url = _trakt['baseurl'] + '/oauth/token'
request = requests.post(url, data=values)
if request.status_code == 200:
response = request.json()
#pp.pprint(response)
print("Authentication successful")
_headers['Authorization'] = 'Bearer ' + response["access_token"]
_headers['trakt-api-key'] = _trakt['client_id']
# Update configuration file
if config:
config.set('TRAKT', 'ACCESS_TOKEN', response["access_token"])
config.set('TRAKT', 'REFRESH_TOKEN', response["refresh_token"])
with open(options.config, 'w') as configfile:
config.write(configfile)
print('Saved as "access_token" in file {0}: {1}'.format(options.config, response["access_token"]))
print('Saved as "refresh_token" in file {0}: {1}'.format(options.config, response["refresh_token"]))
else:
print("Sorry, the authentication was not successful.")
pp.pprint(request)
sys.exit(1)
def api_search_by_id(options, id):
"""API call for Search / ID Lookup / Get ID lookup results"""
url = _trakt['baseurl'] + '/search?id_type={0}&id={1}'.format(options.format, id)
if options.verbose:
print(url)
if _proxy['proxy']:
r = requests.get(url, headers=_headers, proxies=_proxyDict, timeout=(10, 60))
else:
r = requests.get(url, headers=_headers, timeout=(5, 60))
if r.status_code != 200:
print("Error Get ID lookup results: {0} [{1}]".format(r.status_code, r.text))
return None
else:
return json.loads(r.text)
def api_get_list(options, page):
"""API call for Sync / Get list by type"""
url = _trakt['baseurl'] + '/sync/{list}/{type}?page={page}&limit={limit}'.format(
list=options.list, type=options.type, page=page, limit=1000)
if options.verbose:
print(url)
if _proxy['proxy']:
r = requests.get(url, headers=_headers, proxies=_proxyDict, timeout=(10, 60))
else:
r = requests.get(url, headers=_headers, timeout=(5, 60))
#pp.pprint(r.headers)
if r.status_code != 200:
print("Error fetching Get {list}: {status} [{text}]".format(
list=options.list, status=r.status_code, text=r.text))
return None
else:
global response_arr
response_arr += json.loads(r.text)
if 'X-Pagination-Page-Count'in r.headers and r.headers['X-Pagination-Page-Count']:
print("Fetched page {page} of {PageCount} pages for {list} list".format(
page=page, PageCount=r.headers['X-Pagination-Page-Count'], list=options.list))
if page < int(r.headers['X-Pagination-Page-Count']):
api_get_list(options, page+1)
return response_arr
def api_add_to_list(options, import_data):
"""API call for Sync / Add items to list"""
# 429 [AUTHED_API_POST_LIMIT rate limit exceeded. Please wait 1 seconds then retry your request.]
# Rate limit for API
time.sleep(1)
url = _trakt['baseurl'] + '/sync/{list}'.format(list=options.list)
#values = '{ "movies": [ { "ids": { "imdb": "tt0000111" } }, { "ids": { , "imdb": "tt1502712" } } ] }'
#values = '{ "movies": [ { "watched_at": "2014-01-01T00:00:00.000Z", "ids": { "imdb": "tt0000111" } }, { "watched_at": "2013-01-01T00:00:00.000Z", "ids": { "imdb": "tt1502712" } } ] }'
if options.type == 'episodes':
values = { 'episodes' : import_data }
else:
values = { options.type : import_data }
json_data = json.dumps(values)
if options.verbose:
print("Sending to URL: {0}".format(url))
pp.pprint(json_data)
if _proxy['proxy']:
#print(url)
r = requests.post(url, data=json_data, headers=_headers, proxies=_proxyDict, timeout=(10, 60))
else:
r = requests.post(url, data=json_data, headers=_headers, timeout=(5, 60))
if r.status_code != 201:
print("Error Adding items to {list}: {status} [{text}]".format(
list=options.list, status=r.status_code, text=r.text))
return None
else:
return json.loads(r.text)
def api_remove_from_list(options, remove_data):
"""API call for Sync / Remove from list"""
# 429 [AUTHED_API_POST_LIMIT rate limit exceeded. Please wait 1 seconds then retry your request.]
# Rate limit for API
time.sleep(1)
url = _trakt['baseurl'] + '/sync/{list}/remove'.format(list=options.list)
if options.type == 'episodes':
values = { 'shows' : remove_data }
else:
values = { options.type : remove_data }
json_data = json.dumps(values)
if options.verbose:
print(url)
pp.pprint(json_data)
if _proxy['proxy']:
r = requests.post(url, data=json_data, headers=_headers, proxies=_proxyDict, timeout=(10, 60))
else:
r = requests.post(url, data=json_data, headers=_headers, timeout=(5, 60))
if r.status_code != 200:
print("Error removing items from {list}: {status} [{text}]".format(
list=options.list, status=r.status_code, text=r.text))
return None
else:
return json.loads(r.text)
def cleanup_list(options):
"""Empty list prior to import"""
export_data = api_get_list(options, 1)
if export_data != None:
print("Found {0} Item-Count".format(len(export_data)))
else:
print("Error, Cleanup no item return for {type} from the {list} list".format(
type=options.type, list=options.list))
sys.exit(1)
results = {'sentids' : 0, 'deleted' : 0, 'not_found' : 0}
to_remove = []
for data in export_data:
to_remove.append({'ids': data[options.type[:-1]]['ids']})
if len(to_remove) >= 10:
results['sentids'] += len(to_remove)
result = api_remove_from_list(options, to_remove)
if result:
print("Result: {0}".format(result))
if 'deleted' in result and result['deleted']:
results['deleted'] += result['deleted'][options.type]
if 'not_found' in result and result['not_found']:
results['not_found'] += len(result['not_found'][options.type])
to_remove = []
# Remove the rest
if len(to_remove) > 0:
#pp.pprint(data)
results['sentids'] += len(to_remove)
result = api_remove_from_list(options, to_remove)
if result:
print("Result: {0}".format(result))
if 'deleted' in result and result['deleted']:
results['deleted'] += result['deleted'][options.type]
if 'not_found' in result and result['not_found']:
results['not_found'] += len(result['not_found'][options.type])
print("Overall cleanup {sent} {type}, results deleted:{deleted}, not_found:{not_found}".format(
sent=results['sentids'], type=options.type, deleted=results['deleted'], not_found=results['not_found']))
def main():
"""
Main program loop
* Read configuration file and validate
* Read CSV file
* Authenticate if require
* Cleanup list from Trakt.tv
* Inject data into Trakt.tv
"""
# Parse inputs if any
parser = argparse.ArgumentParser(description=desc, epilog=epilog)
parser.add_argument('-v', action='version', version='%(prog)s 0.1')
parser.add_argument('-c', '--config',
help='allow to overwrite default config filename, default %(default)s',
action='store', type=str, dest='config', default='config.ini')
parser.add_argument('-i', '--input',
help='CSV file to import, default %(default)s',
nargs='?', type=argparse.FileType('r'), default=None, required=True)
parser.add_argument('-w', '--watched_at',
help='import watched_at date from CSV, it\'s must be UTC datetime, default %(default)s',
default=False, action='store_true', dest='watched_at')
parser.add_argument('-r', '--rated_at',
help='import rated_at date from CSV, it\'s must be UTC datetime, default %(default)s',
default=False, action='store_true', dest='rated_at')
parser.add_argument('-f', '--format',
help='allow to overwrite default ID type format, default %(default)s',
choices=['imdb', 'tmdb', 'tvdb', 'tvrage', 'trakt'], dest='format', default='imdb')
parser.add_argument('-t', '--type',
help='allow to overwrite type, default %(default)s',
choices=['movies', 'shows', 'episodes'], dest='type', default='movies')
parser.add_argument('-l', '--list',
help='allow to overwrite default list, default %(default)s',
choices=['watchlist', 'collection', 'history', 'ratings'], dest='list', default='watchlist')
parser.add_argument('-s', '--seen',
help='mark as seen, default %(default)s. Use specific time if provided, falback time: "2016-01-01T00:00:00.000Z"',
nargs='?', const='2016-01-01T00:00:00.000Z',
action='store', type=str, dest='seen', default=False)
parser.add_argument('-C', '--clean',
help='empty list prior to import, default %(default)s',
default=False, action='store_true', dest='clean')
#parser.add_argument('-d', '--dryrun',
# help='do not update the account, default %(default)s',
# default=True, action='store_true', dest='dryrun')
parser.add_argument('-V', '--verbose',
help='print additional verbose information, default %(default)s',
default=True, action='store_true', dest='verbose')
options = parser.parse_args()
# Display debug information
if options.verbose:
print("Options: %s" % options)
if options.seen and options.list != "history":
print("Error, you can only mark seen {0} when adding into the history list".format(options.type))
sys.exit(1)
if options.seen:
try:
datetime.datetime.strptime(options.seen, '%Y-%m-%dT%H:%M:%S.000Z')
except:
sys.exit("Error, invalid format, it's must be UTC datetime, eg: '2016-01-01T00:00:00.000Z'")
## Read configuration and validate
config = read_config(options)
## Display debug information
if options.verbose:
print("Config: {}".format(config))
## Trakt auth
if not _trakt['access_token'] and not _trakt['refresh_token'] and \
_trakt['client_id'] and _trakt['client_secret']:
print("Trakt, no token found in config file, requesting authorization_code")
api_auth(options, config, False)
elif _trakt['access_token'] and _trakt['refresh_token'] and \
_trakt['client_id'] and _trakt['client_secret']:
## Check token validity
## Trakt access_token is valid for 3 months before it needs to be refreshed again.
today = datetime.datetime.today()
modified_date = datetime.datetime.fromtimestamp(os.path.getmtime(options.config))
duration = today - modified_date
if duration and duration.seconds < 2592000:
# 30*24*60*60 = 2592000
print("Trakt, skipped access token refresh, token is less than 30 days, only %s" % duration)
_headers['Authorization'] = 'Bearer ' + _trakt["access_token"]
_headers['trakt-api-key'] = _trakt['client_id']
else:
## Exchange refresh_token for access_token
print("Trakt, access token refresh, token is more than 30 days, token is %s old" % duration)
api_auth(options, config, True)
else:
print("No valid authentication parameters found in config file")
sys.exit(1)
if not _headers['Authorization'] and not _headers['trakt-api-key']:
print("No valid Authorization header")
sys.exit(1)
## Display debug information
if options.verbose:
print("Trakt: {}".format(_trakt))
print("Authorization header: {}".format(_headers['Authorization']))
print("trakt-api-key header: {}".format(_headers['trakt-api-key']))
# Empty list prior to import
if options.clean:
cleanup_list(options)
# Read CSV list of IDs
read_ids = read_csv(options)
# if IDs make the list into trakt format
data = []
results = {'sentids' : 0, 'added' : 0, 'existing' : 0, 'not_found' : 0}
if read_ids:
print("Found {0} items to import".format(len(read_ids)))
for myid in read_ids:
# If id (row) exists and is not blank (has a format)
if myid and not options.format in myid:
print("Invalid file format, id (row) must exists and is not blank (has a format).")
sys.exit(1)
if myid and myid[options.format]:
#pp.pprint(myid)
# If format is not "imdb" it must be cast to an integer
if not options.format == "imdb" and not myid[options.format].startswith('tt'):
myid[options.format] = int(myid[options.format])
if (options.type == "movies" or options.type == "shows") and options.seen:
data.append({'ids':{options.format : myid[options.format]}, "watched_at": options.seen})
elif (options.type == "movies" or options.type == "shows") and options.watched_at:
data.append({'ids':{options.format : myid[options.format]}, "watched_at": myid["watched_at"]})
elif options.type == "episodes" and options.seen:
data.append({'ids':{options.format : myid[options.format]},"watched_at": options.seen})
elif options.type == "episodes" and options.watched_at:
data.append({'ids':{options.format : myid[options.format]},"watched_at": myid["watched_at"]})
elif (options.type == "movies" or options.type == "shows") and options.list == 'ratings' and options.rated_at:
data.append({'ids':{options.format : myid[options.format]}, "rated_at": myid["rated_at"], "rating": myid["rating"]})
else:
data.append({'ids':{options.format : myid[options.format]}})
# Import batch of 10 IDs
if len(data) >= 10:
#pp.pprint(json.dumps(data))
results['sentids'] += len(data)
result = api_add_to_list(options, data)
if result:
print("Result: {0}".format(result))
if 'added' in result and result['added']:
results['added'] += result['added'][options.type]
if 'existing' in result and result['existing']:
results['existing'] += result['existing'][options.type]
if 'not_found' in result and result['not_found']:
results['not_found'] += len(result['not_found'][options.type])
data = []
# Import the rest
if len(data) > 0:
#pp.pprint(data)
results['sentids'] += len(data)
result = api_add_to_list(options, data)
if result:
print("Result: {0}".format(result))
if 'added' in result and result['added']:
results['added'] += result['added'][options.type]
if 'existing' in result and result['existing']:
results['existing'] += result['existing'][options.type]
if 'not_found' in result and result['not_found']:
results['not_found'] += len(result['not_found'][options.type])
else:
# TODO Read STDIN to ID
print("No items found, nothing to do.")
sys.exit(0)
print("Overall imported {sent} {type}, results added:{added}, existing:{existing}, not_found:{not_found}".format(
sent=results['sentids'], type=options.type, added=results['added'],
existing=results['existing'], not_found=results['not_found']))
if __name__ == '__main__':
main()