mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-11 07:46:05 -07:00
Added logging around SickRage
This commit is contained in:
parent
10be8f0440
commit
dd07e7546b
7 changed files with 113 additions and 36 deletions
|
@ -28,6 +28,7 @@
|
|||
#endregion
|
||||
|
||||
using System;
|
||||
using System.ComponentModel;
|
||||
using System.Diagnostics;
|
||||
using System.Linq;
|
||||
using System.Threading;
|
||||
|
@ -55,9 +56,13 @@ namespace PlexRequests.Api
|
|||
public async Task<SickRageTvAdd> AddSeries(int tvdbId, int seasonCount, int[] seasons, string quality, string apiKey,
|
||||
Uri baseUrl)
|
||||
{
|
||||
|
||||
var futureStatus = seasons.Length > 0 && !seasons.Any(x => x == seasonCount) ? SickRageStatus.Skipped : SickRageStatus.Wanted;
|
||||
var status = seasons.Length > 0 ? SickRageStatus.Skipped : SickRageStatus.Wanted;
|
||||
|
||||
Log.Trace("Future Status: {0}", futureStatus);
|
||||
Log.Trace("Current Status: {0}", status);
|
||||
|
||||
var request = new RestRequest
|
||||
{
|
||||
Resource = "/api/{apiKey}/?cmd=show.addnew",
|
||||
|
@ -69,10 +74,15 @@ namespace PlexRequests.Api
|
|||
request.AddQueryParameter("future_status", futureStatus);
|
||||
if (!quality.Equals("default", StringComparison.CurrentCultureIgnoreCase))
|
||||
{
|
||||
Log.Trace("Settings quality to {0}", quality);
|
||||
request.AddQueryParameter("initial", quality);
|
||||
}
|
||||
|
||||
Log.Trace("Entering `Execute<SickRageTvAdd>`");
|
||||
var obj = Api.Execute<SickRageTvAdd>(request, baseUrl);
|
||||
Log.Trace("Exiting `Execute<SickRageTvAdd>`");
|
||||
Log.Trace("obj Result:");
|
||||
Log.Trace(obj.DumpJson());
|
||||
|
||||
if (obj.result != "failure")
|
||||
{
|
||||
|
@ -81,11 +91,13 @@ namespace PlexRequests.Api
|
|||
|
||||
var seasonIncrement = 0;
|
||||
var seasonList = new SickRageSeasonList();
|
||||
Log.Trace("while (seasonIncrement < seasonCount) where seasonCount = {0}", seasonCount);
|
||||
while (seasonIncrement < seasonCount)
|
||||
{
|
||||
seasonList = VerifyShowHasLoaded(tvdbId, apiKey, baseUrl);
|
||||
seasonIncrement = seasonList.Data?.Length ?? 0;
|
||||
|
||||
Log.Trace("New seasonIncrement -> {0}", seasonIncrement);
|
||||
|
||||
if (sw.ElapsedMilliseconds > 30000) // Break out after 30 seconds, it's not going to get added
|
||||
{
|
||||
Log.Warn("Couldn't find out if the show had been added after 10 seconds. I doubt we can change the status to wanted.");
|
||||
|
@ -94,17 +106,29 @@ namespace PlexRequests.Api
|
|||
}
|
||||
sw.Stop();
|
||||
}
|
||||
if (seasons.Length > 0)
|
||||
Log.Trace("seasons.Length > 0 where seasons.Len -> {0}", seasons.Length);
|
||||
try
|
||||
{
|
||||
//handle the seasons requested
|
||||
foreach (var s in seasons)
|
||||
if (seasons.Length > 0)
|
||||
{
|
||||
var result = await AddSeason(tvdbId, s, apiKey, baseUrl);
|
||||
Log.Trace("SickRage adding season results: ");
|
||||
Log.Trace(result.DumpJson());
|
||||
//handle the seasons requested
|
||||
foreach (var s in seasons)
|
||||
{
|
||||
Log.Trace("Adding season {0}", s);
|
||||
var result = await AddSeason(tvdbId, s, apiKey, baseUrl);
|
||||
Log.Trace("SickRage adding season results: ");
|
||||
Log.Trace(result.DumpJson());
|
||||
}
|
||||
}
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
Log.Trace("Exception when adding seasons:");
|
||||
Log.Error(e);
|
||||
throw;
|
||||
}
|
||||
|
||||
Log.Trace("Finished with the API, returning the obj");
|
||||
return obj;
|
||||
}
|
||||
|
||||
|
@ -124,6 +148,7 @@ namespace PlexRequests.Api
|
|||
|
||||
public SickRageSeasonList VerifyShowHasLoaded(int tvdbId, string apiKey, Uri baseUrl)
|
||||
{
|
||||
Log.Trace("Entered `VerifyShowHasLoaded({0} <- id)`", tvdbId);
|
||||
var request = new RestRequest
|
||||
{
|
||||
Resource = "/api/{apiKey}/?cmd=show.seasonlist",
|
||||
|
@ -134,7 +159,9 @@ namespace PlexRequests.Api
|
|||
|
||||
try
|
||||
{
|
||||
Log.Trace("Entering `ExecuteJson<SickRageSeasonList>`");
|
||||
var obj = Api.ExecuteJson<SickRageSeasonList>(request, baseUrl);
|
||||
Log.Trace("Exited `ExecuteJson<SickRageSeasonList>`");
|
||||
return obj;
|
||||
}
|
||||
catch (Exception e)
|
||||
|
@ -157,7 +184,14 @@ namespace PlexRequests.Api
|
|||
request.AddQueryParameter("status", SickRageStatus.Wanted);
|
||||
|
||||
await Task.Run(() => Thread.Sleep(2000));
|
||||
return await Task.Run(() => Api.Execute<SickRageTvAdd>(request, baseUrl)).ConfigureAwait(false);
|
||||
return await Task.Run(() =>
|
||||
{
|
||||
Log.Trace("Entering `Execute<SickRageTvAdd>` in a new `Task<T>`");
|
||||
var result = Api.Execute<SickRageTvAdd>(request, baseUrl);
|
||||
|
||||
Log.Trace("Exiting `Execute<SickRageTvAdd>` and yeilding `Task<T>` result");
|
||||
return result;
|
||||
}).ConfigureAwait(false);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue