mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
add filelisting a public site. resolves #12214
This commit is contained in:
@@ -62,6 +62,7 @@ A third-party Golang SDK for Jackett is available from [webtor-io/go-jackett](ht
|
|||||||
* ExtraTorrent.cd
|
* ExtraTorrent.cd
|
||||||
* EZTV
|
* EZTV
|
||||||
* Filebase
|
* Filebase
|
||||||
|
* FileListing
|
||||||
* FireBit
|
* FireBit
|
||||||
* Frozen Layer
|
* Frozen Layer
|
||||||
* GamesTorrents
|
* GamesTorrents
|
||||||
|
70
src/Jackett.Common/Definitions/filelisting.yml
Normal file
70
src/Jackett.Common/Definitions/filelisting.yml
Normal file
@@ -0,0 +1,70 @@
|
|||||||
|
---
|
||||||
|
id: filelisting
|
||||||
|
name: FileListing
|
||||||
|
description: "FileListing is a Public Torrent Search Engine"
|
||||||
|
language: en-us
|
||||||
|
type: public
|
||||||
|
encoding: UTF-8
|
||||||
|
links:
|
||||||
|
- https://filelisting.com/
|
||||||
|
|
||||||
|
caps:
|
||||||
|
categorymappings:
|
||||||
|
- {id: 1, cat: Other, desc: TV}
|
||||||
|
- {id: 2, cat: Other, desc: Movies}
|
||||||
|
- {id: 3, cat: Other, desc: Other}
|
||||||
|
|
||||||
|
modes:
|
||||||
|
search: [q]
|
||||||
|
tv-search: [q, season, ep]
|
||||||
|
movie-search: [q]
|
||||||
|
music-search: [q]
|
||||||
|
book-search: [q]
|
||||||
|
|
||||||
|
settings:
|
||||||
|
- name: info
|
||||||
|
type: info
|
||||||
|
label: A note about FileListing
|
||||||
|
default: FileListing does not display categories in its search results page. This definition is probably only suitable for Jackett Dashboard Manual searches.
|
||||||
|
|
||||||
|
search:
|
||||||
|
paths:
|
||||||
|
# https://filelisting.com/result?q=bad+batch
|
||||||
|
- path: "result{{ if .Keywords }}?q={{ .Keywords }}{{ else }}{{ end }}"
|
||||||
|
|
||||||
|
rows:
|
||||||
|
selector: table > tbody > tr:has(td.dn-title)
|
||||||
|
|
||||||
|
fields:
|
||||||
|
category:
|
||||||
|
text: 3
|
||||||
|
title:
|
||||||
|
selector: p.filedir
|
||||||
|
details:
|
||||||
|
selector: p.filedir a
|
||||||
|
attribute: href
|
||||||
|
infohash:
|
||||||
|
selector: p.filedir a
|
||||||
|
attribute: href
|
||||||
|
filters:
|
||||||
|
- name: regexp
|
||||||
|
args: -([a-f|0-9]{40}).html
|
||||||
|
date:
|
||||||
|
text: now
|
||||||
|
size:
|
||||||
|
selector: td.dn-size
|
||||||
|
seeders:
|
||||||
|
selector: td.dn-status
|
||||||
|
filters:
|
||||||
|
- name: split
|
||||||
|
args: ["/", 0]
|
||||||
|
leechers:
|
||||||
|
selector: td.dn-status
|
||||||
|
filters:
|
||||||
|
- name: split
|
||||||
|
args: ["/", 1]
|
||||||
|
downloadvolumefactor:
|
||||||
|
text: 0
|
||||||
|
uploadvolumefactor:
|
||||||
|
text: 1
|
||||||
|
# engine n/a
|
Reference in New Issue
Block a user