From c9b048b8db85b066d69f4a7566c20e57b517edd4 Mon Sep 17 00:00:00 2001 From: Garfield69 Date: Thu, 23 Nov 2023 16:47:46 +1300 Subject: [PATCH] bulltorrent: removed. resolves #6497 --- README.md | 1 - .../Definitions/bulltorrent.yml | 126 ------------------ src/Jackett.Updater/Program.cs | 1 + 3 files changed, 1 insertion(+), 127 deletions(-) delete mode 100644 src/Jackett.Common/Definitions/bulltorrent.yml diff --git a/README.md b/README.md index 6f2827289..5753fc052 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,6 @@ A third-party Golang SDK for Jackett is available from [webtor-io/go-jackett](ht * BT.etree * BTMET * BTSOW - * BullTorrent * Byrutor * Cinecalidad * comicat diff --git a/src/Jackett.Common/Definitions/bulltorrent.yml b/src/Jackett.Common/Definitions/bulltorrent.yml deleted file mode 100644 index 3ed1e3b1a..000000000 --- a/src/Jackett.Common/Definitions/bulltorrent.yml +++ /dev/null @@ -1,126 +0,0 @@ ---- -id: bulltorrent -name: BullTorrent -description: "BullTorrent (formerly TOROS) is a Public torrent index" -language: en-US -type: public -encoding: UTF-8 -links: - - https://www.bulltorrent.com/ -legacylinks: - - https://toros.nocensor.space/ - - https://toros.nocensor.work/ - - https://www.toros.co/ - - https://toros.nocensor.biz/ - - https://toros.nocensor.lol/ - - https://toros.mrunblock.guru/ - - https://toros.mrunblock.life/ # Gateway time-out Error code 504 - -caps: - categorymappings: - - {id: 1, cat: Movies, desc: Movies} - - {id: 2, cat: Audio, desc: Music} - - {id: 3, cat: TV, desc: Television} - - {id: 4, cat: PC/Games, desc: Games} - - {id: 5, cat: PC, desc: Software} - - {id: 6, cat: TV/Anime, desc: Anime} - - {id: 7, cat: XXX, desc: Adult} - - {id: 8, cat: Books, desc: Ebooks} - - {id: 9, cat: TV/Anime, desc: Animation} - - {id: 10, cat: Other, desc: Other} - - {id: 0, cat: Other, desc: TBC} - - 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: added - options: - added: created - seeds: seeders - size: size - name: title - - name: type - type: select - label: Order requested from site - default: desc - options: - desc: desc - asc: asc - -download: - selectors: - - selector: a[href^="magnet:?xt="] - attribute: href - -search: - paths: - # https://www.bulltorrent.com/all/torrents/2022.html?v=&i=100&sort=added&o=desc - - path: "{{ if .Keywords }}all/torrents/{{ .Keywords }}.html?v=&i=100&sort={{ .Config.sort }}&o={{ .Config.type }}{{ else }}trending.html{{ end }}" - keywordsfilters: - - name: re_replace - args: ["[\\s]+", "-"] - - name: tolower - - rows: - selector: table.table-responsive tr:has(a[href^="/torrent/"]) - filters: - - name: andmatch - - fields: - category: - selector: td:nth-child(1) - attribute: class - filters: - - name: regexp - args: (\d+) - title: - selector: a[href^="/torrent/"] - details: - selector: a[href^="/torrent/"] - attribute: href - download: - selector: a[href^="/torrent/"] - attribute: href - date_day: - selector: td:nth-child(2):contains("day"), td:nth-child(2):contains("Hoy"), td:nth-child(2):contains("Ayer") - optional: true - filters: - - name: replace - args: ["Hoy", "Today"] - - name: replace - args: ["Ayer", "Yesterday"] - - name: fuzzytime - date_ago: - selector: td:nth-child(2):contains("ago") - optional: true - filters: - - name: timeago - date_year: - selector: td:nth-child(2):not(:contains("ago")):not(:contains("day")):not(:contains("Hoy")):not(:contains("Ayer")) - optional: true - filters: - - name: append - args: " +01:00" # CET - - name: dateparse - args: "d MMM zzz" - date: - text: "{{ if or .Result.date_year .Result.date_ago .Result.date_day }}{{ or .Result.date_year .Result.date_ago .Result.date_day }}{{ else }}now{{ end }}" - size: - selector: td:nth-child(3) - seeders: - selector: td:nth-child(4) - leechers: - selector: td:nth-child(5) - downloadvolumefactor: - text: 0 - uploadvolumefactor: - text: 1 -# engine n/a diff --git a/src/Jackett.Updater/Program.cs b/src/Jackett.Updater/Program.cs index fb9864dfe..23d4d2663 100644 --- a/src/Jackett.Updater/Program.cs +++ b/src/Jackett.Updater/Program.cs @@ -316,6 +316,7 @@ namespace Jackett.Updater "Definitions/btstornet.yml", "Definitions/btworld.yml", "Definitions/btxpress.yml", + "Definitions/bulltorrent.yml", "Definitions/casatorrent.yml", // renamed to teamctgame "Definitions/casstudiotv.yml", "Definitions/ccfbits.yml",