Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mindflavor/tormov
TORrent MOVer: a configurable torrent folder mover
https://github.com/mindflavor/tormov
rust-language script torrent
Last synced: 24 days ago
JSON representation
TORrent MOVer: a configurable torrent folder mover
- Host: GitHub
- URL: https://github.com/mindflavor/tormov
- Owner: MindFlavor
- License: mit
- Created: 2017-09-08T11:10:05.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2020-02-17T08:52:30.000Z (over 4 years ago)
- Last Synced: 2024-03-15T07:49:32.005Z (8 months ago)
- Topics: rust-language, script, torrent
- Language: Rust
- Homepage: https://mindflavor.github.io/tormov/
- Size: 16.6 KB
- Stars: 6
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TORMOV
[![legal](https://img.shields.io/github/license/mindflavor/tormov.svg)](LICENSE)
[![Crate](https://img.shields.io/crates/v/tormov.svg)](https://crates.io/crates/tormov) [![cratedown](https://img.shields.io/crates/d/tormov.svg)](https://crates.io/crates/tormov) [![cratelastdown](https://img.shields.io/crates/dv/tormov.svg)](https://crates.io/crates/tormov)
[![tag](https://img.shields.io/github/tag/mindflavor/tormov.svg)](https://github.com/MindFlavor/tormov/tree/v0.3.1)
[![release](https://img.shields.io/github/release/mindflavor/tormov.svg)](https://github.com/MindFlavor/tormov/tree/v0.3.1)
[![commitssince](https://img.shields.io/github/commits-since/mindflavor/tormov/v0.3.1.svg)](https://img.shields.io/github/commits-since/mindflavor/tormov/v0.3.1.svg)## TORrentMOVer
Simple script program to move completed torrents to specific folders.
Sometimes it's easy to let torrent download files to a generic directory and then move it afterwards. This program automates this task by:
1. Looking for RegEx patterns in the folder. You can specify exactly which folder/file to handle.
1. Checking if the downloads are completed. Every file (if there are more than one) must be completed.
1. Moving or linking the file/folder to the designated directory.The program is written in Rust so it's very quick and light on your system. The source code is very small so you can check yourself what it does in few moments.
## Installation
1. Make sure to have Rust installed. Grab it here [https://www.rust-lang.org/en-US/](https://www.rust-lang.org/en-US/) if you don't have it. This program is tested with rustc nightly but it should work with others versions too (I'm too lazy to test it myself, sorry :smile: ).
1. Install the tool with ```cargo install tormov```. This will install the latest published version. If you want the master branch use ```cargo install --git https://github.com/MindFlavor/tormov``` instead.
1. type ```tormov``` in the console to test the program execution. You'll get an error because of missing parameters. We'll cover them in the next section.## Parameters
TORMOV expects, from the command line, two parameters:
1. Configuration file.
1. Folder to analyze.So, for example, if you have a configuration file called ```tormov_config.json``` and you want to check the ```/var/lib/transmission-daemon/downloads/``` you can write:
```bash
$ tormov tormov_config.json /var/lib/transmission-daemon/downloads/
```## Configuration file
A sample configuration file is available here: [example_config.json](https://github.com/MindFlavor/tormov/blob/master/example_config.json). The format, however, is simple.
```json
{
"skipextension": "part",
"matches": [
{
"regex": "Arrow",
"destination": "/mnt/shows/Arrow",
"action": "Move"
},
{
"regex": "Big.Bang",
"destination": "/mnt/shows/The.big.bang.theory",
"action": "Move"
},
{
"regex": "Marvels.Agents.of.S.H.I.E.L.D.*",
"destination": "/mnt/shows/agents_of_the_shield",
"action": "Link"
}
]
}
```### skipextension
```skipextension``` is the extension appended whenever the file is not ready. Most torrent clients use ```part``` or ```incomplete``` but make sure to specify the right one.
### matches
The ```matches``` section is an array of entries you want to check. Each entry must have:
1. A regular expression to match in the field ```regex```.
1. A destination in the ```destination``` field. The destination is where the file/folder will be moved if the contents have been completely downloaded (that is, there is no file with ```skipextension``` anywhere in the folder).
1. An action to perform in case all the rules match. The supported actions are ```Move``` or ```Link```. The latter will create a symbolic link instead of moving the file. *Note*: right now linking is supported only on Linux, if you need Windows please drop a line.## Scheduling
While TORMOV does not have a scheduler it's fairly easy to automate it with cron jobs or systemd. For example with systemd you can schedule it creating two files. The first is ```tormov.service``` with these contents:
```
[Unit]
Description=TORrent MOVer[Service]
ExecStart=```
And another one called ```tormow.timer``` with the schedule:
```
[Unit]
Description=Runs tormov every minute[Timer]
OnBootSec=5min
OnUnitActiveSec=1minUnit=tormov.service
[Install]
WantedBy=timers.target```
Now simply start end optionally enable the timer with:
```bash
$ sudo systemctl start tormov.timer
$ sudo systemctl enable tormov.timer```
You can then check the output with ```sudo systemctl status tormov.service``` as usual.