Coder Social home page Coder Social logo

jak9i / premiumizearr Goto Github PK

View Code? Open in Web Editor NEW

This project forked from jackdallas/premiumizearr

0.0 0.0 0.0 518 KB

Bridge your *Arr clients (Sonarr, Radarr) to your premiumize.me (upload/download manager)

License: GNU General Public License v3.0

Shell 0.18% JavaScript 2.49% Go 78.53% Makefile 0.55% HTML 0.74% Svelte 17.51%

premiumizearr's Introduction

Premiumizearr

Maintenace Mode

This project is in maintenance mode, I'll address security issues and feature PR's if people want to submit them but I no longer use the service as the 1tb limit was to low for my needs.

If anyone creates a fork they add features to I'll happily list them here as an alternative, just open an issue.

Build

Build

Features

  • Monitor blackhole directory to push .magnet and .nzb to Premiumize.me
  • Monitor and download Premiumize.me transfers (web ui on default port 8182)
  • Mark transfers as failed in Radarr & Sonarr

Support the project by using my invite code

Invite Code

Install

Grab the latest release artifact links here

Binary

System Install

wget https://github.com/JackDallas/Premiumizearr/releases/download/x.x.x/Premiumizearr_x.x.x_linux_amd64.tar.gz
tar xf Premiumizearr_x.x.x.x_linux_amd64.tar.gz
cd Premiumizearr_x.x.x.x_linux_amd64
sudo mkdir /opt/premiumizearrd/
sudo cp -r premiumizearrd static/ /opt/premiumizearrd/
sudo cp premiumizearrd.service /etc/systemd/system/
sudo systemctl-reload
sudo systemctl enable premiumizearrd.service
sudo systemctl start premiumizearrd.service

User Install

wget https://github.com/JackDallas/Premiumizearr/releases/download/x.x.x/Premiumizearr_x.x.x_linux_amd64.tar.gz
tar xf Premiumizearr_x.x.x.x_linux_amd64.tar.gz
cd Premiumizearr_x.x.x.x_linux_amd64
mkdir -p ~/.local/bin/
cp -r premiumizearrd static/ ~/.local/bin/
echo -e "export PATH=~/.local/bin/:$PATH" >> ~/.bashrc 
source ~/.bashrc

You're now able to run the daemon from anywhere just by typing premiumizearrd

deb file

wget https://github.com/JackDallas/Premiumizearr/releases/download/x.x.x/premiumizearr_x.x.x._linux_amd64.deb
sudo dpkg -i premiumizearr_x.x.x.x_linux_amd64.deb

Docker

Docker images are listed here

docker run \
    -v /home/dallas/test/data:/data \
    -v /home/dallas/test/blackhole:/blackhole \
    -v /home/dallas/test/downloads:/downloads \
    -p 8182:8182 \
    ghcr.io/jackdallas/premiumizearr:latest

If you wish to increase logging (which you'll be asked to do if you submit an issue) you can add -e PREMIUMIZEARR_LOG_LEVEL=trace to the command

Note: The /data mount is where the config.yaml and log files are kept

Setup

Premiumizearrd

Running for the first time the server will start on http://0.0.0.0:8182

If you already use this binding for something else you can edit them in the config.yaml

WARNING: This app exposes api keys in the ui and does not have authentication, it is strongly recommended you put it behind a reverse proxy with auth and set the host to 127.0.0.1 to hide the app from the web.

Sonarr/Radarr

  • Go to your Arr's Download Client settings page

  • Add a new Torrent Blackhole client, set the Torrent Folder to the previously set BlackholeDirectory location, set the Watch Folder to the previously set DownloadsDirectory location

  • Add a new Usenet Blackhole client, set the Nzb Folder to the previously set BlackholeDirectory location, set the Watch Folder to the previously set DownloadsDirectory location

Reverse Proxy

Premiumizearr does not have authentication built in so it's strongly recommended you use a reverse proxy

Nginx

location /premiumizearr/ {
    proxy_pass http://127.0.0.1:8182/;
    proxy_set_header Host $proxy_host;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header X-Forwarded-Host $host;
    proxy_set_header X-Forwarded-Proto $scheme;
    proxy_redirect off;
    proxy_http_version 1.1;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection $http_connection;
}

premiumizearr's People

Contributors

jackdallas avatar dependabot[bot] avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.