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

* refactor: update http handlers * feat: add trace log level * refactir: irc handler * refactor(definitions): add irc settings and invite cmd: * feat: add dft values to inputs * refactor: indexer irc forms * refactor(definitions): fix nickserv.password var: * feat: pre fill indexer name field * refactor: handle stopping and updates
74 lines
2 KiB
YAML
74 lines
2 KiB
YAML
---
|
|
#id: alpharatio
|
|
name: AlphaRatio
|
|
identifier: alpharatio
|
|
description: AlphaRatio (AR) is a private torrent tracker for 0DAY / GENERAL
|
|
language: en-us
|
|
urls:
|
|
- https://alpharatio.cc/
|
|
privacy: private
|
|
protocol: torrent
|
|
supports:
|
|
- irc
|
|
- rss
|
|
source: gazelle
|
|
settings:
|
|
- name: authkey
|
|
type: secret
|
|
label: Auth key
|
|
help: Right click DL on a torrent and get the authkey.
|
|
- name: torrent_pass
|
|
type: secret
|
|
label: Torrent pass
|
|
help: Right click DL on a torrent and get the torrent_pass.
|
|
|
|
irc:
|
|
network: AlphaRatio
|
|
server: irc.alpharatio.cc
|
|
port: 6697
|
|
tls: true
|
|
channels:
|
|
- "#Announce"
|
|
announcers:
|
|
- Voyager
|
|
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: true
|
|
label: NickServ Password
|
|
help: NickServ password
|
|
- name: invite_command
|
|
type: secret
|
|
default: "Voyager autobot USERNAME IRCKey"
|
|
required: false
|
|
label: Invite command
|
|
help: Invite auth with Voyager.
|
|
|
|
parse:
|
|
type: multi
|
|
lines:
|
|
- test:
|
|
- "[New Release]-[MovieHD]-[That.Movie.2017.INTERNAL.1080p.BluRay.CRF.x264-GROUP]-[URL]-[ https://alpharatio.cc/torrents.php?id=000000 ]-[ 000000 ]-[ Uploaded 2 Mins, 59 Secs after pre. ]"
|
|
pattern: \[New Release\]-\[(.*)\]-\[(.*)\]-\[URL\]-\[ (https?://.*)id=\d+ \]-\[ (\d+) \](?:-\[ Uploaded (.*) after pre. ])?
|
|
vars:
|
|
- category
|
|
- torrentName
|
|
- baseUrl
|
|
- torrentId
|
|
- preTime
|
|
- test:
|
|
- "[AutoDL]-[MovieHD]-[000000]-[ 1 | 10659 | 1 | 1 ]-[That.Movie.2017.INTERNAL.1080p.BluRay.CRF.x264-GROUP]"
|
|
pattern: \[AutoDL\]-\[.*\]-\[.*\]-\[ ([01]) \| (\d+) \| ([01]) \| ([01]) \]-\[.+\]
|
|
vars:
|
|
- scene
|
|
- torrentSize
|
|
- freeleech
|
|
- auto
|
|
|
|
match:
|
|
torrenturl: "{{ .baseUrl }}action=download&id={{ .torrentId }}&authkey={{ .authkey }}&torrent_pass={{ .torrent_pass }}"
|