No description
cmd/hoarder | ||
metainfo | ||
queue | ||
.gitignore | ||
.gitmodules | ||
.travis.yml | ||
hoarder.sh | ||
LICENSE | ||
README.md |
Hoarder
Uploads .torrent files from a local "blackhole" to a remote (SSH) rtorrent watch folder. From there, rtorrent is polled over XMLRPC as to whether the torrent is completed. Finally, the files are downloaded over a multithreaded SSH connection and saved to the local machine. The blackhole is used as a queue and will have its .torrent files deleted.
Installation
Manual
- Install Go for your Operating System
- Run
$ go get -u github.com/tblyler/hoarder/cmd/hoarder
- If your
GOPATH
is in yourPATH
, run$ hoarder -config $PATH_TO_HOARDER_CONF
Configuration
Example
# The file mode to use for downloaded files and directories
file_download_filemode: 0777
# The correlation of .torrent file paths and where their contents should be downloaded to"
watch_to_download_paths:
/home/tblyler/torrent_files/tv: /home/tblyler/Downloads/tv
/home/tblyler/torrent_files/movies: /home/tblyler/Downloads/movies
/home/tblyler/torrent_files: /home/tblyler/Downloads
# The root path to temporarily download to and then move to the folder in the setting above. The destination path is created underneath the temp_download_path
temp_download_path: /home/tblyler/tempDownloads
# If defined, the finished .torrent files finished are moved to their respected path here. Otherwise, they are deleted.
watch_to_finish_path:
/home/tblyler/torrent_files/tv: /home/tblyler/completed_torrent_files/tv
/home/tblyler/torrent_files: /home/tblyler/completed_torrent_files
# The time in nano seconds to update the list of torrents and their statuses in rTorrent
rtorrent_update_interval: 60000000000
# The number of concurrent completed torrent downloads to have at one time
download_jobs: 2
# Whether or not to attempt to resume a previously interrupted download
resume_downloads: true
rtorrent:
# The address to the rtorrent XMLRPC endpoint
addr: mycoolrtorrentserver.com/XMLRPC
# true to ignore the certificate authenticity; false to honor it
insecure_cert: false
# The HTTP Basic auth username to use for rtorrent's XMLRPC
username: JohnDoe
# The HTTP Basic auth password to use for rtorrent's XMLRPC
password: "correct horse battery staple"
ssh:
# The ssh username to use for getting finished torrents from the remote host
username: JohnDoe
# You may choose to use an ssh key or ssh password. If both are supplied, the password will not be used.
# The SSH password to use for SSH authentication
password: "correct horse battery staple SSH"
# The path to the private SSH key for SSH authentication
privkey_path: /home/tblyler/.ssh/id_rsa
# The SSH address to connect to
addr: "mysshserver.com:22"
# The time in nano seconds to wait for an SSH connection attempt
connect_timeout: 30000000000