Add several options and switches
This commit is contained in:
parent
4eb6465b64
commit
17bc09bc20
1 changed files with 158 additions and 27 deletions
151
radarr.py
151
radarr.py
|
@ -1,18 +1,35 @@
|
||||||
# Do not edit this script. Edit configuration.py
|
# Do not edit this script. Edit configuration.py
|
||||||
|
import sys
|
||||||
import requests
|
import requests
|
||||||
from datetime import datetime, timezone
|
from datetime import datetime, timezone
|
||||||
from influxdb import InfluxDBClient
|
from influxdb import InfluxDBClient
|
||||||
|
import argparse
|
||||||
|
from argparse import RawTextHelpFormatter
|
||||||
import configuration
|
import configuration
|
||||||
|
|
||||||
current_time = datetime.now(timezone.utc).astimezone().isoformat()
|
|
||||||
|
|
||||||
headers = {'X-Api-Key': configuration.radarr_api_key}
|
def now_iso():
|
||||||
get_movies = requests.get('{}/api/movie'.format(configuration.radarr_url), headers=headers).json()
|
now_iso = datetime.now(timezone.utc).astimezone().isoformat()
|
||||||
movies = {d['tmdbId']: d for d in get_movies}
|
return now_iso
|
||||||
|
|
||||||
|
|
||||||
|
def influx_sender(influx_payload):
|
||||||
|
influx = InfluxDBClient(configuration.influxdb_url, configuration.influxdb_port, configuration.influxdb_username,
|
||||||
|
configuration.influxdb_password, configuration.radarr_influxdb_db_name)
|
||||||
|
influx.write_points(influx_payload)
|
||||||
|
|
||||||
|
|
||||||
|
def get_missing_movies():
|
||||||
|
# Set the time here so we have one timestamp to work with
|
||||||
|
now = now_iso()
|
||||||
missing = []
|
missing = []
|
||||||
influx_payload = []
|
influx_payload = []
|
||||||
|
|
||||||
|
for radarr_url, radarr_api_key, server_id in configuration.radarr_server_list:
|
||||||
|
headers = {'X-Api-Key': radarr_api_key}
|
||||||
|
get_movies = requests.get('{}/api/movie'.format(radarr_url), headers=headers).json()
|
||||||
|
movies = {d['tmdbId']: d for d in get_movies}
|
||||||
|
|
||||||
for movie in movies.keys():
|
for movie in movies.keys():
|
||||||
if not movies[movie]['downloaded']:
|
if not movies[movie]['downloaded']:
|
||||||
missing.append((movies[movie]['title'], movies[movie]['tmdbId']))
|
missing.append((movies[movie]['title'], movies[movie]['tmdbId']))
|
||||||
|
@ -23,16 +40,130 @@ for movie, id in missing:
|
||||||
"measurement": "Radarr",
|
"measurement": "Radarr",
|
||||||
"tags": {
|
"tags": {
|
||||||
"type": "Missing",
|
"type": "Missing",
|
||||||
"tmdbId": id
|
"tmdbId": id,
|
||||||
|
"server": server_id
|
||||||
},
|
},
|
||||||
"time": current_time,
|
"time": now,
|
||||||
"fields": {
|
"fields": {
|
||||||
"name": movie
|
"name": movie
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
# Empty missing or else things get foo bared
|
||||||
|
missing = []
|
||||||
|
|
||||||
influx = InfluxDBClient(configuration.grafana_url, configuration.grafana_port, configuration.grafana_username,
|
return influx_payload
|
||||||
configuration.grafana_password, configuration.radarr_grafana_db_name)
|
|
||||||
influx.write_points(influx_payload)
|
|
||||||
|
|
||||||
|
|
||||||
|
def get_missing_avl():
|
||||||
|
# Set the time here so we have one timestamp to work with
|
||||||
|
now = now_iso()
|
||||||
|
missing = []
|
||||||
|
influx_payload = []
|
||||||
|
|
||||||
|
for radarr_url, radarr_api_key, server_id in configuration.radarr_server_list:
|
||||||
|
headers = {'X-Api-Key': radarr_api_key}
|
||||||
|
get_movies = requests.get('{}/api/movie'.format(radarr_url), headers=headers).json()
|
||||||
|
movies = {d['tmdbId']: d for d in get_movies}
|
||||||
|
|
||||||
|
for movie in movies.keys():
|
||||||
|
if not movies[movie]['downloaded']:
|
||||||
|
if movies[movie]['isAvailable'] is True:
|
||||||
|
missing.append((movies[movie]['title'], movies[movie]['tmdbId']))
|
||||||
|
|
||||||
|
|
||||||
|
for movie, id in missing:
|
||||||
|
influx_payload.append(
|
||||||
|
{
|
||||||
|
"measurement": "Radarr",
|
||||||
|
"tags": {
|
||||||
|
"type": "Missing_Available",
|
||||||
|
"tmdbId": id,
|
||||||
|
"server": server_id
|
||||||
|
},
|
||||||
|
"time": now,
|
||||||
|
"fields": {
|
||||||
|
"name": movie,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
# Empty missing or else things get foo bared
|
||||||
|
missing = []
|
||||||
|
|
||||||
|
return influx_payload
|
||||||
|
|
||||||
|
|
||||||
|
def get_queue_movies():
|
||||||
|
# Set the time here so we have one timestamp to work with
|
||||||
|
now = now_iso()
|
||||||
|
influx_payload = []
|
||||||
|
queue = []
|
||||||
|
|
||||||
|
for radarr_url, radarr_api_key, server_id in configuration.radarr_server_list:
|
||||||
|
headers = {'X-Api-Key': radarr_api_key}
|
||||||
|
get_movies = requests.get('{}/api/queue'.format(radarr_url), headers=headers).json()
|
||||||
|
queue_movies = {d['id']: d for d in get_movies}
|
||||||
|
|
||||||
|
for movie in queue_movies.keys():
|
||||||
|
name = '{} ({})'.format(queue_movies[movie]['movie']['title'], queue_movies[movie]['movie']['year'])
|
||||||
|
quality = (queue_movies[movie]['quality']['quality']['name'])
|
||||||
|
protocol = (queue_movies[movie]['protocol'].upper())
|
||||||
|
|
||||||
|
if protocol == 'USENET':
|
||||||
|
protocol_id = 1
|
||||||
|
else:
|
||||||
|
protocol_id = 0
|
||||||
|
|
||||||
|
queue.append((name, queue_movies[movie]['id']))
|
||||||
|
|
||||||
|
for movie, id in queue:
|
||||||
|
influx_payload.append(
|
||||||
|
{
|
||||||
|
"measurement": "Radarr",
|
||||||
|
"tags": {
|
||||||
|
"type": "Queue",
|
||||||
|
"tmdbId": id,
|
||||||
|
"server": server_id
|
||||||
|
},
|
||||||
|
"time": now,
|
||||||
|
"fields": {
|
||||||
|
"name": movie,
|
||||||
|
"quality": quality,
|
||||||
|
"protocol": protocol,
|
||||||
|
"protocol_id": protocol_id
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
# Empty queue or else things get foo bared
|
||||||
|
queue = []
|
||||||
|
|
||||||
|
return influx_payload
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
parser = argparse.ArgumentParser(prog='Radarr stats operations',
|
||||||
|
description='Script to aid in data gathering from Radarr', formatter_class=RawTextHelpFormatter)
|
||||||
|
|
||||||
|
parser.add_argument("--missing", action='store_true',
|
||||||
|
help='Get missing movies')
|
||||||
|
|
||||||
|
parser.add_argument("--missing_avl", action='store_true',
|
||||||
|
help='Get missing available movies')
|
||||||
|
|
||||||
|
parser.add_argument("--queue", action='store_true',
|
||||||
|
help='Get movies in queue')
|
||||||
|
|
||||||
|
opts = parser.parse_args()
|
||||||
|
|
||||||
|
if opts.missing:
|
||||||
|
influx_sender(get_missing_movies())
|
||||||
|
|
||||||
|
elif opts.missing_avl:
|
||||||
|
influx_sender(get_missing_avl())
|
||||||
|
|
||||||
|
elif opts.queue:
|
||||||
|
influx_sender(get_queue_movies())
|
||||||
|
|
||||||
|
elif len(sys.argv) == 1:
|
||||||
|
parser.print_help(sys.stderr)
|
||||||
|
sys.exit(1)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue