assorted: review alternative links. resolves #8591 (#8664)

This commit is contained in:
Diego Heras 2020-05-15 23:06:58 +02:00 committed by GitHub
parent f21ffd9449
commit b0336b932c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 30 additions and 24 deletions

View File

@ -8,11 +8,11 @@ encoding: UTF-8
links:
- https://firebit.net/
- https://firebit.info/
- https://firebit.name/
- https://firebit.pro/
- https://firebit.club/
- https://firebit.biz/
legacylinks:
- https://firebit.name/
- https://firebit.biz/
- http://firebit.net/
- http://firebit.info/
- http://firebit.name/

View File

@ -6,7 +6,9 @@ language: en-us
type: private
encoding: UTF-8
links:
- http://funkytorrents.com/ # site does not support https ERR_CONNECTION_REFUSED
- https://funkytorrents.com/
legacylinks:
- http://funkytorrents.com/
caps:
categories:

View File

@ -8,8 +8,9 @@ encoding: windows-1251
links:
- https://hdreactor.net/
- https://hdreactor.club/
- https://hdreactor.guru/
- https://hdreactor.su/
legacylinks:
- https://hdreactor.guru/
caps:
categorymappings:

View File

@ -6,7 +6,7 @@ language: it-it
type: private
encoding: UTF-8
links:
- https://hdtorrents.xyz/
- https://hdtorrents.xyz/ # Italian IP address filtering
legacylinks:
- http://hdtorrents.it/
- http://hdtorrents.xyz/

View File

@ -23,16 +23,9 @@ namespace Jackett.Common.Indexers
public override string[] AlternativeSiteLinks { get; protected set; } = {
"https://iptorrents.com/",
"https://www.iptorrents.com/",
"https://ipt-update.com/",
"https://iptorrents.eu/",
"https://nemo.iptorrents.com/",
"https://ipt.rocks/",
"http://ipt.read-books.org/",
"http://alien.eating-organic.net/",
"http://kong.net-freaks.com/",
"http://ghost.cable-modem.org/",
"http://logan.unusualperson.com/",
"http://baywatch.workisboring.com/",
"https://ipt.getcrazy.me/",
"https://ipt.findnemo.net/",
"https://ipt.beelyrics.net/",
@ -40,7 +33,17 @@ namespace Jackett.Common.Indexers
"https://ipt.workisboring.net/",
"https://ipt.lol/",
"https://ipt.cool/",
"https://ipt.world/",
"https://ipt.world/"
};
public override string[] LegacySiteLinks { get; protected set; } = {
"https://ipt-update.com/",
"http://ipt.read-books.org/",
"http://alien.eating-organic.net/",
"http://kong.net-freaks.com/",
"http://ghost.cable-modem.org/",
"http://logan.unusualperson.com/",
"http://baywatch.workisboring.com/"
};
private new ConfigurationDataCookie configData => (ConfigurationDataCookie)base.configData;

View File

@ -24,27 +24,27 @@ namespace Jackett.Common.Indexers
private string LoginUrl => SiteLink + "tak3login.php";
private string SearchUrl => SiteLink + "t.json";
public override string[] LegacySiteLinks { get; protected set; } = {
"https://torrentday.com/",
};
public override string[] AlternativeSiteLinks { get; protected set; } = {
"https://tday.love/",
"https://torrentday.cool/",
"https://tdonline.org/",
"https://secure.torrentday.com/",
"https://torrentday.eu/",
"https://classic.torrentday.com/",
"https://www.torrentday.com/",
"https://td-update.com/",
"https://www.torrentday.me/",
"https://www.torrentday.ru/",
"https://www.td.af/",
"https://torrentday.it/",
"https://td.findnemo.net/",
"https://td.getcrazy.me/",
"https://td.venom.global/",
"https://td.workisboring.net/",
"https://td.workisboring.net/"
};
public override string[] LegacySiteLinks { get; protected set; } = {
"https://torrentday.com/",
"https://tdonline.org/", // redirect to https://www.torrentday.com/
"https://torrentday.eu/", // redirect to https://www.torrentday.com/
"https://td-update.com/", // redirect to https://www.torrentday.com/
"https://www.torrentday.me/",
"https://www.torrentday.ru/",
"https://www.td.af/"
};
private new ConfigurationDataRecaptchaLogin configData => (ConfigurationDataRecaptchaLogin)base.configData;