mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
spacetorrent: gone. removed. #2901
This commit is contained in:
@@ -482,7 +482,6 @@ A third-party Golang SDK for Jackett is available from [webtor-io/go-jackett](ht
|
|||||||
* SnowPT (SSPT)
|
* SnowPT (SSPT)
|
||||||
* SoulVoice [![(invite needed)][inviteneeded]](#)
|
* SoulVoice [![(invite needed)][inviteneeded]](#)
|
||||||
* SpeedApp (SceneFZ, XtreMeZone / MYXZ, ICE Torrent)
|
* SpeedApp (SceneFZ, XtreMeZone / MYXZ, ICE Torrent)
|
||||||
* SpaceTorrent
|
|
||||||
* SpeedCD
|
* SpeedCD
|
||||||
* Speedmaster HD
|
* Speedmaster HD
|
||||||
* SpeedTorrent Reloaded
|
* SpeedTorrent Reloaded
|
||||||
|
@@ -1,157 +0,0 @@
|
|||||||
---
|
|
||||||
id: spacetorrent
|
|
||||||
name: SpaceTorrent
|
|
||||||
description: "SpaceTorrent is a FRENCH Private Torrent Tracker for MOVIES / TV / GENERAL"
|
|
||||||
language: fr-fr
|
|
||||||
type: private
|
|
||||||
encoding: UTF-8
|
|
||||||
links:
|
|
||||||
- https://www.spacetorrent.cloud/
|
|
||||||
|
|
||||||
caps:
|
|
||||||
categorymappings:
|
|
||||||
- {id: 1, cat: Audio, desc: "Musique"}
|
|
||||||
- {id: 2, cat: Movies, desc: "Film"}
|
|
||||||
- {id: 3, cat: TV, desc: "Série"}
|
|
||||||
- {id: 4, cat: Console, desc: "Jeux"}
|
|
||||||
- {id: 5, cat: Books, desc: "Ebook"}
|
|
||||||
- {id: 6, cat: PC, desc: "Logiciels"}
|
|
||||||
- {id: 7, cat: XXX, desc: "Contenu Adulte"}
|
|
||||||
|
|
||||||
modes:
|
|
||||||
search: [q]
|
|
||||||
tv-search: [q, season, ep]
|
|
||||||
movie-search: [q]
|
|
||||||
music-search: [q]
|
|
||||||
book-search: [q]
|
|
||||||
|
|
||||||
settings:
|
|
||||||
- name: username
|
|
||||||
type: text
|
|
||||||
label: Username
|
|
||||||
- name: password
|
|
||||||
type: password
|
|
||||||
label: Password
|
|
||||||
- name: freeleech
|
|
||||||
type: checkbox
|
|
||||||
label: Search freeleech only
|
|
||||||
default: false
|
|
||||||
- name: multilang
|
|
||||||
type: checkbox
|
|
||||||
label: Replace MULTI by another language in release name
|
|
||||||
default: false
|
|
||||||
- name: multilanguage
|
|
||||||
type: select
|
|
||||||
label: Replace MULTI by this language
|
|
||||||
default: FRENCH
|
|
||||||
options:
|
|
||||||
FRENCH: FRENCH
|
|
||||||
MULTI.FRENCH: MULTI.FRENCH
|
|
||||||
ENGLISH: ENGLISH
|
|
||||||
MULTI.ENGLISH: MULTI.ENGLISH
|
|
||||||
VOSTFR: VOSTFR
|
|
||||||
MULTI.VOSTFR: MULTI.VOSTFR
|
|
||||||
- name: vostfr
|
|
||||||
type: checkbox
|
|
||||||
label: Replace VOSTFR with ENGLISH
|
|
||||||
default: false
|
|
||||||
|
|
||||||
login:
|
|
||||||
method: post
|
|
||||||
path: ajax/takelogin.php
|
|
||||||
inputs:
|
|
||||||
snlo: certified
|
|
||||||
username: "{{ .Config.username }}"
|
|
||||||
password: "{{ .Config.password }}"
|
|
||||||
returnto: "/recherche"
|
|
||||||
test:
|
|
||||||
path: recherche
|
|
||||||
selector: a[href="../logout"]
|
|
||||||
|
|
||||||
download:
|
|
||||||
selector: a[href^="magnet:?xt="]
|
|
||||||
attribute: href
|
|
||||||
|
|
||||||
search:
|
|
||||||
# https://www.spacetorrent.cloud/recherche?advanced_search=true&advanced_search_term=&cat=0&freemium=1
|
|
||||||
path: recherche
|
|
||||||
inputs:
|
|
||||||
advanced_search: true
|
|
||||||
advanced_search_term: "{{ .Keywords }}"
|
|
||||||
cat: 0
|
|
||||||
freemium: "{{ if .Config.freeleech }}1{{ else }}{{ end }}"
|
|
||||||
|
|
||||||
rows:
|
|
||||||
selector: table#table-1 tbody tr
|
|
||||||
|
|
||||||
fields:
|
|
||||||
category:
|
|
||||||
selector: a[href^="../recherche?"]
|
|
||||||
attribute: href
|
|
||||||
filters:
|
|
||||||
- name: querystring
|
|
||||||
args: cat
|
|
||||||
title_phase1:
|
|
||||||
selector: a[href^="../torrent/"]
|
|
||||||
filters:
|
|
||||||
- name: re_replace
|
|
||||||
args: ["([\\.]+)", " "]
|
|
||||||
title_multilang:
|
|
||||||
text: "{{ .Result.title_phase1 }}"
|
|
||||||
filters:
|
|
||||||
- name: re_replace
|
|
||||||
args: ["(?i)(\\smulti\\s)", " {{ .Config.multilanguage }} "]
|
|
||||||
title_phase2:
|
|
||||||
text: "{{ if .Config.multilang }}{{ .Result.title_multilang }}{{ else }}{{ .Result.title_phase1 }}{{ end }}"
|
|
||||||
title_vostfr:
|
|
||||||
text: "{{ .Result.title_phase2 }}"
|
|
||||||
filters:
|
|
||||||
- name: re_replace
|
|
||||||
args: ["(?i)(\\svostfr\\s)", " ENGLISH "]
|
|
||||||
- name: re_replace
|
|
||||||
args: ["(?i)(\\ssubfrench\\s)", " ENGLISH "]
|
|
||||||
title:
|
|
||||||
text: "{{ if .Config.vostfr }}{{ .Result.title_vostfr }}{{ else }}{{ .Result.title_phase2 }}{{ end }}"
|
|
||||||
details:
|
|
||||||
selector: a[href^="../torrent/"]
|
|
||||||
attribute: href
|
|
||||||
download:
|
|
||||||
selector: a[href^="../torrent/"]
|
|
||||||
attribute: href
|
|
||||||
date:
|
|
||||||
selector: td:nth-child(4)
|
|
||||||
filters:
|
|
||||||
- name: replace
|
|
||||||
args: ["heure", "hour"]
|
|
||||||
- name: replace
|
|
||||||
args: ["jour", "day"]
|
|
||||||
- name: replace
|
|
||||||
args: ["semaine", "week"]
|
|
||||||
- name: replace
|
|
||||||
args: ["moi", "month"]
|
|
||||||
- name: replace
|
|
||||||
args: [" an", " year"]
|
|
||||||
- name: append
|
|
||||||
args: " ago"
|
|
||||||
size:
|
|
||||||
selector: td:nth-child(5)
|
|
||||||
seeders:
|
|
||||||
text: 0
|
|
||||||
seeders:
|
|
||||||
optional: true
|
|
||||||
selector: td:nth-child(6)
|
|
||||||
leechers:
|
|
||||||
text: 0
|
|
||||||
leechers:
|
|
||||||
optional: true
|
|
||||||
selector: td:nth-child(7)
|
|
||||||
downloadvolumefactor:
|
|
||||||
case:
|
|
||||||
"i.fa-star": 0
|
|
||||||
"*": 1
|
|
||||||
uploadvolumefactor:
|
|
||||||
text: 1
|
|
||||||
minimumseedtime:
|
|
||||||
# 1 day (as seconds = 24 x 60 x 60)
|
|
||||||
text: 86400
|
|
||||||
# engine n/a
|
|
@@ -380,6 +380,7 @@ namespace Jackett.Updater
|
|||||||
"Definitions/skytorrents.yml",
|
"Definitions/skytorrents.yml",
|
||||||
"Definitions/solidtorrents.yml", // migrated to C#
|
"Definitions/solidtorrents.yml", // migrated to C#
|
||||||
"Definitions/soundpark.yml", // to be migrated to C#
|
"Definitions/soundpark.yml", // to be migrated to C#
|
||||||
|
"Definitions/spacetorrent.yml",
|
||||||
"Definitions/speed-share.yml",
|
"Definitions/speed-share.yml",
|
||||||
"Definitions/t411.yml",
|
"Definitions/t411.yml",
|
||||||
"Definitions/t411v2.yml",
|
"Definitions/t411v2.yml",
|
||||||
|
Reference in New Issue
Block a user