JBOPS/reporting/server_compare.py

162 lines
5.9 KiB
Python
Raw Normal View History

2018-07-25 11:45:34 +00:00
#!/usr/bin/env python
2018-07-23 14:51:24 +00:00
"""
Description: Comparing content between two or more Plex servers.
Creates .json file in script directory of server compared.
.json file contents include list items by media types (movie, show)
type combined between server 1 and server 2
type missing (_mine) from s2 but found in s1
type missing (_missing) from s1 but found in s2
type shared (_shared) between s1 and s2
Author: Blacktwin
Requires: requests, plexapi
Example:
python find_diff_other_servers.py --server "My Plex Server" --server PlexServer2
python find_diff_other_servers.py --server "My Plex Server" --server PlexServer2 --server "Steven Plex"
"""
import argparse
import requests
import json
import sys
from plexapi.server import PlexServer, CONFIG
TAUTULLI_URL = ''
TAUTULLI_APIKEY = ''
TAUTULLI_URL = CONFIG.data['auth'].get('tautulli_baseurl', TAUTULLI_URL)
TAUTULLI_APIKEY = CONFIG.data['auth'].get('tautulli_apikey', TAUTULLI_APIKEY)
PLEX_URL = ''
PLEX_TOKEN = ''
PLEX_URL = CONFIG.data['auth'].get('server_baseurl', PLEX_URL)
PLEX_TOKEN = CONFIG.data['auth'].get('server_token', PLEX_TOKEN)
# Sections to ignore from comparision.
IGNORE_LST = ['Library name']
sess = requests.Session()
# Ignore verifying the SSL certificate
sess.verify = False # '/path/to/certfile'
# If verify is set to a path to a directory,
# the directory must have been processed using the c_rehash utility supplied
# with OpenSSL.
if sess.verify is False:
# Disable the warning that the request is insecure, we know that...
import urllib3
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
plex = PlexServer(PLEX_URL, PLEX_TOKEN, session=sess)
SERVER_DICT = {server.name: server for server in
plex.myPlexAccount().resources()
if 'server' in server.provides.split(',')}
shared_lst = []
server_lst = []
2018-07-23 14:51:24 +00:00
def find_things(server):
dict_tt = {'movie': [], 'show': []}
print('Finding items from {}.'.format(server.friendlyName))
for section in server.library.sections():
if section.title not in IGNORE_LST and section.type in ['movie', 'show']:
for item in server.library.section(section.title).all():
dict_tt[section.type].append(server.fetchItem(item.ratingKey))
2018-07-23 14:51:24 +00:00
return dict_tt
def org_diff(main_key, friend_key, diff):
2018-07-23 14:51:24 +00:00
if diff == 'mine':
return list(set(main_key) - set(friend_key))
elif diff == 'missing':
return list(set(friend_key) - set(main_key))
elif diff == 'combined':
return list(set(friend_key + main_key))
def diff_things(main_dict, friend_dict):
2018-07-23 14:51:24 +00:00
for key in main_dict.keys():
main_titles = [x.title for x in main_dict[key]]
friend_titles = [x.title for x in friend_dict[key]]
2018-07-25 11:45:34 +00:00
# todo-me guid double check?
2018-07-23 14:51:24 +00:00
mine = org_diff(main_titles, friend_titles, 'mine')
missing = org_diff(main_titles, friend_titles, 'missing')
2018-07-25 11:45:34 +00:00
# todo move below into org_diff
shared = set(main_titles + friend_titles)
2018-07-23 14:51:24 +00:00
print('... combining {}s'.format(key))
2018-07-25 11:01:51 +00:00
combined = org_diff(main_titles, friend_titles, 'combined')
main_dict['{}_combined'.format(key)] = {'list': combined,
'total': len(combined)}
2018-07-23 14:51:24 +00:00
print('... comparing {}s'.format(key))
print('... finding what is mine')
2018-07-25 11:01:51 +00:00
main_dict['{}_mine'.format(key)] = {'list': mine,
'total': len(mine)}
2018-07-23 14:51:24 +00:00
print('... finding what is missing')
2018-07-25 11:01:51 +00:00
main_dict['{}_missing'.format(key)] = {'list': missing,
'total': len(missing)}
2018-07-23 14:51:24 +00:00
print('... finding what is shared')
ddiff = set(mine + missing)
shared_lst = list(shared.union(ddiff) - shared.intersection(ddiff))
2018-07-25 11:01:51 +00:00
main_dict['{}_shared'.format(key)] = {'list': shared_lst,
'total': len(shared_lst)}
2018-07-25 11:45:34 +00:00
# todo-me check back to obj for rating and bitrate weights
2018-07-23 14:51:24 +00:00
return main_dict
if __name__ == "__main__":
parser = argparse.ArgumentParser(
description="Comparing content between two or more Plex servers.")
parser.add_argument('--server', required=True, choices=SERVER_DICT.keys(),
action='append', nargs='?', metavar='',
help='Choose servers to connect to and compare.'
'\nChoices: (%(choices)s)')
2018-07-25 11:45:34 +00:00
# todo-me add media_type, library_ignore, media filters (genre, etc.)
2018-07-23 14:51:24 +00:00
opts = parser.parse_args()
if len(opts.server) < 2:
sys.stderr.write("Need more than one server to compare.\n")
sys.exit(1)
server_compare = SERVER_DICT[opts.server[0]]
main_server = server_compare.connect()
print('Connected to {} server.'.format(main_server.friendlyName))
for server in opts.server[1:]:
other_server = SERVER_DICT[server]
try:
server_connected = other_server.connect()
print('Connected to {} server.'.format(
server_connected.friendlyName))
server_lst.append(server_connected)
2018-07-23 14:51:24 +00:00
except Exception as e:
sys.stderr.write("Error: {}.\nSkipping...\n".format(e))
pass
if len(server_lst) == 0:
sys.stderr.write("Need more than one server to compare.\n")
sys.exit(1)
main_section_dict = find_things(main_server)
2018-07-23 14:51:24 +00:00
for connection in server_lst:
their_section_dict = find_things(connection)
2018-07-23 14:51:24 +00:00
print('Comparing findings from {} and {}'.format(
main_server.friendlyName, connection.friendlyName))
2018-07-23 14:51:24 +00:00
main_dict = diff_things(main_section_dict, their_section_dict)
# pop main keys
main_dict.pop('movie', None)
main_dict.pop('show', None)
filename = 'diff_{}_{}_servers.json'.format(opts.server[0], connection)
2018-07-23 14:51:24 +00:00
with open(filename, 'w') as fp:
json.dump(main_dict, fp, indent=4, sort_keys=True)