mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 08:49:13 +00:00

* feat: add Milkie definition * feat: add TorrentDay definition * feat: add MoreThanTV definition * feat: add TorrentSeeds definition Co-authored-by: Ludvig Lundgren <hello@ludviglundgren.se>
63 lines
1.7 KiB
YAML
63 lines
1.7 KiB
YAML
---
|
|
#id: TorrentSeeds
|
|
name: TorrentSeeds
|
|
identifier: torrentseeds
|
|
description: TorrentSeeds (TS) is a GENERAL/0-DAY tracker with great pretimes.
|
|
language: en-us
|
|
urls:
|
|
- https://torrentseeds.org
|
|
privacy: private
|
|
protocol: torrent
|
|
supports:
|
|
- irc
|
|
- rss
|
|
source: custom
|
|
settings:
|
|
- name: passkey
|
|
type: secret
|
|
label: Passkey
|
|
help: "Go to General / Get RSS / Check a category and click create your passkey is after torrent_pass="
|
|
|
|
irc:
|
|
network: Torrentseeds.org
|
|
server: irc.torrentseeds.org
|
|
port: 6697
|
|
tls: true
|
|
channels:
|
|
- "#announce"
|
|
announcers:
|
|
- torrentseeds
|
|
settings:
|
|
- name: nickserv.account
|
|
type: text
|
|
required: true
|
|
label: NickServ Account
|
|
help: NickServ account. Make sure to group your user and bot. Eg. user_bot
|
|
- name: nickserv.password
|
|
type: secret
|
|
required: false
|
|
label: NickServ Password
|
|
help: NickServ password
|
|
- name: invite_command
|
|
type: secret
|
|
default: "Cerberus identify USERNAME IRCKEY"
|
|
required: true
|
|
label: Invite command
|
|
help: Invite auth with Cerberus. Replace USERNAME and IRCKEY
|
|
|
|
parse:
|
|
type: single
|
|
lines:
|
|
- test:
|
|
- "New: This.Is.A.New.show.S00E00.720p.WEB.H264-Test .:. Category: TV/HD .:. Size: 364.82 MB .:. URL: https://www.torrentseeds.org/details.php?id=000000 .:. Uploaded by: George."
|
|
pattern: 'New: (.*) .:. Category: (.*) .:. Size: (.*) .:. URL: (https?\:\/\/[^\/]+)\/.*id=(\d+) .:. Uploaded by: (.*).'
|
|
vars:
|
|
- torrentName
|
|
- category
|
|
- size
|
|
- baseUrl
|
|
- torrentId
|
|
- uploader
|
|
|
|
match:
|
|
torrenturl: "{{ .baseUrl }}/download.php?torrent={{ .torrentId }}&torrent_pass={{ .passkey }}"
|