mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
ImmortalSeed & FunFile: login again if necessary (#743)
This commit is contained in:
@@ -49,7 +49,9 @@ namespace Jackett.Indexers
|
|||||||
|
|
||||||
public async Task<IndexerConfigurationStatus> ApplyConfiguration(JToken configJson)
|
public async Task<IndexerConfigurationStatus> ApplyConfiguration(JToken configJson)
|
||||||
{
|
{
|
||||||
configData.LoadValuesFromJson(configJson);
|
if (configJson != null)
|
||||||
|
configData.LoadValuesFromJson(configJson);
|
||||||
|
|
||||||
var pairs = new Dictionary<string, string> {
|
var pairs = new Dictionary<string, string> {
|
||||||
{ "username", configData.Username.Value },
|
{ "username", configData.Username.Value },
|
||||||
{ "password", configData.Password.Value },
|
{ "password", configData.Password.Value },
|
||||||
@@ -92,6 +94,14 @@ namespace Jackett.Indexers
|
|||||||
searchUrl += "?" + queryCollection.GetQueryString();
|
searchUrl += "?" + queryCollection.GetQueryString();
|
||||||
|
|
||||||
var results = await RequestStringWithCookiesAndRetry(searchUrl);
|
var results = await RequestStringWithCookiesAndRetry(searchUrl);
|
||||||
|
|
||||||
|
// Occasionally the cookies become invalid, login again if that happens
|
||||||
|
if (results.IsRedirect)
|
||||||
|
{
|
||||||
|
await ApplyConfiguration(null);
|
||||||
|
results = await RequestStringWithCookiesAndRetry(searchUrl);
|
||||||
|
}
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
CQ dom = results.Content;
|
CQ dom = results.Content;
|
||||||
|
@@ -69,7 +69,9 @@ namespace Jackett.Indexers
|
|||||||
|
|
||||||
public async Task<IndexerConfigurationStatus> ApplyConfiguration(JToken configJson)
|
public async Task<IndexerConfigurationStatus> ApplyConfiguration(JToken configJson)
|
||||||
{
|
{
|
||||||
configData.LoadValuesFromJson(configJson);
|
if (configJson != null)
|
||||||
|
configData.LoadValuesFromJson(configJson);
|
||||||
|
|
||||||
var pairs = new Dictionary<string, string> {
|
var pairs = new Dictionary<string, string> {
|
||||||
{ "username", configData.Username.Value },
|
{ "username", configData.Username.Value },
|
||||||
{ "password", configData.Password.Value }
|
{ "password", configData.Password.Value }
|
||||||
@@ -99,6 +101,13 @@ namespace Jackett.Indexers
|
|||||||
|
|
||||||
var results = await RequestStringWithCookiesAndRetry(searchUrl);
|
var results = await RequestStringWithCookiesAndRetry(searchUrl);
|
||||||
|
|
||||||
|
// Occasionally the cookies become invalid, login again if that happens
|
||||||
|
if (results.Content.Contains("You do not have permission to access this page."))
|
||||||
|
{
|
||||||
|
await ApplyConfiguration(null);
|
||||||
|
results = await RequestStringWithCookiesAndRetry(searchUrl);
|
||||||
|
}
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
CQ dom = results.Content;
|
CQ dom = results.Content;
|
||||||
|
Reference in New Issue
Block a user