orpheus: fixed downloading issue with token. resolves #12525 (#12530)

This commit is contained in:
seeyabye
2021-11-10 01:07:34 +09:00
committed by GitHub
parent a0659f1ca6
commit a9feb22e6d
2 changed files with 8 additions and 3 deletions

View File

@@ -29,6 +29,7 @@ namespace Jackett.Common.Indexers.Abstract
protected virtual string PosterUrl => SiteLink;
protected virtual string AuthorizationFormat => "{0}";
protected virtual int ApiKeyLength => 41;
protected virtual string FlipOptionalTokenString(string requestLink) => requestLink.Replace("usetoken=1", "usetoken=0");
protected bool useTokens;
protected string cookie = "";
@@ -395,10 +396,11 @@ namespace Jackett.Common.Indexers.Abstract
var html = Encoding.GetString(content);
if (html.Contains("You do not have any freeleech tokens left.")
|| html.Contains("You do not have enough freeleech tokens")
|| html.Contains("This torrent is too large."))
|| html.Contains("This torrent is too large.")
|| html.Contains("You cannot use tokens here"))
{
// download again with usetoken=0
var requestLinkNew = requestLink.Replace("usetoken=1", "usetoken=0");
var requestLinkNew = FlipOptionalTokenString(requestLink);
content = await base.Download(new Uri(requestLinkNew), RequestType.GET, headers: headers);
}
}