Fixed: Plex Library Updates

(cherry picked from commit bd70fa54107c225ea08da53183e2be944e730475)
pull/7691/head
Mark McDowall 2 years ago committed by Qstick
parent 5c8b58c30d
commit 43a2a2d335

@ -5,6 +5,7 @@ using NzbDrone.Common.Extensions;
using NzbDrone.Common.Serializer; using NzbDrone.Common.Serializer;
using NzbDrone.Core.ImportLists.Exceptions; using NzbDrone.Core.ImportLists.Exceptions;
using NzbDrone.Core.ImportLists.ImportListMovies; using NzbDrone.Core.ImportLists.ImportListMovies;
using NzbDrone.Core.Notifications.Plex.PlexTv;
using NzbDrone.Core.Notifications.Plex.Server; using NzbDrone.Core.Notifications.Plex.Server;
namespace NzbDrone.Core.ImportLists.Plex namespace NzbDrone.Core.ImportLists.Plex
@ -19,7 +20,7 @@ namespace NzbDrone.Core.ImportLists.Plex
public virtual IList<ImportListMovie> ParseResponse(ImportListResponse importResponse) public virtual IList<ImportListMovie> ParseResponse(ImportListResponse importResponse)
{ {
List<PlexSectionItem> items; List<PlexWatchlistItem> items;
_importResponse = importResponse; _importResponse = importResponse;
@ -30,7 +31,7 @@ namespace NzbDrone.Core.ImportLists.Plex
return movies; return movies;
} }
items = Json.Deserialize<PlexResponse<PlexSectionResponse>>(_importResponse.Content) items = Json.Deserialize<PlexResponse<PlexWatchlistRespone>>(_importResponse.Content)
.MediaContainer .MediaContainer
.Items; .Items;

@ -0,0 +1,39 @@
using System.Collections.Generic;
using Newtonsoft.Json;
namespace NzbDrone.Core.Notifications.Plex.PlexTv
{
public class PlexSectionItemGuid
{
public string Id { get; set; }
}
public class PlexWatchlistRespone
{
[JsonProperty("Metadata")]
public List<PlexWatchlistItem> Items { get; set; }
public PlexWatchlistRespone()
{
Items = new List<PlexWatchlistItem>();
}
}
public class PlexWatchlistItem
{
public PlexWatchlistItem()
{
Guids = new List<PlexSectionItemGuid>();
}
[JsonProperty("ratingKey")]
public string Id { get; set; }
public string Title { get; set; }
public int Year { get; set; }
[JsonProperty("Guid")]
public List<PlexSectionItemGuid> Guids { get; set; }
}
}

@ -3,22 +3,14 @@ using Newtonsoft.Json;
namespace NzbDrone.Core.Notifications.Plex.Server namespace NzbDrone.Core.Notifications.Plex.Server
{ {
public class PlexSectionItemGuid
{
public string Id { get; set; }
}
public class PlexSectionItem public class PlexSectionItem
{ {
[JsonProperty("ratingKey")] [JsonProperty("ratingKey")]
public string Id { get; set; } public string Id { get; set; }
public string Title { get; set; } public string Title { get; set; }
public int Year { get; set; } public int Year { get; set; }
public string Guid { get; set; }
[JsonProperty("Guid")]
public List<PlexSectionItemGuid> Guids { get; set; }
} }
public class PlexSectionResponse public class PlexSectionResponse
@ -36,5 +28,10 @@ namespace NzbDrone.Core.Notifications.Plex.Server
{ {
[JsonProperty("_children")] [JsonProperty("_children")]
public List<PlexSectionItem> Items { get; set; } public List<PlexSectionItem> Items { get; set; }
public PlexSectionResponseLegacy()
{
Items = new List<PlexSectionItem>();
}
} }
} }

Loading…
Cancel
Save