-
Notifications
You must be signed in to change notification settings - Fork 305
/
find_unwatched.py
180 lines (139 loc) · 5.7 KB
/
find_unwatched.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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Find what was added TFRAME ago and not watched using Tautulli.
"""
from __future__ import print_function
from __future__ import unicode_literals
from builtins import input
from builtins import str
from builtins import object
import requests
import sys
import time
import os
TFRAME = 1.577e+7 # ~ 6 months in seconds
TODAY = time.time()
# ## EDIT THESE SETTINGS ##
TAUTULLI_APIKEY = 'XXXXXX' # Your Tautulli API key
TAUTULLI_URL = 'http://localhost:8181/' # Your Tautulli URL
LIBRARY_NAMES = ['My TV Shows', 'My Movies'] # Name of libraries you want to check.
class LIBINFO(object):
def __init__(self, data=None):
d = data or {}
self.added_at = d['added_at']
self.parent_rating_key = d['parent_rating_key']
self.play_count = d['play_count']
self.title = d['title']
self.rating_key = d['rating_key']
self.media_type = d['media_type']
class METAINFO(object):
def __init__(self, data=None):
d = data or {}
self.added_at = d['added_at']
self.parent_rating_key = d['parent_rating_key']
self.title = d['title']
self.rating_key = d['rating_key']
self.media_type = d['media_type']
self.grandparent_title = d['grandparent_title']
media_info = d['media_info'][0]
parts = media_info['parts'][0]
self.file_size = parts['file_size']
self.file = parts['file']
def get_new_rating_keys(rating_key, media_type):
# Get a list of new rating keys for the PMS of all of the item's parent/children.
payload = {'apikey': TAUTULLI_APIKEY,
'cmd': 'get_new_rating_keys',
'rating_key': rating_key,
'media_type': media_type}
try:
r = requests.get(TAUTULLI_URL.rstrip('/') + '/api/v2', params=payload)
response = r.json()
res_data = response['response']['data']
show = res_data['0']
episode_lst = [episode['rating_key'] for _, season in show['children'].items() for _, episode in
season['children'].items()]
return episode_lst
except Exception as e:
sys.stderr.write("Tautulli API 'get_new_rating_keys' request failed: {0}.".format(e))
def get_metadata(rating_key):
# Get the metadata for a media item.
payload = {'apikey': TAUTULLI_APIKEY,
'rating_key': rating_key,
'cmd': 'get_metadata',
'media_info': True}
try:
r = requests.get(TAUTULLI_URL.rstrip('/') + '/api/v2', params=payload)
response = r.json()
res_data = response['response']['data']
return METAINFO(data=res_data)
except Exception:
# sys.stderr.write("Tautulli API 'get_metadata' request failed: {0}.".format(e))
pass
def get_library_media_info(section_id):
# Get the data on the Tautulli media info tables.
payload = {'apikey': TAUTULLI_APIKEY,
'section_id': section_id,
'cmd': 'get_library_media_info',
'length': 10000}
try:
r = requests.get(TAUTULLI_URL.rstrip('/') + '/api/v2', params=payload)
response = r.json()
res_data = response['response']['data']['data']
return [LIBINFO(data=d) for d in res_data if d['play_count'] is None and (TODAY - int(d['added_at'])) > TFRAME]
except Exception as e:
sys.stderr.write("Tautulli API 'get_library_media_info' request failed: {0}.".format(e))
def get_libraries_table():
# Get the data on the Tautulli libraries table.
payload = {'apikey': TAUTULLI_APIKEY,
'cmd': 'get_libraries_table'}
try:
r = requests.get(TAUTULLI_URL.rstrip('/') + '/api/v2', params=payload)
response = r.json()
res_data = response['response']['data']['data']
return [d['section_id'] for d in res_data if d['section_name'] in LIBRARY_NAMES]
except Exception as e:
sys.stderr.write("Tautulli API 'get_libraries_table' request failed: {0}.".format(e))
def delete_files(tmp_lst):
del_file = input('Delete all unwatched files? (yes/no)').lower()
if del_file.startswith('y'):
for x in tmp_lst:
print("Removing {}".format(x))
os.remove(x)
else:
print('Ok. doing nothing.')
show_lst = []
path_lst = []
glt = [lib for lib in get_libraries_table()]
for i in glt:
try:
gglm = get_library_media_info(i)
for x in gglm:
try:
if x.media_type in ['show', 'episode']:
# Need to find TV shows rating_key for episode.
show_lst += get_new_rating_keys(x.rating_key, x.media_type)
else:
# Find movie rating_key.
show_lst += [int(x.rating_key)]
except Exception as e:
print(("Rating_key failed: {e}").format(e=e))
except Exception as e:
print(("Library media info failed: {e}").format(e=e))
# Remove reverse sort if you want the oldest keys first.
for i in sorted(show_lst, reverse=True):
try:
x = get_metadata(str(i))
added = time.ctime(float(x.added_at))
if x.grandparent_title == '' or x.media_type == 'movie':
# Movies
print(u"{x.title} ({x.rating_key}) was added {when} and has not been "
u"watched. \n File location: {x.file}".format(x=x, when=added))
else:
# Shows
print(u"{x.grandparent_title}: {x.title} ({x.rating_key}) was added {when} and has "
u"not been watched. \n File location: {x.file}".format(x=x, when=added))
path_lst += [x.file]
except Exception as e:
print(("Metadata failed. Likely end of range: {e}").format(e=e))
delete_files(path_lst)