Skip to content

An interface that ties into Radarr's API to allow searching for movies, verifying movies currently in the Radarr library, and adding movies to Radarr's queue.

License

Notifications You must be signed in to change notification settings

dynamiccookies/Radarr-Assistant

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

66 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Radarr-Assistant

GitHub GitHub Release Date GitHub release (latest by date)

A webpage integrated with Radarr's API that allows users to search for movies, verify movies currently in the Radarr library, and add new movies to Radarr's queue all without giving direct access to Radarr itself.

Note:

  • This integration utilizes IFTTT's Webhooks to connect from an exterally hosted web server to an internally hosted Radarr server.
  • This is NOT needed if you can utilize PHP cURL to directly call Radarr from your web server
  • However, if you do need to use IFTTT, you will need to create an account and build three integrations (documentation coming soon)

Example

image

Prerequisites

  • Radarr server
  • Web server
    • Must be able to access Radarr server

How to Install

  • Download the latest release
  • Unzip the release
  • Open the admin folder
  • Open the the config.php file in a text editor
  • Fill in the global variables: $debug, $https, $ip, $port, $radarr_api_key, $ifttt_api_key
    <?php
    // Declare and set global variables
    $debug = FALSE; // Changing to TRUE enables console logging in browser for troubleshooting
    $https = FALSE; // Change to TRUE if Radarr -> Settings (show advanced) -> 'Enable SSL' is enabled
    $ip = ''; // Publicly accessible IP address
    $port = ''; // Publicly accessible port (remember to open on your router)
    $radarr_api_key = ''; // Radarr API key (found in Radarr under Settings -> General
    $ifttt_api_key = ''; // IFTTT API key
  • Upload the release files to your web server

And you're done!

License

This project uses the MIT license.

About

An interface that ties into Radarr's API to allow searching for movies, verifying movies currently in the Radarr library, and adding movies to Radarr's queue.

Resources

License

Stars

Watchers

Forks