You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Plex-Meta-Manager/modules/tautulli.py

76 lines
3.4 KiB

import logging
from plexapi.video import Movie, Show
4 years ago
from modules import util
from modules.util import Failed
from plexapi.exceptions import BadRequest, NotFound
4 years ago
logger = logging.getLogger("Plex Meta Manager")
builders = ["tautulli_popular", "tautulli_watched"]
3 years ago
class Tautulli:
def __init__(self, config, library, params):
self.config = config
self.library = library
3 years ago
self.url = params["url"]
self.apikey = params["apikey"]
4 years ago
try:
3 years ago
response = self._request(f"{self.url}/api/v2?apikey={self.apikey}&cmd=get_library_names")
4 years ago
except Exception:
4 years ago
util.print_stacktrace()
raise Failed("Tautulli Error: Invalid url")
if response["response"]["result"] != "success":
raise Failed(f"Tautulli Error: {response['response']['message']}")
4 years ago
3 years ago
def get_rating_keys(self, library, params, all_items):
query_size = int(params["list_size"]) + int(params["list_buffer"])
logger.info(f"Processing Tautulli Most {params['list_type'].capitalize()}: {params['list_size']} {'Movies' if library.is_movie else 'Shows'}")
response = self._request(f"{self.url}/api/v2?apikey={self.apikey}&cmd=get_home_stats&time_range={params['list_days']}&stats_count={query_size}")
stat_id = f"{'popular' if params['list_type'] == 'popular' else 'top'}_{'movies' if library.is_movie else 'tv'}"
3 years ago
stat_type = "users_watched" if params['list_type'] == 'popular' else "total_plays"
4 years ago
items = None
for entry in response["response"]["data"]:
if entry["stat_id"] == stat_id:
items = entry["rows"]
break
if items is None:
raise Failed("Tautulli Error: No Items found in the response")
4 years ago
section_id = self._section_id(library.name)
4 years ago
rating_keys = []
for item in items:
3 years ago
if (all_items or item["section_id"] == section_id) and len(rating_keys) < int(params['list_size']):
if int(item[stat_type]) < params['list_minimum']:
continue
try:
plex_item = library.fetchItem(int(item["rating_key"]))
if not isinstance(plex_item, (Movie, Show)):
raise BadRequest
3 years ago
rating_keys.append((item["rating_key"], "ratingKey"))
except (BadRequest, NotFound):
new_item = library.exact_search(item["title"], year=item["year"])
if new_item:
3 years ago
rating_keys.append((new_item[0].ratingKey, "ratingKey"))
else:
logger.error(f"Plex Error: Item {item} not found")
3 years ago
logger.debug("")
logger.debug(f"{len(rating_keys)} Keys Found: {rating_keys}")
4 years ago
return rating_keys
4 years ago
def _section_id(self, library_name):
response = self._request(f"{self.url}/api/v2?apikey={self.apikey}&cmd=get_library_names")
4 years ago
section_id = None
for entry in response["response"]["data"]:
if entry["section_name"] == library_name:
section_id = entry["section_id"]
break
if section_id: return section_id
else: raise Failed(f"Tautulli Error: No Library named {library_name} in the response")
4 years ago
4 years ago
def _request(self, url):
logger.debug(f"Tautulli URL: {url.replace(self.apikey, 'APIKEY').replace(self.url, 'URL')}")
return self.config.get_json(url)