Compare commits

..

3 Commits

Author SHA1 Message Date
Garfield69
035e03bf3e bitbazis: new row selector 2022-09-28 17:16:11 +13:00
Garfield69
304df9cf36 muziekfabriek: back to regular login 2022-09-28 16:30:26 +13:00
Garfield69
a4b838ca68 dontorrent: new domain 2022-09-28 16:07:12 +13:00
3 changed files with 23 additions and 14 deletions

View File

@@ -118,7 +118,7 @@ search:
# can support genre searching but you need to know the id, eg &genre23=1 for Comedy (id is 23) # can support genre searching but you need to know the id, eg &genre23=1 for Comedy (id is 23)
rows: rows:
selector: "table[width=\"100%\"]:last-child tbody tr:has(div.tooltip){{ if .Config.freeleech }}:has(i:contains(\"(Free)\")){{ else }}{{ end }}" selector: "table[width=\"100%\"][align=\"center\"]:first-child tbody tr:has(div.tooltip){{ if .Config.freeleech }}:has(i:contains(\"(Free)\")){{ else }}{{ end }}"
fields: fields:
category: category:

View File

@@ -40,21 +40,30 @@ caps:
music-search: [q, artist] music-search: [q, artist]
settings: settings:
- name: cookie - name: username
type: text type: text
label: Cookie label: Username
- name: info - name: password
type: password
label: Password
- name: flaresolverr
type: info type: info
label: How to get the Cookie label: FlareSolverr
default: "<ol><li>Login to this tracker with your browser<li>Open the <b>DevTools</b> panel by pressing <b>F12</b><li>Select the <b>Network</b> tab<li>Click on the <b>Doc</b> button (Chrome Browser) or <b>HTML</b> button (FireFox)<li>Refresh the page by pressing <b>F5</b><li>Click on the first row entry<li>Select the <b>Headers</b> tab on the Right panel<li>Find <b>'cookie:'</b> in the <b>Request Headers</b> section<li><b>Select</b> and <b>Copy</b> the whole cookie string <i>(everything after 'cookie: ')</i> and <b>Paste</b> here.</ol>" default: This site may use DDoS-Guard Protection, therefore Jackett requires <a href="https://github.com/Jackett/Jackett#configuring-flaresolverr" target="_blank">FlareSolverr</a> to access it.
login: login:
method: cookie path: login.php
method: form
form: form[action="takelogin.php"]
inputs: inputs:
cookie: "{{ .Config.cookie }}" username: "{{ .Config.username }}"
password: "{{ .Config.password }}"
returnto: "/"
error:
- selector: td.embedded:contains("fout")
test: test:
path: / path: index.php
selector: :has(a[href="logout.php"]) selector: a[href="logout.php"]
download: download:
selectors: selectors:

View File

@@ -39,7 +39,7 @@ namespace Jackett.Common.Indexers
private const string SearchUrl = "buscar/"; private const string SearchUrl = "buscar/";
public override string[] AlternativeSiteLinks { get; protected set; } = { public override string[] AlternativeSiteLinks { get; protected set; } = {
"https://dontorrent.vin/", "https://dontorrent.ist/",
"https://todotorrents.net/", "https://todotorrents.net/",
"https://tomadivx.net/", "https://tomadivx.net/",
"https://seriesblanco.one/", "https://seriesblanco.one/",
@@ -48,7 +48,6 @@ namespace Jackett.Common.Indexers
}; };
public override string[] LegacySiteLinks { get; protected set; } = { public override string[] LegacySiteLinks { get; protected set; } = {
"https://dontorrent.kim/",
"https://dontorrent.tw/", "https://dontorrent.tw/",
"https://dontorrent.yt/", "https://dontorrent.yt/",
"https://dontorrent.vg/", "https://dontorrent.vg/",
@@ -62,7 +61,8 @@ namespace Jackett.Common.Indexers
"https://dontorrent.soy/", "https://dontorrent.soy/",
"https://dontorrent.moe/", "https://dontorrent.moe/",
"https://dontorrent.pub/", "https://dontorrent.pub/",
"https://dontorrent.tf/" "https://dontorrent.tf/",
"https://dontorrent.vin/"
}; };
private static Dictionary<string, string> CategoriesMap => new Dictionary<string, string> private static Dictionary<string, string> CategoriesMap => new Dictionary<string, string>
@@ -80,7 +80,7 @@ namespace Jackett.Common.Indexers
: base(id: "dontorrent", : base(id: "dontorrent",
name: "DonTorrent", name: "DonTorrent",
description: "DonTorrent is a SPANISH public tracker for MOVIES / TV / GENERAL", description: "DonTorrent is a SPANISH public tracker for MOVIES / TV / GENERAL",
link: "https://dontorrent.vin/", link: "https://dontorrent.ist/",
caps: new TorznabCapabilities caps: new TorznabCapabilities
{ {
TvSearchParams = new List<TvSearchParam> TvSearchParams = new List<TvSearchParam>