autobrr/internal/indexer/definitions/ncore.yaml
ze0s 4bf023d030
feat(irc): support optional SASL and NickServ auth (#511)
* feat(irc): support SASL and NickServ auth

* feat(irc): add missing fields

* feat(irc): support SASL and NickServ auth

* feat(irc): add missing fields

* feat(irc): add validation

* feat(indexers): unify and set required values

* feat(irc): add postgres migrations

* feat(irc): use nick as handlerkey

* feat(irc): use account for nickserv

* fix(irc): pg db migration
2022-10-27 22:25:58 +02:00

72 lines
1.8 KiB
YAML

#id: nCore
name: nCore
identifier: ncore
description: nCore
language: en-us
urls:
- https://ncore.pro
privacy: private
protocol: torrent
supports:
- irc
- rss
source: unknown
settings:
- name: passkey
type: secret
required: true
label: Passkey
help: "Check a torrent download link. key='value' is your passkey."
irc:
network: nCore
server: irc.ncore.pro
port: 6697
tls: true
channels:
- "#ncore-bot"
announcers:
- nCore
settings:
- name: nick
type: text
required: true
label: Nick
help: Bot nick. Eg. user|autodl
- name: auth.account
type: text
required: false
label: NickServ Account
help: NickServ account. Make sure to group your user and bot.
- name: auth.password
type: secret
required: false
label: NickServ Password
help: NickServ password
- name: invite_command
type: secret
default: "NBOT !invite IRCKEY"
required: true
label: Invite command
help: Invite auth with the key from https://ncore.pro/irc.php. Replace IRCKEY
parse:
type: single
lines:
- test:
- "[NEW TORRENT in mp3] Artist name - Album name > 115.63 MiB in 17F > https://ncore.pro/torrents.php?action=details&id=0000000"
- "[NEW TORRENT in xvidser_hun] Some.Show.S02E67.RTLM.WEB-DL.H264.HUN-GROUP > 269.31 MiB in 2F > https://ncore.pro/torrents.php?action=details&id=0000000"
pattern: '\[NEW TORRENT in (.*)\] (.*) > (.*) in .* > (https?://ncore.pro.*action=).*id=(.*)'
vars:
- category
- torrentName
- torrentSize
- baseUrl
- torrentId
match:
# https://ncore.pro/torrents.php?action=download&id=0000&key=00000
torrenturl: "{{ .baseUrl }}download&id={{ .torrentId }}&key={{ .passkey }}"