mirror of
https://github.com/Jackett/Jackett
synced 2025-02-24 15:21:06 +00:00
Add FullMixMusic tracker
This commit is contained in:
parent
998a7fc716
commit
69e5f7a59f
3 changed files with 85 additions and 0 deletions
|
@ -70,6 +70,7 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/
|
|||
* FileList
|
||||
* Freedom-HD
|
||||
* Freshon
|
||||
* FullMixMusic
|
||||
* FunFile
|
||||
* FunkyTorrents
|
||||
* Fuzer
|
||||
|
|
81
src/Jackett/Definitions/fullmixmusic.yml
Normal file
81
src/Jackett/Definitions/fullmixmusic.yml
Normal file
|
@ -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: ^(.*?)<br />
|
||||
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"
|
|
@ -640,6 +640,9 @@
|
|||
<Content Include="Definitions\diablotorrent.yml">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
<Content Include="Definitions\fullmixmusic.yml">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
<None Include="Definitions\passtheheadphones-scrape.yml" />
|
||||
<Content Include="Definitions\torrentz2.yml">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
|
|
Loading…
Reference in a new issue