From 69e5f7a59f1dbaaef3eb1c66e5d473f96c4fab97 Mon Sep 17 00:00:00 2001 From: kaso17 Date: Wed, 8 Feb 2017 19:46:22 +0100 Subject: [PATCH] Add FullMixMusic tracker --- README.md | 1 + src/Jackett/Definitions/fullmixmusic.yml | 81 ++++++++++++++++++++++++ src/Jackett/Jackett.csproj | 3 + 3 files changed, 85 insertions(+) create mode 100644 src/Jackett/Definitions/fullmixmusic.yml diff --git a/README.md b/README.md index 3645aedf8..88bb62a27 100644 --- a/README.md +++ b/README.md @@ -70,6 +70,7 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/ * FileList * Freedom-HD * Freshon + * FullMixMusic * FunFile * FunkyTorrents * Fuzer diff --git a/src/Jackett/Definitions/fullmixmusic.yml b/src/Jackett/Definitions/fullmixmusic.yml new file mode 100644 index 000000000..3052023b5 --- /dev/null +++ b/src/Jackett/Definitions/fullmixmusic.yml @@ -0,0 +1,81 @@ +--- + site: fullmixmusic + name: FullMixMusic + language: hu-hu + type: private + encoding: UTF-8 + links: + - http://fullmixmusic.org/ + + caps: + categories: + 1: Audio + + modes: + search: [q] + + login: + path: login.php + method: post + inputs: + username: "{{ .Config.username }}" + password: "{{ .Config.password }}" + error: + - selector: table.main:contains("Művelet!") + test: + path: browse.php + + search: + path: browse.php + inputs: + search: "{{ .Query.Keywords }}" + showsearch: "1" + incldead: "1" + rows: + selector: table.tablak > tbody > tr:has(a[href^="details.php?id="]) + fields: + download: + selector: a[href^="download.php?id="] + attribute: href + title: + selector: a[href^="details.php?id="][title] + attribute: title + filters: + - name: regexp + args: ^(.*?)
+ banner: + selector: a[href^="details.php?id="][title] + attribute: title + filters: + - name: regexp + args: "src=\"(.*?)\">" + category: + text: "1" + details: + selector: a[href^="details.php?id="][title] + attribute: href + description: + selector: td:nth-child(2) > i > font + size: + selector: td:nth-child(7) + grabs: + selector: td:nth-child(10) + seeders: + selector: td:nth-child(8) + leechers: + selector: td:nth-child(9) + date: + selector: td:nth-child(6) + filters: + - name: append + args: " +01:00" + - name: dateparse + args: "2006-01-02 15:04:05 -07:00" + downloadvolumefactor: + text: "0" + uploadvolumefactor: + case: + font[title^="Dupla feltöltésű torrent!"]: "2" + font[title^="x3 feltöltésű torrent!"]: "3" + font[title^="x4 feltöltésű torrent!"]: "4" + "*": "1" diff --git a/src/Jackett/Jackett.csproj b/src/Jackett/Jackett.csproj index 69336a0f9..64595f9b7 100644 --- a/src/Jackett/Jackett.csproj +++ b/src/Jackett/Jackett.csproj @@ -640,6 +640,9 @@ PreserveNewest + + PreserveNewest + PreserveNewest