Skip to content
View in the app

A better way to browse. Learn more.

Unraid

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Script to automatically pull movies/shows from top lists on trakt.tv and add them to ombi so it can send them to sonarr/radarr.

Featured Replies

Tired of adding movies/shows manually in ombi/sonarr/radarr? Here is a script that fetches movies/shows from the top trakt.tv lists: "popular", "recommended", "anticipated", "trending", "boxoffice"  and adds them to ombi. I'm by no means any coding expert, this is all with the help of ChatGPT. :)

 

I know about traktarr, but I wanted something integrated with ombi so I thought why not make it myself and maybe learn some things along the way.

 

You can set the limit for how many movies/shows it should pull in the .env file (if not set it defaults to 5). The script checks your already requested items in ombi and ignores them if present in the lists it pulls from trakt. Now some of the list stays fairly static, like the "popular" list for example. And the "anticipated" list changes more frequently. So that's why you can set your limits per list in the .env file. I've not tested the script with anything over 22 as a limit for each list. The script only pulls from the first page for each list as of right now, so it should be about 30ish items max per list. This suits my needs, but it's not a hard task to get it to check more pages if you want to. I run my script once a week. I thought about making the script push a notification to unraid saying how many movies/shows was requested, but that's for the next version. I have email notification set up in ombi so I get all the requested items in my inbox anyway, but a number of total requests would be nice.

 

You need a few things to run this:
1. If you plan to run the script directly on unraid you need Nerd tools from CA to install python3 and pip. 
2. The user script plugin from CA
3. A free trakt.tv account, to get the API key for trakt.
4. A reverse proxy and a domain.
5. Create a .env file with the following content and save it in a folder on the flash drive (or wherever you're running the script from). Maybe the Extras folder if you have it. Or simply create a folder called scripts. Place the .env file and the script in the same folder. Remember to replace the placeholders with your info.

 

TRAKT_ENDPOINT=https://api.trakt.tv
TRAKT_API_KEY=YOUR_TRAKT_API_KEY

OMBI_MOVIE_ENDPOINT=https://YOUR_DOMAIN/api/v1/Request/movie
OMBI_MOVIE_API_KEY=OMBI_API_KEY

OMBI_TV_ENDPOINT=https://YOUR_DOMAIN/api/v2/Requests/tv
OMBI_TV_REQUESTS_ENDPOINT=https://YOUR_DOMAIN/api/v1/Request/tv?status=Available&status=Processing

OMBI_TV_API_KEY=OMBI_API_KEY
OMBI_USER=YOUR_OMBI_USERNAME

MOVIE_POPULAR_LIMIT=
MOVIE_RECOMMENDED_LIMIT=
MOVIE_ANTICIPATED_LIMIT=
MOVIE_TRENDING_LIMIT=
MOVIE_BOXOFFICE_LIMIT=

SHOW_POPULAR_LIMIT=
SHOW_RECOMMENDED_LIMIT=
SHOW_ANTICIPATED_LIMIT=
SHOW_TRENDING_LIMIT=

 

6. You need the following python dependencies, install with pip. If running directly on unraid create a userscript with the following and set to run at array start.

 

#!/bin/bash
pip install requests
pip install logging
pip install os
pip install datetime
pip install time
pip install python-dotenv

 

7. And the script it self, name it what_you_want.py

import requests
import logging
import os
import time
import subprocess
from requests.adapters import HTTPAdapter
from requests.packages.urllib3.util.retry import Retry
from dotenv import load_dotenv

# Load environment variables
load_dotenv()

# Set up logging
logging.basicConfig(level=logging.DEBUG, format='%(asctime)s - %(name)s - %(levelname)s - %(message)s')
log_file = "ombi_requests.log"
if not os.path.exists(log_file):
    open(log_file, 'w').close()
file_handler = logging.FileHandler(log_file)
file_handler.setLevel(logging.DEBUG)
logging.getLogger().addHandler(file_handler)

# Initialize counters and lists for new requests
new_movie_requests_count = 0
new_tv_show_requests_count = 0
requested_movie_titles = []
requested_show_titles = []

# Helper function to get limit values from environment variables
def get_limit_from_env(var_name, default):
    try:
        return int(os.getenv(var_name, default))
    except ValueError:
        logging.error(f"Environment variable {var_name} must be an integer. Using default value: {default}")
        return int(default)

# Define list names to pull from Trakt.tv for movies and shows
movie_list_names = ["popular", "recommended", "anticipated", "trending", "boxoffice"]
show_list_names = ["popular", "recommended", "anticipated", "trending"]

# Load limit values from environment variables
movie_limits = {name: get_limit_from_env(f"MOVIE_{name.upper()}_LIMIT", '5') for name in movie_list_names}
show_limits = {name: get_limit_from_env(f"SHOW_{name.upper()}_LIMIT", '5') for name in show_list_names}

requested_movies = set()
requested_shows = set()

# Create a retry strategy
retry_strategy = Retry(
    total=3,
    status_forcelist=[400, 401, 403, 404, 500, 502, 503, 504],
    allowed_methods=["GET", "POST"],
    backoff_factor=2
)
adapter = HTTPAdapter(max_retries=retry_strategy)
http = requests.Session()
http.mount("https://", adapter)
http.mount("http://", adapter)

# Delay time between requests
delay_time = 15

# Set up Trakt.tv API endpoint and headers
trakt_endpoint = os.getenv('TRAKT_ENDPOINT')
trakt_headers = {
    "Content-Type": "application/json",
    "trakt-api-key": os.getenv('TRAKT_API_KEY'),
    "trakt-api-version": "2",
}

# Set up Ombi API endpoint and headers
ombi_movie_endpoint = os.getenv('OMBI_MOVIE_ENDPOINT')
ombi_movie_headers = {
    "Content-Type": "application/json",
    "ApiKey": os.getenv('OMBI_MOVIE_API_KEY'),
    "UserName": os.getenv('OMBI_USER'),
}

ombi_tv_endpoint = os.getenv('OMBI_TV_ENDPOINT')
ombi_tv_requests_endpoint = os.getenv('OMBI_TV_REQUESTS_ENDPOINT')
ombi_tv_headers = {
    "Content-Type": "application/json",
    "ApiKey": os.getenv('OMBI_TV_API_KEY'),
    "UserName": os.getenv('OMBI_USER'),
    "OmbiVersion": "3",
}

# Function to fetch existing movie requests from Ombi
def fetch_movie_requests(endpoint, headers, request_list):
    try:
        response = http.get(endpoint, headers=headers)
        response.raise_for_status()
        if "json" in response.headers.get("Content-Type", ""):
            requests_data = response.json()
            for request in requests_data:
                request_list.add(request.get('theMovieDbId'))
    except requests.exceptions.HTTPError as err:
        logging.error("Failed to get current movie requests from Ombi: %s", err)
    except ValueError as err:
        logging.error("Failed to decode movie response as JSON: %s", err)

# Function to fetch existing TV show requests from Ombi
def fetch_tv_requests(endpoint, headers, request_list):
    try:
        response = http.get(endpoint, headers=headers)
        response.raise_for_status()
        if "json" in response.headers.get("Content-Type", ""):
            requests_data = response.json()
            for request in requests_data:
                request_list.add(request.get('tvDbId'))
                request_list.add(request.get('theMovieDbId'))
    except requests.exceptions.HTTPError as err:
        logging.error("Failed to get current TV requests from Ombi: %s", err)
    except ValueError as err:
        logging.error("Failed to decode TV response as JSON: %s", err)

# Function to request a movie from Ombi
def request_movie(endpoint, headers, item, request_list):
    global new_movie_requests_count
    global requested_movie_titles
    
    tmdb_id = item["movie"]["ids"].get("tmdb")
    
    # Check if the movie has already been requested by its TMDB ID
    if tmdb_id in request_list:
        logging.debug("Movie '%s' already requested", item['movie']['title'])
        return

    # Prepare the data payload for the movie request
    data = {"theMovieDbId": tmdb_id}
    
    # Make the POST request to Ombi
    try:
        response = http.post(endpoint, headers=headers, json=data)
        response.raise_for_status()
    except requests.exceptions.HTTPError as err:
        logging.error("Failed to request movie '%s' from Ombi: %s", item['movie']['title'], err)
        return

    # Log the successful request and append the TMDB ID and title to the lists
    logging.info("Requested movie: %s", item['movie']['title'])
    request_list.add(tmdb_id)
    requested_movie_titles.append(item['movie']['title'])
    new_movie_requests_count += 1
    time.sleep(delay_time)

# Function to request a TV show from Ombi
def request_tv_show(endpoint, headers, item, request_list):
    global new_tv_show_requests_count
    global requested_show_titles
    
    tmdb_id = item["show"]["ids"].get("tmdb")
    tvdb_id = item["show"]["ids"].get("tvdb")

    # Check if the TV show has already been requested by TMDB ID or TVDB ID
    if tvdb_id in request_list or tmdb_id in request_list:
        logging.debug("Show '%s' already requested", item['show']['title'])
        return

    # Prepare the data payload for the TV show request
    data = {"theMovieDbId": tmdb_id, "requestAll": True}
    
    # Make the POST request to Ombi
    try:
        response = http.post(endpoint, headers=headers, json=data)
        response.raise_for_status()
    except requests.exceptions.HTTPError as err:
        logging.error("Failed to request show '%s' from Ombi: %s", item['show']['title'], err)
        return

    # Log the successful request and append both the IDs and title to the lists
    logging.info("Requested show: %s", item['show']['title'])
    if tvdb_id:
        request_list.add(tvdb_id)
    if tmdb_id:
        request_list.add(tmdb_id)
    requested_show_titles.append(item['show']['title'])
    new_tv_show_requests_count += 1
    time.sleep(delay_time)

# Fetch existing movie and TV show requests
fetch_movie_requests(ombi_movie_endpoint, ombi_movie_headers, requested_movies)
fetch_tv_requests(ombi_tv_requests_endpoint, ombi_tv_headers, requested_shows)

# Process movie lists
for list_name in movie_list_names:
    limit = movie_limits[list_name]
    list_endpoint = f"{trakt_endpoint}/movies/{list_name}?extended=full&page=1&limit={limit}"
    try:
        response = http.get(list_endpoint, headers=trakt_headers)
        response.raise_for_status()
        results = response.json()
        for item in results:
            if "movie" in item:
                request_movie(ombi_movie_endpoint, ombi_movie_headers, item, requested_movies)
    except requests.exceptions.HTTPError as err:
        logging.error("Failed to get list of movies from Trakt.tv: %s", err)

# Process show lists
for list_name in show_list_names:
    limit = show_limits[list_name]
    list_endpoint = f"{trakt_endpoint}/shows/{list_name}?extended=full&page=1&limit={limit}"
    try:
        response = http.get(list_endpoint, headers=trakt_headers)
        response.raise_for_status()
        results = response.json()
        for item in results:
            if "show" in item:
                request_tv_show(ombi_tv_endpoint, ombi_tv_headers, item, requested_shows)
    except requests.exceptions.HTTPError as err:
        logging.error("Failed to get list of shows from Trakt.tv: %s", err)

# Send Unraid notification of how many movies and shows were requested, including their titles
def send_unraid_notification(movies_count, shows_count, movie_titles, show_titles):
    movie_titles_str = "<br>".join(movie_titles) if movie_titles else "No movies requested"
    show_titles_str = "<br>".join(show_titles) if show_titles else "No shows requested"
    subject = "Ombi requests"
    message = f"Number of movies: {movies_count}<br>{movie_titles_str}<br><br>Number of TV shows: {shows_count}<br>{show_titles_str}"
    
    logging.debug(f"Notification message: {message}")  # Log the notification message for debugging
    
     # Create the notification command
    notification_command = [
        '/usr/local/emhttp/webGui/scripts/notify',
        '-s', subject,
        '-d', message
    ]
    
    # Run the notification command
    subprocess.run(notification_command, check=True, text=True)

# Call the function with the counters and titles at the very end
send_unraid_notification(new_movie_requests_count, new_tv_show_requests_count, requested_movie_titles, requested_show_titles)

 

8. You can create a user script and run the script once a week or as often as you like. The content of the script should just be: python3 /boot/scripts/name_of_your_script.py Replace the path with your own obviously

 

Changelog:

25.08.2024 - Fixed the movie requests function so it now works correctly. Added unraid notification of total number of movies/shows requested.

15.09.2024 - Added title of requested movie/show to unraid notification. 

Edited by strike

  • 8 months later...
  • Author

So I've been using this script since I posted it and it's been working great for shows, but I noticed the last few months that it was requesting very few movies. So I finally got around to fixing that. Turns out the script was using both themoviedb id and the thetvdb id for both movies and shows, which caused a mismatch thinking some movies were requested when they were not. I can't remember why I did that, but i think there was a reasoning behind it. So I hope I didn't break the show request now :P The script already requested shows earlier this evening before I updated the script. So I guess I will know next week when it runs if I broke it or not. I just tested it once now and it did request 2 shows after I changed the show limit just to test, so I think I'm good. And it requested a whole bunch of movies so I know that's working.

 

I also did a small update like 6 months ago. I mentioned in my first post adding a notification to undraid, so I did that. Since I never got any response here I thought no one was interested so I didn't bother posting it. But I see now that the thread has had some views at least, so maybe someone is using it.

 

Key Changes:

 

1. Separated fetch_movie_requests and fetch_tv_requests: Different functions to handle fetching movie and TV show requests separately and append only theMovieDbId for movies and both the tvDbId and theMovieDbId  for shows. 

2. Separated request_movie and request_tv_show functions: Different functions to handle requesting movies and TV shows separately, ensuring we only use relevant IDs.

3. Added code to send notification to unraid for how many movies/shows were requested. 

 

There's still a few things I'd like to fix, but I don't think it's the script's fault. For some reason there are a few shows that gets requested which are already requested and available. I think the problem is my ombi database is missing the tvDbid for those shows. I've confirmed that some of the show IDs are 0 (just don't know which ones) when fetching the list from ombi. I will add code to print the show names as well to the log and not just the IDs so I can confirm my suspicion.
 

I should really learn to use git and github so I can post the code there..

Edited by strike

  • Author

So one more small update to the notification code. It now prints the title of the movie/show in addition to a total number of requests. Now, if you have email notification set up in the webui notification settings the formatting in the email is not optimal as I couldn't get it to do line breaks in the email. But the notification in the webui itself looks ok. If anyone has an idea how to get the formatting in the email notification correctly while preserving the webui notification formatting, please let me know.


Also, I'm using the built-in notify command in unraid to send the notification, does anyone know how long the message can be for the -d option? I tried using the -m option (for longer messages), but then the message doesn't show in the webui only in the email. So far in my test, only 2 items has been requested as I ran my tests after the weekly run of the script was completed. So naturally not much to request then. So I don't know what happens with the notification if like 40 items get requested in one run for example. Like it could be for a first run. Please let me know if anyone runs if for the first time. :) 

 

I'll post any updates to the code in the first post from now on so it doesn't get messy with lots of code updates in different posts. I'll still post a new post if I do any updates to the code tho.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.