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
59 lines
1.4 KiB
YAML
59 lines
1.4 KiB
YAML
---
|
|
#id: emp
|
|
name: Empornium
|
|
identifier: emp
|
|
description: Empornium (EMP) is a private torrent tracker for XXX
|
|
language: en-us
|
|
urls:
|
|
- https://www.empornium.is
|
|
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: DigitalIRC
|
|
server: irc.empornium.is
|
|
port: 6697
|
|
tls: true
|
|
channels:
|
|
- "#empornium-announce"
|
|
announcers:
|
|
- "^Wizard^"
|
|
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. Must have staff permission first.
|
|
- name: nickserv.password
|
|
type: secret
|
|
required: true
|
|
label: NickServ Password
|
|
help: NickServ password
|
|
|
|
parse:
|
|
type: single
|
|
lines:
|
|
- pattern: '^(.*?) - Size: ([0-9]+?.*?) - Uploader: (.*?) - Tags: (.*?) - (https://.*torrents.php\?)id=(.*)$'
|
|
vars:
|
|
- torrentName
|
|
- torrentSize
|
|
- uploader
|
|
- tags
|
|
- baseUrl
|
|
- torrentId
|
|
|
|
match:
|
|
torrenturl: "{{ .baseUrl }}action=download&id={{ .torrentId }}&authkey={{ .authkey }}&torrent_pass={{ .torrent_pass }}"
|