autobrr/internal/indexer/definitions/acidlounge.yaml
Frederick Robinson fef0da5711
feat(definitions): add expectations for test lines (#1257)
* factor out test helpers

* refactor, add tests for animebytes

* revert test refactor

* better name

* change format, migrate some examples

* migrated remaining test cases

* add comment about `Test` vs `Tests`

* refactor

* reorder expectations to match vars

* generate

* turn on strict unmarshalling, remove old `Test` from schema

* start modifying actual definitions

* done with the As

* Bs

* C, D

* E, F

* G, H, I, ... L

* M, N

* O, P

* R

* bonus error. without this, pattern/vars disagreement can panic.

* S

* T, U

* X.. Now we know our ABCs next time won't you sing with meeeee

* fix another test

* another driveby change

* be less strict parsing custom definitions

* fix(definitions): load custom definitions

---------

Co-authored-by: ze0s <ze0s@riseup.net>
2023-11-18 15:41:39 +01:00

101 lines
2.9 KiB
YAML

---
#id: AC1D
name: Acid-Lounge
identifier: acidlounge
description: Small general tracker.
language: en-us
urls:
- https://www.acid-lounge.org.uk/
privacy: private
protocol: torrent
supports:
- irc
- rss
# source: custom
settings:
- name: passkey
type: secret
required: true
label: Pass key
help: "Your passkey"
regex: /([\da-z]{32})
- name: uid
type: secret
required: true
label: User ID
help: "Your User ID"
regex: /(\d+)
irc:
network: Acid-Lounge
server: irc.acid-lounge.org.uk
port: 6697
tls: true
channels:
- "#acid-uploads"
announcers:
- ACiD-BaBy
settings:
- name: nick
type: text
required: true
label: Nick
help: Bot nick. Eg. user_bot
- name: auth.account
type: text
required: true
label: NickServ Account
help: NickServ account. Make sure to group your user and bot.
- name: auth.password
type: secret
required: true
label: NickServ Password
help: NickServ password
parse:
type: single
lines:
- tests:
- line: (Games/PC) The.Smallest.Game-ze0s https://www.acid-lounge.org.uk/details.php?id=3443&hit=1
expect:
category: Games/PC
torrentName: The.Smallest.Game-ze0s
baseUrl: https://www.acid-lounge.org.uk/
torrentId: "3443"
- line: (Music/MP3) TUNES_4_LYFE_WEB_iNT https://www.acid-lounge.org.uk/details.php?id=30104&hit=1
expect:
category: Music/MP3
torrentName: TUNES_4_LYFE_WEB_iNT
baseUrl: https://www.acid-lounge.org.uk/
torrentId: "30104"
- line: (XXX/0-Day) Cute.Stuff.69.XXX.VR180.2700p.MP4-s0ez https://www.acid-lounge.org.uk/details.php?id=30444221135&hit=1
expect:
category: XXX/0-Day
torrentName: Cute.Stuff.69.XXX.VR180.2700p.MP4-s0ez
baseUrl: https://www.acid-lounge.org.uk/
torrentId: "30444221135"
- line: (Movies/HD) Have.You.Seen.The.Cat.Tonight-WhereThat https://www.acid-lounge.org.uk/details.php?id=3018979898&hit=1
expect:
category: Movies/HD
torrentName: Have.You.Seen.The.Cat.Tonight-WhereThat
baseUrl: https://www.acid-lounge.org.uk/
torrentId: "3018979898"
- line: (TV-HD/X264) The.Eggerton.S01E01.720p.WEB.h264-OTA https://www.acid-lounge.org.uk/details.php?id=302099&hit=1
expect:
category: TV-HD/X264
torrentName: The.Eggerton.S01E01.720p.WEB.h264-OTA
baseUrl: https://www.acid-lounge.org.uk/
torrentId: "302099"
pattern: '\((.*)\) (.*) (https?\:\/\/[^\/]+\/).*id=(\d+)'
vars:
- category
- torrentName
- baseUrl
- torrentId
match:
infourl: "/details.php?id={{ .torrentId }}"
torrenturl: "/rssdownload.php?passkey={{ .passkey }}&uid={{ .uid }}&tid={{ .torrentId }}"