-
-
Notifications
You must be signed in to change notification settings - Fork 401
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#150 sonarr/sickrage cache checking. sickrage has a couple small item…
…s left
- Loading branch information
Drewster727
committed
Apr 8, 2016
1 parent
35310d3
commit 5f67302
Showing
17 changed files
with
332 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace PlexRequests.Api.Models.Sonarr | ||
{ | ||
public class SonarrAllSeries | ||
{ | ||
public List<Series> list { get; set; } | ||
} | ||
|
||
public class Series | ||
{ | ||
public string title { get; set; } | ||
public List<Alternatetitle> alternateTitles { get; set; } | ||
public string sortTitle { get; set; } | ||
public int seasonCount { get; set; } | ||
public int totalEpisodeCount { get; set; } | ||
public int episodeCount { get; set; } | ||
public int episodeFileCount { get; set; } | ||
public long sizeOnDisk { get; set; } | ||
public string status { get; set; } | ||
public string overview { get; set; } | ||
public DateTime previousAiring { get; set; } | ||
public string network { get; set; } | ||
public List<Image> images { get; set; } | ||
public List<Season> seasons { get; set; } | ||
public int year { get; set; } | ||
public string path { get; set; } | ||
public int profileId { get; set; } | ||
public bool seasonFolder { get; set; } | ||
public bool monitored { get; set; } | ||
public bool useSceneNumbering { get; set; } | ||
public int runtime { get; set; } | ||
public int tvdbId { get; set; } | ||
public int tvRageId { get; set; } | ||
public int tvMazeId { get; set; } | ||
public DateTime firstAired { get; set; } | ||
public DateTime lastInfoSync { get; set; } | ||
public string seriesType { get; set; } | ||
public string cleanTitle { get; set; } | ||
public string imdbId { get; set; } | ||
public string titleSlug { get; set; } | ||
public string certification { get; set; } | ||
public List<string> genres { get; set; } | ||
public List<object> tags { get; set; } | ||
public DateTime added { get; set; } | ||
public Ratings ratings { get; set; } | ||
public int qualityProfileId { get; set; } | ||
public int id { get; set; } | ||
} | ||
|
||
public class Ratings | ||
{ | ||
public int votes { get; set; } | ||
public float value { get; set; } | ||
} | ||
|
||
public class Alternatetitle | ||
{ | ||
public string title { get; set; } | ||
public int seasonNumber { get; set; } | ||
} | ||
|
||
public class Image | ||
{ | ||
public string coverType { get; set; } | ||
public string url { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
namespace PlexRequests.Services.Interfaces | ||
{ | ||
public interface ISickRageCacher | ||
{ | ||
void Queued(long check); | ||
int[] QueuedIds(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
namespace PlexRequests.Services.Interfaces | ||
{ | ||
public interface ISonarrCacher | ||
{ | ||
void Queued(long check); | ||
int[] QueuedIds(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
#region Copyright | ||
// /************************************************************************ | ||
// Copyright (c) 2016 Jamie Rees | ||
// File: PlexAvailabilityChecker.cs | ||
// Created By: Jamie Rees | ||
// | ||
// Permission is hereby granted, free of charge, to any person obtaining | ||
// a copy of this software and associated documentation files (the | ||
// "Software"), to deal in the Software without restriction, including | ||
// without limitation the rights to use, copy, modify, merge, publish, | ||
// distribute, sublicense, and/or sell copies of the Software, and to | ||
// permit persons to whom the Software is furnished to do so, subject to | ||
// the following conditions: | ||
// | ||
// The above copyright notice and this permission notice shall be | ||
// included in all copies or substantial portions of the Software. | ||
// | ||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | ||
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE | ||
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION | ||
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION | ||
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
// ************************************************************************/ | ||
#endregion | ||
|
||
using System; | ||
using NLog; | ||
|
||
using PlexRequests.Api.Interfaces; | ||
using PlexRequests.Core; | ||
using PlexRequests.Core.SettingModels; | ||
using PlexRequests.Helpers; | ||
using PlexRequests.Services.Interfaces; | ||
using PlexRequests.Api.Models.Movie; | ||
using System.Linq; | ||
using PlexRequests.Api.Models.SickRage; | ||
|
||
namespace PlexRequests.Services | ||
{ | ||
public class SickRageCacher : ISickRageCacher | ||
{ | ||
public SickRageCacher(ISettingsService<SickRageSettings> srSettings, ISickRageApi srApi, ICacheProvider cache) | ||
{ | ||
SrSettings = srSettings; | ||
SrApi = srApi; | ||
Cache = cache; | ||
} | ||
|
||
private ISettingsService<SickRageSettings> SrSettings { get; } | ||
private ICacheProvider Cache { get; } | ||
private ISickRageApi SrApi { get; } | ||
|
||
private static Logger Log = LogManager.GetCurrentClassLogger(); | ||
|
||
public void Queued(long check) | ||
{ | ||
Log.Trace("This is check no. {0}", check); | ||
Log.Trace("Getting the settings"); | ||
|
||
var settings = SrSettings.GetSettings(); | ||
if (settings.Enabled) | ||
{ | ||
Log.Trace("Getting all shows from SickRage"); | ||
var movies = SrApi.GetShows(settings.ApiKey, settings.FullUri); | ||
Cache.Set(CacheKeys.SickRageQueued, movies, 10); | ||
} | ||
} | ||
|
||
// we do not want to set here... | ||
public int[] QueuedIds() | ||
{ | ||
var tv = Cache.Get<SickRageTvAdd>(CacheKeys.SickRageQueued); | ||
return new int[] { }; //tv != null ? tv.Select(x => x.info.tmdb_id).ToArray() : new int[] { }; // TODO: return the array of tvdb IDs from SR | ||
This comment has been minimized.
Sorry, something went wrong.
Drewster727
Contributor
|
||
} | ||
} | ||
} |
Oops, something went wrong.
@tidusjar need to return an actual model (array of shows?) instead of a JObject. The call works, just need to deserialize.