mirror of
https://github.com/Jackett/Jackett
synced 2024-12-27 02:09:24 +00:00
add gtorrent.pro (#11251)
Co-authored-by: ilike2burnthing <59480337+ilike2burnthing@users.noreply.github.com>
This commit is contained in:
parent
a6b1534d2f
commit
91e089ce30
2 changed files with 73 additions and 0 deletions
|
@ -65,6 +65,7 @@ A third-party Golang SDK for Jackett is available from [webtor-io/go-jackett](ht
|
|||
* GkTorrent
|
||||
* GloDLS
|
||||
* GTorrent
|
||||
* GTorrent.pro
|
||||
* HDhouse (HDReactor)
|
||||
* IBit
|
||||
* Idope
|
||||
|
|
72
src/Jackett.Common/Definitions/gtorrentpro.yml
Normal file
72
src/Jackett.Common/Definitions/gtorrentpro.yml
Normal file
|
@ -0,0 +1,72 @@
|
|||
---
|
||||
id: gtorrentpro
|
||||
name: GTorrent.pro
|
||||
description: "GTorrent.pro is a RUSSIAN Public Torrent Tracker for MOVIES / TV / GENERAL"
|
||||
language: ru-ru
|
||||
type: public
|
||||
encoding: windows-1251
|
||||
links:
|
||||
- http://gtorrent.pro/
|
||||
|
||||
caps:
|
||||
categorymappings:
|
||||
- {id: "filmy", cat: Movies, desc: "Фильмы (Movies)"}
|
||||
- {id: "muzyka", cat: Audio, desc: "Музыка (Music)"}
|
||||
- {id: "igry", cat: Console, desc: "Игры (Games)"}
|
||||
- {id: "serialy", cat: TV, desc: "Сериалы (TV series)"}
|
||||
- {id: "programmy", cat: PC, desc: "Программы (Software)"}
|
||||
|
||||
modes:
|
||||
search: [q]
|
||||
|
||||
settings: []
|
||||
|
||||
download:
|
||||
selector: a[href^="/engine/download.php?id="]
|
||||
attribute: href
|
||||
|
||||
search:
|
||||
# do=search&subaction=search&search_start=0&full_search=0&result_from=1&story=%D0%A6%D0%B5%D0%BB%D1%8C%D0%BD%D0%BE%D0%BC%D0%B5%D1%82%D0%B0%D0%BB%D0%BB%D0%B8%D1%87%D0%B5%D1%81%D0%BA%D0%B0%D1%8F+%D0%BE%D0%B1%D0%BE%D0%BB%D0%BE%D1%87%D0%BA%D0%B0+
|
||||
paths:
|
||||
- path: index.php
|
||||
inputs:
|
||||
do: search
|
||||
subaction: search
|
||||
search_start: 0
|
||||
full_search: 0
|
||||
result_from: 1
|
||||
story: "{{ if .Keywords }}{{ .Keywords }}{{ else }}{{ .Today.Year }}{{ end }}"
|
||||
|
||||
rows:
|
||||
selector: div.blog_brief_news:not(div.first_line):not(:has(div.uploaded:empty))
|
||||
filters:
|
||||
- name: andmatch
|
||||
|
||||
fields:
|
||||
category:
|
||||
selector: div.name a
|
||||
attribute: href
|
||||
filters:
|
||||
- name: split
|
||||
args: ["/", 3]
|
||||
title:
|
||||
selector: div.name
|
||||
details:
|
||||
selector: div.name a
|
||||
attribute: href
|
||||
download:
|
||||
selector: div.name a
|
||||
attribute: href
|
||||
date:
|
||||
text: now
|
||||
size:
|
||||
selector: div:nth-child(2)
|
||||
seeders:
|
||||
selector: div.uploaded
|
||||
leechers:
|
||||
selector: div.download
|
||||
downloadvolumefactor:
|
||||
text: 0
|
||||
uploadvolumefactor:
|
||||
text: 1
|
||||
# engine n/a
|
Loading…
Reference in a new issue