From 3ccefe33b303333be9277dcf5e4424d5480b62bf Mon Sep 17 00:00:00 2001 From: Garfield69 Date: Mon, 6 Jan 2020 18:54:39 +1300 Subject: [PATCH] add torrentkitty a public magnet tracker. resolves #6833 --- README.md | 1 + .../Definitions/torrentkitty.yml | 55 +++++++++++++++++++ src/Jackett.Updater/Program.cs | 1 - 3 files changed, 56 insertions(+), 1 deletion(-) create mode 100644 src/Jackett.Common/Definitions/torrentkitty.yml diff --git a/README.md b/README.md index 44e175fda..33fcd86f5 100644 --- a/README.md +++ b/README.md @@ -103,6 +103,7 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/ * TorrentDownload * TorrentFunk * TorrentGalaxy (TGx) + * TorrentKitty * TorrentParadise * TorrentProject2 * TorrentQuest diff --git a/src/Jackett.Common/Definitions/torrentkitty.yml b/src/Jackett.Common/Definitions/torrentkitty.yml new file mode 100644 index 000000000..f47a772ec --- /dev/null +++ b/src/Jackett.Common/Definitions/torrentkitty.yml @@ -0,0 +1,55 @@ +--- + site: torrentkitty + name: TorrentKitty + description: "TorrentKitty is a Public torrent indexer" + language: en-us + type: public + encoding: UTF-8 + links: + - https://www.torrentkitty.tv/ + - https://www.torrentkitty.se/ + - https://www.torrentkitty.app/ + + caps: + categories: + "other": Other + + modes: + search: [q] + tv-search: [q, season, ep] + movie-search: [q] + + settings: [] + + search: + paths: + - path: "search/{{ if .Keywords }}{{ .Keywords}}{{else}}2019{{end}}" + rows: + selector: table#archiveResult tbody tr:has(a[href^="magnet:?xt="]) + + fields: + category: + text: other + title: + selector: td.name + details: + selector: td.action a + attribute: href + download: + selector: a[href^="magnet:?xt="] + attribute: href + date: + selector: td.date + filters: + - name: dateparse + args: "2006-01-02" + size: + selector: td.size + seeders: + text: 1 + leechers: + text: 1 + downloadvolumefactor: + text: 0 + uploadvolumefactor: + text: 1 diff --git a/src/Jackett.Updater/Program.cs b/src/Jackett.Updater/Program.cs index f22fef375..f37331d63 100644 --- a/src/Jackett.Updater/Program.cs +++ b/src/Jackett.Updater/Program.cs @@ -352,7 +352,6 @@ namespace Jackett.Updater "Definitions/xktorrent.yml", "Definitions/btkitty.yml", "Definitions/kikibt.yml", - "Definitions/torrentkitty.yml", "Definitions/rockethd.yml", "Definitions/worldofp2p.yml", "Definitions/avg.yml",