mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 08:49:13 +00:00
feat(indexers): add Norbits (#151)
* feat(indexers): add norbits * docs: add norbits
This commit is contained in:
parent
9e1b6a62a7
commit
2035effbd0
2 changed files with 60 additions and 1 deletions
|
@ -7,7 +7,7 @@ autobrr monitors IRC announce channels to get releases as soon as they are avail
|
||||||
## Features:
|
## Features:
|
||||||
|
|
||||||
* Single binary + config for easy setup
|
* Single binary + config for easy setup
|
||||||
* Support for 26 trackers
|
* Support for 27 trackers
|
||||||
* Easy to use UI
|
* Easy to use UI
|
||||||
* Available torrent actions:
|
* Available torrent actions:
|
||||||
* qBittorrent
|
* qBittorrent
|
||||||
|
@ -40,6 +40,7 @@ Is your tracker missing? Add an issue to request it.
|
||||||
* Milkie
|
* Milkie
|
||||||
* MoreThanTV
|
* MoreThanTV
|
||||||
* Nebulance
|
* Nebulance
|
||||||
|
* Norbits
|
||||||
* Orpheus
|
* Orpheus
|
||||||
* PTP
|
* PTP
|
||||||
* RED
|
* RED
|
||||||
|
|
58
internal/indexer/definitions/norbits.yaml
Normal file
58
internal/indexer/definitions/norbits.yaml
Normal file
|
@ -0,0 +1,58 @@
|
||||||
|
---
|
||||||
|
#id: norbits
|
||||||
|
name: Norbits
|
||||||
|
identifier: norbits
|
||||||
|
description: NorBits is a Norwegian Private site for MOVIES / TV / GENERAL
|
||||||
|
language: nb-NO
|
||||||
|
urls:
|
||||||
|
- https://www.norbits.net
|
||||||
|
privacy: private
|
||||||
|
protocol: torrent
|
||||||
|
supports:
|
||||||
|
- irc
|
||||||
|
- rss
|
||||||
|
source: custom
|
||||||
|
settings:
|
||||||
|
- name: passkey
|
||||||
|
type: secret
|
||||||
|
label: Passkey
|
||||||
|
help: "Copy passkey from a download link"
|
||||||
|
|
||||||
|
irc:
|
||||||
|
network: Norbits
|
||||||
|
server: irc.norbits.net
|
||||||
|
port: 6697
|
||||||
|
tls: true
|
||||||
|
channels:
|
||||||
|
- "#Norbits"
|
||||||
|
announcers:
|
||||||
|
- NB
|
||||||
|
settings:
|
||||||
|
- name: nickserv.account
|
||||||
|
type: text
|
||||||
|
required: true
|
||||||
|
label: NickServ Account
|
||||||
|
help: NickServ account. Use primary nick or ask staff to allow grouped nick.
|
||||||
|
- name: nickserv.password
|
||||||
|
type: secret
|
||||||
|
required: true
|
||||||
|
label: NickServ Password
|
||||||
|
help: NickServ password
|
||||||
|
|
||||||
|
parse:
|
||||||
|
type: single
|
||||||
|
lines:
|
||||||
|
- test:
|
||||||
|
- "Ny torrent: Movie.2010.1080p.BluRay.x264.DTS-HD MA 5.1-OMEGA :: Kategori: Filmer/H.264/HD-1080p/i/Encode :: Scene: Nei :: St<53>rrelse: 9.69 GB :: https://norbits.net/details.php?id=000000"
|
||||||
|
- "Ny torrent: Some.TV.Show.s01e01.NORDIC.720p.DSNP.WEBRiP.DD.5.1.h264 :: Kategori: TV/H.264/HD-720p/Encode :: Scene: Nei :: St<53>rrelse: 891.04 MB :: https://norbits.net/details.php?id=000000"
|
||||||
|
pattern: "Ny torrent: (.*) :: Kategori: (.*) :: Scene: (.*) :: St.+rrelse: (.*) :: (https?\:\/\/[^\/]+\/).*[\?]id=(\d+)"
|
||||||
|
vars:
|
||||||
|
- torrentName
|
||||||
|
- category
|
||||||
|
- scene
|
||||||
|
- torrentSize
|
||||||
|
- baseUrl
|
||||||
|
- torrentId
|
||||||
|
|
||||||
|
match:
|
||||||
|
torrenturl: "{{ .baseUrl }}download.php?id={{ .torrentId }}&passkey={{ .passkey }}"
|
Loading…
Add table
Add a link
Reference in a new issue