mirror of
https://github.com/Jackett/Jackett
synced 2025-02-21 05:47:09 +00:00
mvgroup: new trackers for the Main and Forum versions of the site. Completes #315
This commit is contained in:
parent
b4e81301a3
commit
fb904840b8
3 changed files with 328 additions and 0 deletions
|
@ -64,6 +64,8 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/
|
|||
* Gay-Torrents.net
|
||||
* LostFilm.tv
|
||||
* Metal Tracker
|
||||
* MVGroup Forum
|
||||
* MVGroup Main
|
||||
* NetHD
|
||||
* RuTracker
|
||||
* SkTorrent
|
||||
|
|
163
src/Jackett/Definitions/mvgroupforum.yml
Normal file
163
src/Jackett/Definitions/mvgroupforum.yml
Normal file
|
@ -0,0 +1,163 @@
|
|||
---
|
||||
site: mvgroupforum
|
||||
name: MVGroup Forum
|
||||
description: "MVGroup is a Semi-Private site dedicated to UK TV and DOCUMENTARIES. This definition is for the Forum Tracker site."
|
||||
language: en-us
|
||||
type: semi-private
|
||||
encoding: UTF-8
|
||||
links:
|
||||
- http://forums.mvgroup.org/
|
||||
|
||||
caps:
|
||||
categorymappings:
|
||||
- {id: 1, cat: Other, desc: "Other"}
|
||||
|
||||
modes:
|
||||
search: [q]
|
||||
tv-search: [q, season, ep]
|
||||
movie-search: [q]
|
||||
|
||||
settings:
|
||||
- name: username
|
||||
type: text
|
||||
label: Username
|
||||
- name: password
|
||||
type: password
|
||||
label: Password
|
||||
- name: hidef
|
||||
type: checkbox
|
||||
label: Show MVGroup HiDef Releases only
|
||||
default: false
|
||||
- name: withsubs
|
||||
type: select
|
||||
label: Subtitles
|
||||
default: "_"
|
||||
options:
|
||||
"_" : "none"
|
||||
"alb": "Albanian"
|
||||
"ara": "Arabic"
|
||||
"arm": "Armenian"
|
||||
"ass": "Assyrian"
|
||||
"bos": "Bosnian"
|
||||
"bul": "Bulgarian"
|
||||
"cat": "Catalan"
|
||||
"chi": "Chinese, simplified"
|
||||
"zho": "Chinese, traditional"
|
||||
"hrv": "Croatian"
|
||||
"cze": "Czech"
|
||||
"dan": "Danish"
|
||||
"dut": "Dutch"
|
||||
"eng": "English"
|
||||
"est": "Estonian"
|
||||
"fin": "Finnish"
|
||||
"fre": "French"
|
||||
"glg": "Galician"
|
||||
"geo": "Georgian"
|
||||
"ger": "German"
|
||||
"ell": "Greek"
|
||||
"heb": "Hebrew"
|
||||
"hin": "Hindi"
|
||||
"hun": "Hungarian"
|
||||
"ice": "Icelandic"
|
||||
"ind": "Indonesian"
|
||||
"ita": "Italian"
|
||||
"jpn": "Japanese"
|
||||
"kaz": "Kazakh"
|
||||
"kor": "Korean"
|
||||
"lav": "Latvian"
|
||||
"lit": "Lithuanian"
|
||||
"ltz": "Luxembourgish"
|
||||
"mac": "Macedonian"
|
||||
"may": "Malay"
|
||||
"nor": "Norwegian"
|
||||
"per": "Persian"
|
||||
"pol": "Polish"
|
||||
"por": "Portuguese"
|
||||
"rum": "Romanian"
|
||||
"rus": "Russian"
|
||||
"scc": "Serbian"
|
||||
"slo": "Slovak"
|
||||
"slv": "Slovenian"
|
||||
"spa": "Spanish"
|
||||
"swe": "Swedish"
|
||||
"tha": "Thai"
|
||||
"tur": "Turkish"
|
||||
"ukr": "Ukrainian"
|
||||
"vie": "Vietnamese"
|
||||
- name: seed
|
||||
type: checkbox
|
||||
label: Only released and seeded torrents
|
||||
default: false
|
||||
- name: info
|
||||
type: info
|
||||
label: Category for Sonarr and Radarr
|
||||
default: MVGroup does not use categories. In your Sonarr or Radarr Torznab Indexer settings, set the category to 100001.
|
||||
|
||||
login:
|
||||
path: index.php?act=Login&CODE=00
|
||||
method: form
|
||||
form: form[action^="?act=Login"]
|
||||
inputs:
|
||||
"UserName": "{{ .Config.username }}"
|
||||
"PassWord": "{{ .Config.password }}"
|
||||
"Privacy": "1"
|
||||
"CookieDate": "0"
|
||||
"CODE": "01"
|
||||
"referer": "http://forums.mvgroup.org/"
|
||||
"act": "Login"
|
||||
"submit": "Log me in"
|
||||
error:
|
||||
- selector: div.borderwrap:has(div.tablepad)
|
||||
message:
|
||||
selector: div.borderwrap div.tablepad
|
||||
test:
|
||||
path: index.php?http://forums.mvgroup.org/
|
||||
selector: tr td.nav_mem div span[id="member_menu"]
|
||||
|
||||
search:
|
||||
paths:
|
||||
- path: forumtracker.php
|
||||
inputs:
|
||||
"seed": "{{ if .Config.seed }}1{{else}}0{{end}}"
|
||||
"withsubs": "{{ re_replace .Config.withsubs \"_\" \"\" }}"
|
||||
"filter": "{{ if .Config.hidef }}hd+{{else}}{{end}}{{ .Keywords }}"
|
||||
|
||||
rows:
|
||||
selector: tr:has(a.magnetlink)
|
||||
fields:
|
||||
title:
|
||||
# fallback title (to prevent abend if neither optional is found)
|
||||
text: "title not found"
|
||||
title:
|
||||
optional: true
|
||||
selector: td.singleindent a[href^="/index.php?showtopic="]
|
||||
title:
|
||||
optional: true
|
||||
selector: td.doubleindent
|
||||
details:
|
||||
optional: true
|
||||
selector: td.singleindent a[href^="/index.php?showtopic="]
|
||||
attribute: href
|
||||
download:
|
||||
selector: td a.torrentlink
|
||||
attribute: href
|
||||
magnet:
|
||||
selector: td a.magnetlink
|
||||
attribute: href
|
||||
category:
|
||||
text: "1"
|
||||
date:
|
||||
selector: td:nth-of-type(3)
|
||||
filters:
|
||||
- name: dateparse
|
||||
args: "2006/01/02"
|
||||
seeders:
|
||||
selector: td:nth-of-type(4)
|
||||
leechers:
|
||||
selector: td:nth-of-type(5)
|
||||
grabs:
|
||||
selector: td:nth-of-type(6)
|
||||
downloadvolumefactor:
|
||||
text: "0"
|
||||
uploadvolumefactor:
|
||||
text: "1"
|
163
src/Jackett/Definitions/mvgroupmain.yml
Normal file
163
src/Jackett/Definitions/mvgroupmain.yml
Normal file
|
@ -0,0 +1,163 @@
|
|||
---
|
||||
site: mvgroupmain
|
||||
name: MVGroup Main
|
||||
description: "MVGroup is a Semi-Private site dedicated to UK TV and DOCUMENTARIES. This definition is for the Main Tracker site."
|
||||
language: en-us
|
||||
type: semi-private
|
||||
encoding: UTF-8
|
||||
links:
|
||||
- http://forums.mvgroup.org/
|
||||
|
||||
caps:
|
||||
categorymappings:
|
||||
- {id: 1, cat: Other, desc: "Other"}
|
||||
|
||||
modes:
|
||||
search: [q]
|
||||
tv-search: [q, season, ep]
|
||||
movie-search: [q]
|
||||
|
||||
settings:
|
||||
- name: username
|
||||
type: text
|
||||
label: Username
|
||||
- name: password
|
||||
type: password
|
||||
label: Password
|
||||
- name: hidef
|
||||
type: checkbox
|
||||
label: Show MVGroup HiDef Releases only
|
||||
default: false
|
||||
- name: withsubs
|
||||
type: select
|
||||
label: Subtitles
|
||||
default: "_"
|
||||
options:
|
||||
"_" : "none"
|
||||
"alb": "Albanian"
|
||||
"ara": "Arabic"
|
||||
"arm": "Armenian"
|
||||
"ass": "Assyrian"
|
||||
"bos": "Bosnian"
|
||||
"bul": "Bulgarian"
|
||||
"cat": "Catalan"
|
||||
"chi": "Chinese, simplified"
|
||||
"zho": "Chinese, traditional"
|
||||
"hrv": "Croatian"
|
||||
"cze": "Czech"
|
||||
"dan": "Danish"
|
||||
"dut": "Dutch"
|
||||
"eng": "English"
|
||||
"est": "Estonian"
|
||||
"fin": "Finnish"
|
||||
"fre": "French"
|
||||
"glg": "Galician"
|
||||
"geo": "Georgian"
|
||||
"ger": "German"
|
||||
"ell": "Greek"
|
||||
"heb": "Hebrew"
|
||||
"hin": "Hindi"
|
||||
"hun": "Hungarian"
|
||||
"ice": "Icelandic"
|
||||
"ind": "Indonesian"
|
||||
"ita": "Italian"
|
||||
"jpn": "Japanese"
|
||||
"kaz": "Kazakh"
|
||||
"kor": "Korean"
|
||||
"lav": "Latvian"
|
||||
"lit": "Lithuanian"
|
||||
"ltz": "Luxembourgish"
|
||||
"mac": "Macedonian"
|
||||
"may": "Malay"
|
||||
"nor": "Norwegian"
|
||||
"per": "Persian"
|
||||
"pol": "Polish"
|
||||
"por": "Portuguese"
|
||||
"rum": "Romanian"
|
||||
"rus": "Russian"
|
||||
"scc": "Serbian"
|
||||
"slo": "Slovak"
|
||||
"slv": "Slovenian"
|
||||
"spa": "Spanish"
|
||||
"swe": "Swedish"
|
||||
"tha": "Thai"
|
||||
"tur": "Turkish"
|
||||
"ukr": "Ukrainian"
|
||||
"vie": "Vietnamese"
|
||||
- name: seed
|
||||
type: checkbox
|
||||
label: Only released and seeded torrents
|
||||
default: false
|
||||
- name: info
|
||||
type: info
|
||||
label: Category for Sonarr and Radarr
|
||||
default: MVGroup does not use categories. In your Sonarr or Radarr Torznab Indexer settings, set the category to 100001.
|
||||
|
||||
login:
|
||||
path: index.php?act=Login&CODE=00
|
||||
method: form
|
||||
form: form[action^="?act=Login"]
|
||||
inputs:
|
||||
"UserName": "{{ .Config.username }}"
|
||||
"PassWord": "{{ .Config.password }}"
|
||||
"Privacy": "1"
|
||||
"CookieDate": "0"
|
||||
"CODE": "01"
|
||||
"referer": "http://forums.mvgroup.org/"
|
||||
"act": "Login"
|
||||
"submit": "Log me in"
|
||||
error:
|
||||
- selector: div.borderwrap:has(div.tablepad)
|
||||
message:
|
||||
selector: div.borderwrap div.tablepad
|
||||
test:
|
||||
path: index.php?http://forums.mvgroup.org/
|
||||
selector: tr td.nav_mem div span[id="member_menu"]
|
||||
|
||||
search:
|
||||
paths:
|
||||
- path: maintracker.php
|
||||
inputs:
|
||||
"seed": "{{ if .Config.seed }}1{{else}}0{{end}}"
|
||||
"withsubs": "{{ re_replace .Config.withsubs \"_\" \"\" }}"
|
||||
"filter": "{{ if .Config.hidef }}hd+{{else}}{{end}}{{ .Keywords }}"
|
||||
|
||||
rows:
|
||||
selector: tr:has(a.magnetlink)
|
||||
fields:
|
||||
title:
|
||||
# fallback title (to prevent abend if neither optional is found)
|
||||
text: "title not found"
|
||||
title:
|
||||
optional: true
|
||||
selector: td.singleindent a[href^="/index.php?showtopic="]
|
||||
title:
|
||||
optional: true
|
||||
selector: td.doubleindent
|
||||
details:
|
||||
optional: true
|
||||
selector: td.singleindent a[href^="/index.php?showtopic="]
|
||||
attribute: href
|
||||
download:
|
||||
selector: td a.torrentlink
|
||||
attribute: href
|
||||
magnet:
|
||||
selector: td a.magnetlink
|
||||
attribute: href
|
||||
category:
|
||||
text: "1"
|
||||
date:
|
||||
selector: td:nth-of-type(3)
|
||||
filters:
|
||||
- name: dateparse
|
||||
args: "2006/01/02"
|
||||
seeders:
|
||||
selector: td:nth-of-type(4)
|
||||
leechers:
|
||||
selector: td:nth-of-type(5)
|
||||
grabs:
|
||||
selector: td:nth-of-type(6)
|
||||
downloadvolumefactor:
|
||||
text: "0"
|
||||
uploadvolumefactor:
|
||||
text: "1"
|
Loading…
Reference in a new issue