From 9e96b38cd0d5b39e89c946e3da7c743506d81186 Mon Sep 17 00:00:00 2001 From: Garfield69 Date: Sun, 5 Nov 2023 16:18:29 +1300 Subject: [PATCH] filelisting: gone. resolves #12214 --- README.md | 1 - .../Definitions/filelisting.yml | 89 ------------------- src/Jackett.Updater/Program.cs | 1 + 3 files changed, 1 insertion(+), 90 deletions(-) delete mode 100644 src/Jackett.Common/Definitions/filelisting.yml diff --git a/README.md b/README.md index 1104ff663..e1897fdb7 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,6 @@ A third-party Golang SDK for Jackett is available from [webtor-io/go-jackett](ht * EXT Torrents * ExtraTorrent.st * EZTV - * FileListing * Frozen Layer * GamesTorrents * GkTorrent diff --git a/src/Jackett.Common/Definitions/filelisting.yml b/src/Jackett.Common/Definitions/filelisting.yml deleted file mode 100644 index ffa27542e..000000000 --- a/src/Jackett.Common/Definitions/filelisting.yml +++ /dev/null @@ -1,89 +0,0 @@ ---- -id: filelisting -name: FileListing -description: "FileListing is a Public Torrent Search Engine" -language: en-US -type: public -encoding: UTF-8 -links: - - https://filelisting.com/ - - https://filelisting.mrunblock.bond/ - - https://filelisting.nocensor.cloud/ -legacylinks: - - https://filelisting.nocensor.biz/ - - https://filelisting.nocensor.sbs/ - - https://filelisting.nocensor.world/ - - https://filelisting.nocensor.lol/ - - https://filelisting.nocensor.art/ - - https://filelisting.mrunblock.guru/ - - https://filelisting.mrunblock.life/ - - https://filelisting.nocensor.click/ - -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 }}+in:title{{ else }}{{ end }}" - keywordsfilters: - - name: tolower - - 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: - # seeders can be missing - - name: re_replace - args: ["^(\\d+)", "0$1"] - - name: regexp - args: ^(\d+) - leechers: - selector: td.dn-status - filters: - # leechers can be missing - - name: re_replace - args: ["(\\d+)$", "0$1"] - - name: regexp - args: (\d+)$ - downloadvolumefactor: - text: 0 - uploadvolumefactor: - text: 1 -# engine n/a diff --git a/src/Jackett.Updater/Program.cs b/src/Jackett.Updater/Program.cs index 1783289aa..20ba8203b 100644 --- a/src/Jackett.Updater/Program.cs +++ b/src/Jackett.Updater/Program.cs @@ -377,6 +377,7 @@ namespace Jackett.Updater "Definitions/feedurneed.yml", // merged with devilsplayground #6872 "Definitions/fenyarnyek-tracker.yml", "Definitions/filebase.yml", + "Definitions/filelisting.yml", "Definitions/film-paleis.yml", "Definitions/filmsclub.yml", "Definitions/firebit.yml",