-
-
Notifications
You must be signed in to change notification settings - Fork 397
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #570 from tidusjar/dev
Dev to master
- Loading branch information
Showing
55 changed files
with
1,991 additions
and
316 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,84 @@ | ||
#region Copyright | ||
// /************************************************************************ | ||
// Copyright (c) 2016 Jamie Rees | ||
// File: RecentlyAdded.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.Collections.Generic; | ||
|
||
namespace PlexRequests.Api.Models.Plex | ||
{ | ||
public class RecentlyAddedChild | ||
{ | ||
public string _elementType { get; set; } | ||
public string allowSync { get; set; } | ||
public string librarySectionID { get; set; } | ||
public string librarySectionTitle { get; set; } | ||
public string librarySectionUUID { get; set; } | ||
public int ratingKey { get; set; } | ||
public string key { get; set; } | ||
public int parentRatingKey { get; set; } | ||
public string type { get; set; } | ||
public string title { get; set; } | ||
public string parentKey { get; set; } | ||
public string parentTitle { get; set; } | ||
public string parentSummary { get; set; } | ||
public string summary { get; set; } | ||
public int index { get; set; } | ||
public int parentIndex { get; set; } | ||
public string thumb { get; set; } | ||
public string art { get; set; } | ||
public string parentThumb { get; set; } | ||
public int leafCount { get; set; } | ||
public int viewedLeafCount { get; set; } | ||
public int addedAt { get; set; } | ||
public int updatedAt { get; set; } | ||
public List<object> _children { get; set; } | ||
public string studio { get; set; } | ||
public string contentRating { get; set; } | ||
public string rating { get; set; } | ||
public int? viewCount { get; set; } | ||
public int? lastViewedAt { get; set; } | ||
public int? year { get; set; } | ||
public int? duration { get; set; } | ||
public string originallyAvailableAt { get; set; } | ||
public string chapterSource { get; set; } | ||
public string parentTheme { get; set; } | ||
public string titleSort { get; set; } | ||
public string tagline { get; set; } | ||
public int? viewOffset { get; set; } | ||
public string originalTitle { get; set; } | ||
} | ||
|
||
public class RecentlyAdded | ||
{ | ||
public string _elementType { get; set; } | ||
public string allowSync { get; set; } | ||
public string identifier { get; set; } | ||
public string mediaTagPrefix { get; set; } | ||
public string mediaTagVersion { get; set; } | ||
public string mixedParents { get; set; } | ||
public List<RecentlyAddedChild> _children { 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
#region Copyright | ||
// /************************************************************************ | ||
// Copyright (c) 2016 Jamie Rees | ||
// File: SonarrSearchCommand.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.Xml.Linq; | ||
|
||
namespace PlexRequests.Api.Models.Sonarr | ||
{ | ||
public class SonarrSearchCommand | ||
{ | ||
public int seriesId { get; set; } | ||
public int seasonNumber { get; set; } | ||
public string name { get; set; } | ||
} | ||
} |
55 changes: 55 additions & 0 deletions
55
PlexRequests.Api.Models/Sonarr/SonarrSeasonSearchResult.cs
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,55 @@ | ||
#region Copyright | ||
// /************************************************************************ | ||
// Copyright (c) 2016 Jamie Rees | ||
// File: SonarrSeasonSearchResult.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 | ||
namespace PlexRequests.Api.Models.Sonarr | ||
{ | ||
public class SeasonBody | ||
{ | ||
public int seriesId { get; set; } | ||
public int seasonNumber { get; set; } | ||
public bool sendUpdatesToClient { get; set; } | ||
public bool updateScheduledTask { get; set; } | ||
public string completionMessage { get; set; } | ||
public string name { get; set; } | ||
public string trigger { get; set; } | ||
} | ||
|
||
public class SonarrSeasonSearchResult | ||
{ | ||
public string name { get; set; } | ||
public SeasonBody body { get; set; } | ||
public string priority { get; set; } | ||
public string status { get; set; } | ||
public string queued { get; set; } | ||
public string trigger { get; set; } | ||
public string state { get; set; } | ||
public bool manual { get; set; } | ||
public string startedOn { get; set; } | ||
public bool sendUpdatesToClient { get; set; } | ||
public bool updateScheduledTask { get; set; } | ||
public int id { get; set; } | ||
} | ||
} |
56 changes: 56 additions & 0 deletions
56
PlexRequests.Api.Models/Sonarr/SonarrSeriesSearchResult.cs
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,56 @@ | ||
#region Copyright | ||
// /************************************************************************ | ||
// Copyright (c) 2016 Jamie Rees | ||
// File: SonarrSeriesSearchResult.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 | ||
namespace PlexRequests.Api.Models.Sonarr | ||
{ | ||
public class SeriesBody | ||
{ | ||
public int seriesId { get; set; } | ||
public bool sendUpdatesToClient { get; set; } | ||
public bool updateScheduledTask { get; set; } | ||
public string completionMessage { get; set; } | ||
public string name { get; set; } | ||
public string trigger { get; set; } | ||
} | ||
|
||
public class SonarrSeriesSearchResult | ||
{ | ||
public string name { get; set; } | ||
public SeriesBody body { get; set; } | ||
public string priority { get; set; } | ||
public string status { get; set; } | ||
public string queued { get; set; } | ||
public string started { get; set; } | ||
public string trigger { get; set; } | ||
public string state { get; set; } | ||
public bool manual { get; set; } | ||
public string startedOn { get; set; } | ||
public string stateChangeTime { get; set; } | ||
public bool sendUpdatesToClient { get; set; } | ||
public bool updateScheduledTask { get; set; } | ||
public int id { 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
Oops, something went wrong.