flood icon indicating copy to clipboard operation
flood copied to clipboard

Ratio grouping based on torrent label

Open SotirisParaskevopoulos opened this issue 6 years ago • 7 comments

Type: Feature Request

Resources distribution

Summary

The seedbox will be able to automatically stop or keep seeding torrent(s) on specific ratio setting based on the label

Idea of implementation

Rutorrent has the same feature

SotirisParaskevopoulos avatar Nov 17 '18 14:11 SotirisParaskevopoulos

Why based on labels ?

noraj avatar Nov 17 '18 19:11 noraj

First of all thank you for your fast reply! User will be able to choose which torrent needs to be seeded and for how long (Group Ratio). I wrote by label because of interaction with other programs like Sonnar or Couchpotato in which you have the ability to pre-define the label of torrent that they will add later to Flood. It will help to make more things automatically instead of stopping the torrent after you hit the "goal".

SotirisParaskevopoulos avatar Nov 18 '18 01:11 SotirisParaskevopoulos

If only we could use Sonarr with flood. :(

bootldrDNB avatar Nov 19 '18 15:11 bootldrDNB

Well, actually you can! I can post a tutorial when I'll get home if you want. It's basically an ngix configuration i'm using that opens rtorrent to apps like Sonarr, Couchpotato etc.

SotirisParaskevopoulos avatar Nov 20 '18 09:11 SotirisParaskevopoulos

Please do!

bootldrDNB avatar Nov 20 '18 14:11 bootldrDNB

There you go! After you have successfully installed Flood, Ngix and Openssl:

Create user file using openssl sudo sh -c "echo -n 'yourusername:' >> /etc/nginx/.htpasswd"

Add password to that user sudo sh -c "openssl passwd -apr1 >> /etc/nginx/.htpasswd"

Create a configuration file at Nginx folder sudo touch /etc/nginx/sites-enabled/server.rpc.conf

sudo nano /etc/nginx/sites-enabled/server.rpc.conf

Add the following lines inside that file

location /RPC2 {
  auth_basic  "Restricted Content";
  auth_basic_user_file  /etc/nginx/.htpasswd;
  scgi_pass  127.0.0.1:5000;
  include scgi_params;
}

After that you are ready setup sonarr or whichever app you like to work with flood.

SotirisParaskevopoulos avatar Nov 21 '18 13:11 SotirisParaskevopoulos

Well that was simple, thanks dude!

bootldrDNB avatar Nov 21 '18 17:11 bootldrDNB