mirror of
https://github.com/Jackett/Jackett
synced 2025-01-02 13:16:16 +00:00
torrentproject: add indexer (#10231)
This commit is contained in:
parent
9000e0ac11
commit
06cae85ebe
2 changed files with 111 additions and 0 deletions
|
@ -144,6 +144,7 @@ A third-party Golang SDK for Jackett is available from [webtor-io/go-jackett](ht
|
||||||
* TorrentKitty
|
* TorrentKitty
|
||||||
* TorrentMafya
|
* TorrentMafya
|
||||||
* TorrentParadise
|
* TorrentParadise
|
||||||
|
* TorrentProject
|
||||||
* TorrentProject2
|
* TorrentProject2
|
||||||
* TorrentQuest
|
* TorrentQuest
|
||||||
* Torrents.csv
|
* Torrents.csv
|
||||||
|
|
110
src/Jackett.Common/Definitions/torrentproject.yml
Normal file
110
src/Jackett.Common/Definitions/torrentproject.yml
Normal file
|
@ -0,0 +1,110 @@
|
||||||
|
---
|
||||||
|
id: torrentproject
|
||||||
|
name: TorrentProject
|
||||||
|
description: "TorrentProject is a Public torrent meta-search engine"
|
||||||
|
language: en-us
|
||||||
|
type: public
|
||||||
|
encoding: UTF-8
|
||||||
|
links:
|
||||||
|
- https://torrentproject.to
|
||||||
|
- https://torrentproject.torrentbay.to/
|
||||||
|
|
||||||
|
caps:
|
||||||
|
categorymappings:
|
||||||
|
- {id: adult, cat: XXX, desc: Adult}
|
||||||
|
- {id: anime, cat: TV/Anime, desc: Anime}
|
||||||
|
- {id: audio, cat: Audio, desc: Audio}
|
||||||
|
- {id: audioalbum, cat: Audio, desc: "Audio Album"}
|
||||||
|
- {id: audioalbumlossless, cat: Audio/Lossless, desc: "Audio Album Lossless"}
|
||||||
|
- {id: audioalbummp3, cat: Audio/MP3, desc: "Audio Album MP3"}
|
||||||
|
- {id: audiolossless, cat: Audio/Lossless, desc: "Audio Lossless"}
|
||||||
|
- {id: audiomp3, cat: Audio/MP3, desc: "Audio MP3"}
|
||||||
|
- {id: books, cat: Books, desc: Books}
|
||||||
|
- {id: docebook, cat: Books/EBook, desc: "Doc Ebook"}
|
||||||
|
- {id: games, cat: PC/Games, desc: Games}
|
||||||
|
- {id: gamesnintendo, cat: Console/NDS, desc: "Games Nintendo"}
|
||||||
|
- {id: gamespc, cat: PC/Games, desc: "Games PC"}
|
||||||
|
- {id: gamesxbox, cat: Console/XBox, desc: "Games Xbox"}
|
||||||
|
- {id: literature, cat: Books, desc: Literature}
|
||||||
|
- {id: misc, cat: Other/Misc, desc: Misc}
|
||||||
|
- {id: mobile, cat: PC/Mobile-Other, desc: Mobile}
|
||||||
|
- {id: other, cat: Other, desc: Other}
|
||||||
|
- {id: playstation, cat: Console/PSP, desc: "Games Playstation"}
|
||||||
|
- {id: software, cat: PC/0day, desc: Software}
|
||||||
|
- {id: tv, cat: TV, desc: TV}
|
||||||
|
- {id: video, cat: TV, desc: Video}
|
||||||
|
- {id: videomovie, cat: Movies, desc: "Video Movie"}
|
||||||
|
- {id: videomovieadult, cat: XXX, desc: "Video Movie Adult"}
|
||||||
|
- {id: videomoviedvdrip, cat: Movies/SD, desc: "Video Movie DVDRip"}
|
||||||
|
- {id: videomoviehdrip, cat: Movies, desc: "Video Movie HDRip"}
|
||||||
|
- {id: videoshow, cat: TV, desc: "Video Show"}
|
||||||
|
- {id: videoshowadult, cat: XXX, desc: "Video Show Adult"}
|
||||||
|
- {id: videoshowmovie, cat: TV, desc: "Video Show Movie"}
|
||||||
|
- {id: xxx, cat: XXX, desc: Adult}
|
||||||
|
|
||||||
|
modes:
|
||||||
|
search: [q]
|
||||||
|
tv-search: [q, season, ep]
|
||||||
|
movie-search: [q]
|
||||||
|
music-search: [q]
|
||||||
|
book-search: [q]
|
||||||
|
|
||||||
|
settings:
|
||||||
|
- name: sort
|
||||||
|
type: select
|
||||||
|
label: Sort requested from site
|
||||||
|
default: latest
|
||||||
|
options:
|
||||||
|
latest: "created desc"
|
||||||
|
oldest: "created asc"
|
||||||
|
seeders: seeders
|
||||||
|
sizebg: "size desc"
|
||||||
|
sizesm: "size asc"
|
||||||
|
|
||||||
|
search:
|
||||||
|
paths:
|
||||||
|
- path: "?t={{ .Keywords }}&orderby={{ .Config.sort }}"
|
||||||
|
- path: "?t={{ .Keywords }}&orderby={{ .Config.sort }}&page=2"
|
||||||
|
|
||||||
|
rows:
|
||||||
|
selector: "#similarfiles div:has(a[href^=\"/\"]):not(:has(a[class^=\"notpicked\"]))"
|
||||||
|
|
||||||
|
fields:
|
||||||
|
category:
|
||||||
|
text: Other
|
||||||
|
category|noappend:
|
||||||
|
optional: true
|
||||||
|
selector: div > span:nth-child(1) > span:nth-child(2)
|
||||||
|
filters:
|
||||||
|
- name: re_replace
|
||||||
|
args: ["[^a-zA-Z0-9]+", ""]
|
||||||
|
- name: tolower
|
||||||
|
title:
|
||||||
|
selector: span > a
|
||||||
|
details:
|
||||||
|
selector: span > a
|
||||||
|
attribute: href
|
||||||
|
infohash:
|
||||||
|
selector: span > a
|
||||||
|
attribute: href
|
||||||
|
filters:
|
||||||
|
- name: split
|
||||||
|
args: ["/", 1]
|
||||||
|
date:
|
||||||
|
selector: div > span:nth-child(4)
|
||||||
|
filters:
|
||||||
|
- name: timeago
|
||||||
|
size:
|
||||||
|
selector: div > span:nth-child(5)
|
||||||
|
description:
|
||||||
|
optional: true
|
||||||
|
selector: div > span:nth-child(1) > span:nth-child(2)
|
||||||
|
seeders:
|
||||||
|
selector: div > span:nth-child(2)
|
||||||
|
leechers:
|
||||||
|
selector: div > span:nth-child(3)
|
||||||
|
downloadvolumefactor:
|
||||||
|
text: 0
|
||||||
|
uploadvolumefactor:
|
||||||
|
text: 1
|
||||||
|
# engine n/a
|
Loading…
Reference in a new issue