parent
4cf7c89282
commit
349829b138
|
@ -56,7 +56,7 @@ namespace NzbDrone.Integration.Test.ApiTests.WantedTests
|
||||||
var series = EnsureSeries(266189, "The Blacklist", false);
|
var series = EnsureSeries(266189, "The Blacklist", false);
|
||||||
EnsureEpisodeFile(series, 1, 1, Quality.SDTV);
|
EnsureEpisodeFile(series, 1, 1, Quality.SDTV);
|
||||||
|
|
||||||
var result = WantedCutoffUnmet.GetPaged(0, 15, "airDateUtc", "desc", "monitored", "false");
|
var result = WantedCutoffUnmet.GetPaged(0, 15, "airDateUtc", "desc", "monitored", false);
|
||||||
|
|
||||||
result.Records.Should().NotBeEmpty();
|
result.Records.Should().NotBeEmpty();
|
||||||
}
|
}
|
||||||
|
|
|
@ -58,7 +58,7 @@ namespace NzbDrone.Integration.Test.ApiTests.WantedTests
|
||||||
{
|
{
|
||||||
EnsureSeries(266189, "The Blacklist", false);
|
EnsureSeries(266189, "The Blacklist", false);
|
||||||
|
|
||||||
var result = WantedMissing.GetPaged(0, 15, "airDateUtc", "desc", "monitored", "false");
|
var result = WantedMissing.GetPaged(0, 15, "airDateUtc", "desc", "monitored", false);
|
||||||
|
|
||||||
result.Records.Should().NotBeEmpty();
|
result.Records.Should().NotBeEmpty();
|
||||||
}
|
}
|
||||||
|
|
|
@ -102,7 +102,7 @@ namespace NzbDrone.Integration.Test.Client
|
||||||
return Get<List<TResource>>(request);
|
return Get<List<TResource>>(request);
|
||||||
}
|
}
|
||||||
|
|
||||||
public PagingResource<TResource> GetPaged(int pageNumber, int pageSize, string sortKey, string sortDir, string filterKey = null, string filterValue = null)
|
public PagingResource<TResource> GetPaged(int pageNumber, int pageSize, string sortKey, string sortDir, string filterKey = null, object filterValue = null)
|
||||||
{
|
{
|
||||||
var request = BuildRequest();
|
var request = BuildRequest();
|
||||||
request.AddParameter("page", pageNumber);
|
request.AddParameter("page", pageNumber);
|
||||||
|
@ -113,8 +113,7 @@ namespace NzbDrone.Integration.Test.Client
|
||||||
|
|
||||||
if (filterKey != null && filterValue != null)
|
if (filterKey != null && filterValue != null)
|
||||||
{
|
{
|
||||||
request.AddParameter("filterKey", filterKey);
|
request.AddParameter(filterKey, filterValue);
|
||||||
request.AddParameter("filterValue", filterValue);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return Get<PagingResource<TResource>>(request);
|
return Get<PagingResource<TResource>>(request);
|
||||||
|
|
|
@ -2,6 +2,7 @@ using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using Microsoft.AspNetCore.Mvc;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
using NzbDrone.Common.Extensions;
|
||||||
using NzbDrone.Core.CustomFormats;
|
using NzbDrone.Core.CustomFormats;
|
||||||
using NzbDrone.Core.Datastore;
|
using NzbDrone.Core.Datastore;
|
||||||
using NzbDrone.Core.DecisionEngine.Specifications;
|
using NzbDrone.Core.DecisionEngine.Specifications;
|
||||||
|
@ -61,30 +62,24 @@ namespace Sonarr.Api.V3.History
|
||||||
|
|
||||||
[HttpGet]
|
[HttpGet]
|
||||||
[Produces("application/json")]
|
[Produces("application/json")]
|
||||||
public PagingResource<HistoryResource> GetHistory([FromQuery] PagingRequestResource paging, bool includeSeries, bool includeEpisode)
|
public PagingResource<HistoryResource> GetHistory([FromQuery] PagingRequestResource paging, bool includeSeries, bool includeEpisode, int? eventType, int? episodeId, string downloadId)
|
||||||
{
|
{
|
||||||
var pagingResource = new PagingResource<HistoryResource>(paging);
|
var pagingResource = new PagingResource<HistoryResource>(paging);
|
||||||
var pagingSpec = pagingResource.MapToPagingSpec<HistoryResource, EpisodeHistory>("date", SortDirection.Descending);
|
var pagingSpec = pagingResource.MapToPagingSpec<HistoryResource, EpisodeHistory>("date", SortDirection.Descending);
|
||||||
|
|
||||||
var eventTypeFilter = pagingResource.Filters.FirstOrDefault(f => f.Key == "eventType");
|
if (eventType.HasValue)
|
||||||
var episodeIdFilter = pagingResource.Filters.FirstOrDefault(f => f.Key == "episodeId");
|
|
||||||
var downloadIdFilter = pagingResource.Filters.FirstOrDefault(f => f.Key == "downloadId");
|
|
||||||
|
|
||||||
if (eventTypeFilter != null)
|
|
||||||
{
|
{
|
||||||
var filterValue = (EpisodeHistoryEventType)Convert.ToInt32(eventTypeFilter.Value);
|
var filterValue = (EpisodeHistoryEventType)eventType.Value;
|
||||||
pagingSpec.FilterExpressions.Add(v => v.EventType == filterValue);
|
pagingSpec.FilterExpressions.Add(v => v.EventType == filterValue);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (episodeIdFilter != null)
|
if (episodeId.HasValue)
|
||||||
{
|
{
|
||||||
var episodeId = Convert.ToInt32(episodeIdFilter.Value);
|
|
||||||
pagingSpec.FilterExpressions.Add(h => h.EpisodeId == episodeId);
|
pagingSpec.FilterExpressions.Add(h => h.EpisodeId == episodeId);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (downloadIdFilter != null)
|
if (downloadId.IsNotNullOrWhiteSpace())
|
||||||
{
|
{
|
||||||
var downloadId = downloadIdFilter.Value;
|
|
||||||
pagingSpec.FilterExpressions.Add(h => h.DownloadId == downloadId);
|
pagingSpec.FilterExpressions.Add(h => h.DownloadId == downloadId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
using System.Linq;
|
|
||||||
using Microsoft.AspNetCore.Mvc;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
using NzbDrone.Common.Extensions;
|
||||||
using NzbDrone.Core.Instrumentation;
|
using NzbDrone.Core.Instrumentation;
|
||||||
using Sonarr.Http;
|
using Sonarr.Http;
|
||||||
using Sonarr.Http.Extensions;
|
using Sonarr.Http.Extensions;
|
||||||
|
@ -18,7 +18,7 @@ namespace Sonarr.Api.V3.Logs
|
||||||
|
|
||||||
[HttpGet]
|
[HttpGet]
|
||||||
[Produces("application/json")]
|
[Produces("application/json")]
|
||||||
public PagingResource<LogResource> GetLogs([FromQuery] PagingRequestResource paging)
|
public PagingResource<LogResource> GetLogs([FromQuery] PagingRequestResource paging, string level)
|
||||||
{
|
{
|
||||||
var pagingResource = new PagingResource<LogResource>(paging);
|
var pagingResource = new PagingResource<LogResource>(paging);
|
||||||
var pageSpec = pagingResource.MapToPagingSpec<LogResource, Log>();
|
var pageSpec = pagingResource.MapToPagingSpec<LogResource, Log>();
|
||||||
|
@ -28,11 +28,9 @@ namespace Sonarr.Api.V3.Logs
|
||||||
pageSpec.SortKey = "id";
|
pageSpec.SortKey = "id";
|
||||||
}
|
}
|
||||||
|
|
||||||
var levelFilter = pagingResource.Filters.FirstOrDefault(f => f.Key == "level");
|
if (level.IsNotNullOrWhiteSpace())
|
||||||
|
|
||||||
if (levelFilter != null)
|
|
||||||
{
|
{
|
||||||
switch (levelFilter.Value)
|
switch (level)
|
||||||
{
|
{
|
||||||
case "fatal":
|
case "fatal":
|
||||||
pageSpec.FilterExpressions.Add(h => h.Level == "Fatal");
|
pageSpec.FilterExpressions.Add(h => h.Level == "Fatal");
|
||||||
|
|
|
@ -135,9 +135,9 @@ namespace Sonarr.Api.V3.Queue
|
||||||
|
|
||||||
[HttpGet]
|
[HttpGet]
|
||||||
[Produces("application/json")]
|
[Produces("application/json")]
|
||||||
public PagingResource<QueueResource> GetQueue(bool includeUnknownSeriesItems = false, bool includeSeries = false, bool includeEpisode = false)
|
public PagingResource<QueueResource> GetQueue([FromQuery] PagingRequestResource paging, bool includeUnknownSeriesItems = false, bool includeSeries = false, bool includeEpisode = false)
|
||||||
{
|
{
|
||||||
var pagingResource = Request.ReadPagingResourceFromRequest<QueueResource>();
|
var pagingResource = new PagingResource<QueueResource>(paging);
|
||||||
var pagingSpec = pagingResource.MapToPagingSpec<QueueResource, NzbDrone.Core.Queue.Queue>("timeleft", SortDirection.Ascending);
|
var pagingSpec = pagingResource.MapToPagingSpec<QueueResource, NzbDrone.Core.Queue.Queue>("timeleft", SortDirection.Ascending);
|
||||||
|
|
||||||
return pagingSpec.ApplyToPage((spec) => GetQueue(spec, includeUnknownSeriesItems), (q) => MapToResource(q, includeSeries, includeEpisode));
|
return pagingSpec.ApplyToPage((spec) => GetQueue(spec, includeUnknownSeriesItems), (q) => MapToResource(q, includeSeries, includeEpisode));
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
using System.Linq;
|
|
||||||
using Microsoft.AspNetCore.Mvc;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
using NzbDrone.Core.CustomFormats;
|
using NzbDrone.Core.CustomFormats;
|
||||||
using NzbDrone.Core.Datastore;
|
using NzbDrone.Core.Datastore;
|
||||||
|
@ -29,7 +28,7 @@ namespace Sonarr.Api.V3.Wanted
|
||||||
|
|
||||||
[HttpGet]
|
[HttpGet]
|
||||||
[Produces("application/json")]
|
[Produces("application/json")]
|
||||||
public PagingResource<EpisodeResource> GetCutoffUnmetEpisodes([FromQuery] PagingRequestResource paging, bool includeSeries = false, bool includeEpisodeFile = false, bool includeImages = false)
|
public PagingResource<EpisodeResource> GetCutoffUnmetEpisodes([FromQuery] PagingRequestResource paging, bool includeSeries = false, bool includeEpisodeFile = false, bool includeImages = false, bool monitored = true)
|
||||||
{
|
{
|
||||||
var pagingResource = new PagingResource<EpisodeResource>(paging);
|
var pagingResource = new PagingResource<EpisodeResource>(paging);
|
||||||
var pagingSpec = new PagingSpec<Episode>
|
var pagingSpec = new PagingSpec<Episode>
|
||||||
|
@ -40,16 +39,7 @@ namespace Sonarr.Api.V3.Wanted
|
||||||
SortDirection = pagingResource.SortDirection
|
SortDirection = pagingResource.SortDirection
|
||||||
};
|
};
|
||||||
|
|
||||||
var filter = pagingResource.Filters.FirstOrDefault(f => f.Key == "monitored");
|
pagingSpec.FilterExpressions.Add(v => v.Monitored == monitored || v.Series.Monitored == monitored);
|
||||||
|
|
||||||
if (filter != null && filter.Value == "false")
|
|
||||||
{
|
|
||||||
pagingSpec.FilterExpressions.Add(v => v.Monitored == false || v.Series.Monitored == false);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
pagingSpec.FilterExpressions.Add(v => v.Monitored == true && v.Series.Monitored == true);
|
|
||||||
}
|
|
||||||
|
|
||||||
var resource = pagingSpec.ApplyToPage(_episodeCutoffService.EpisodesWhereCutoffUnmet, v => MapToResource(v, includeSeries, includeEpisodeFile, includeImages));
|
var resource = pagingSpec.ApplyToPage(_episodeCutoffService.EpisodesWhereCutoffUnmet, v => MapToResource(v, includeSeries, includeEpisodeFile, includeImages));
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
using System.Linq;
|
|
||||||
using Microsoft.AspNetCore.Mvc;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
using NzbDrone.Core.CustomFormats;
|
using NzbDrone.Core.CustomFormats;
|
||||||
using NzbDrone.Core.Datastore;
|
using NzbDrone.Core.Datastore;
|
||||||
|
@ -25,7 +24,7 @@ namespace Sonarr.Api.V3.Wanted
|
||||||
|
|
||||||
[HttpGet]
|
[HttpGet]
|
||||||
[Produces("application/json")]
|
[Produces("application/json")]
|
||||||
public PagingResource<EpisodeResource> GetMissingEpisodes([FromQuery] PagingRequestResource paging, bool includeSeries = false, bool includeImages = false)
|
public PagingResource<EpisodeResource> GetMissingEpisodes([FromQuery] PagingRequestResource paging, bool includeSeries = false, bool includeImages = false, bool monitored = true)
|
||||||
{
|
{
|
||||||
var pagingResource = new PagingResource<EpisodeResource>(paging);
|
var pagingResource = new PagingResource<EpisodeResource>(paging);
|
||||||
var pagingSpec = new PagingSpec<Episode>
|
var pagingSpec = new PagingSpec<Episode>
|
||||||
|
@ -36,16 +35,7 @@ namespace Sonarr.Api.V3.Wanted
|
||||||
SortDirection = pagingResource.SortDirection
|
SortDirection = pagingResource.SortDirection
|
||||||
};
|
};
|
||||||
|
|
||||||
var monitoredFilter = pagingResource.Filters.FirstOrDefault(f => f.Key == "monitored");
|
pagingSpec.FilterExpressions.Add(v => v.Monitored == monitored || v.Series.Monitored == monitored);
|
||||||
|
|
||||||
if (monitoredFilter != null && monitoredFilter.Value == "false")
|
|
||||||
{
|
|
||||||
pagingSpec.FilterExpressions.Add(v => v.Monitored == false || v.Series.Monitored == false);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
pagingSpec.FilterExpressions.Add(v => v.Monitored == true && v.Series.Monitored == true);
|
|
||||||
}
|
|
||||||
|
|
||||||
var resource = pagingSpec.ApplyToPage(_episodeService.EpisodesWithoutFiles, v => MapToResource(v, includeSeries, false, includeImages));
|
var resource = pagingSpec.ApplyToPage(_episodeService.EpisodesWithoutFiles, v => MapToResource(v, includeSeries, false, includeImages));
|
||||||
|
|
||||||
|
|
|
@ -413,16 +413,6 @@
|
||||||
"schema": {
|
"schema": {
|
||||||
"$ref": "#/components/schemas/SortDirection"
|
"$ref": "#/components/schemas/SortDirection"
|
||||||
}
|
}
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "filters",
|
|
||||||
"in": "query",
|
|
||||||
"schema": {
|
|
||||||
"type": "array",
|
|
||||||
"items": {
|
|
||||||
"$ref": "#/components/schemas/PagingResourceFilter"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"responses": {
|
"responses": {
|
||||||
|
@ -1126,16 +1116,6 @@
|
||||||
"$ref": "#/components/schemas/SortDirection"
|
"$ref": "#/components/schemas/SortDirection"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "filters",
|
|
||||||
"in": "query",
|
|
||||||
"schema": {
|
|
||||||
"type": "array",
|
|
||||||
"items": {
|
|
||||||
"$ref": "#/components/schemas/PagingResourceFilter"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "includeSeries",
|
"name": "includeSeries",
|
||||||
"in": "query",
|
"in": "query",
|
||||||
|
@ -1159,6 +1139,14 @@
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": false
|
"default": false
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "monitored",
|
||||||
|
"in": "query",
|
||||||
|
"schema": {
|
||||||
|
"type": "boolean",
|
||||||
|
"default": true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"responses": {
|
"responses": {
|
||||||
|
@ -2338,16 +2326,6 @@
|
||||||
"$ref": "#/components/schemas/SortDirection"
|
"$ref": "#/components/schemas/SortDirection"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "filters",
|
|
||||||
"in": "query",
|
|
||||||
"schema": {
|
|
||||||
"type": "array",
|
|
||||||
"items": {
|
|
||||||
"$ref": "#/components/schemas/PagingResourceFilter"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "includeSeries",
|
"name": "includeSeries",
|
||||||
"in": "query",
|
"in": "query",
|
||||||
|
@ -2361,6 +2339,29 @@
|
||||||
"schema": {
|
"schema": {
|
||||||
"type": "boolean"
|
"type": "boolean"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "eventType",
|
||||||
|
"in": "query",
|
||||||
|
"schema": {
|
||||||
|
"type": "integer",
|
||||||
|
"format": "int32"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "episodeId",
|
||||||
|
"in": "query",
|
||||||
|
"schema": {
|
||||||
|
"type": "integer",
|
||||||
|
"format": "int32"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "downloadId",
|
||||||
|
"in": "query",
|
||||||
|
"schema": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"responses": {
|
"responses": {
|
||||||
|
@ -3789,13 +3790,10 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "filters",
|
"name": "level",
|
||||||
"in": "query",
|
"in": "query",
|
||||||
"schema": {
|
"schema": {
|
||||||
"type": "array",
|
"type": "string"
|
||||||
"items": {
|
|
||||||
"$ref": "#/components/schemas/PagingResourceFilter"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -4346,16 +4344,6 @@
|
||||||
"$ref": "#/components/schemas/SortDirection"
|
"$ref": "#/components/schemas/SortDirection"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "filters",
|
|
||||||
"in": "query",
|
|
||||||
"schema": {
|
|
||||||
"type": "array",
|
|
||||||
"items": {
|
|
||||||
"$ref": "#/components/schemas/PagingResourceFilter"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "includeSeries",
|
"name": "includeSeries",
|
||||||
"in": "query",
|
"in": "query",
|
||||||
|
@ -4371,6 +4359,14 @@
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": false
|
"default": false
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "monitored",
|
||||||
|
"in": "query",
|
||||||
|
"schema": {
|
||||||
|
"type": "boolean",
|
||||||
|
"default": true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"responses": {
|
"responses": {
|
||||||
|
@ -5426,6 +5422,38 @@
|
||||||
"Queue"
|
"Queue"
|
||||||
],
|
],
|
||||||
"parameters": [
|
"parameters": [
|
||||||
|
{
|
||||||
|
"name": "page",
|
||||||
|
"in": "query",
|
||||||
|
"schema": {
|
||||||
|
"type": "integer",
|
||||||
|
"format": "int32",
|
||||||
|
"default": 1
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "pageSize",
|
||||||
|
"in": "query",
|
||||||
|
"schema": {
|
||||||
|
"type": "integer",
|
||||||
|
"format": "int32",
|
||||||
|
"default": 10
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "sortKey",
|
||||||
|
"in": "query",
|
||||||
|
"schema": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "sortDirection",
|
||||||
|
"in": "query",
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/components/schemas/SortDirection"
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "includeUnknownSeriesItems",
|
"name": "includeUnknownSeriesItems",
|
||||||
"in": "query",
|
"in": "query",
|
||||||
|
@ -7399,13 +7427,6 @@
|
||||||
"sortDirection": {
|
"sortDirection": {
|
||||||
"$ref": "#/components/schemas/SortDirection"
|
"$ref": "#/components/schemas/SortDirection"
|
||||||
},
|
},
|
||||||
"filters": {
|
|
||||||
"type": "array",
|
|
||||||
"items": {
|
|
||||||
"$ref": "#/components/schemas/PagingResourceFilter"
|
|
||||||
},
|
|
||||||
"nullable": true
|
|
||||||
},
|
|
||||||
"totalRecords": {
|
"totalRecords": {
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
"format": "int32"
|
"format": "int32"
|
||||||
|
@ -8165,13 +8186,6 @@
|
||||||
"sortDirection": {
|
"sortDirection": {
|
||||||
"$ref": "#/components/schemas/SortDirection"
|
"$ref": "#/components/schemas/SortDirection"
|
||||||
},
|
},
|
||||||
"filters": {
|
|
||||||
"type": "array",
|
|
||||||
"items": {
|
|
||||||
"$ref": "#/components/schemas/PagingResourceFilter"
|
|
||||||
},
|
|
||||||
"nullable": true
|
|
||||||
},
|
|
||||||
"totalRecords": {
|
"totalRecords": {
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
"format": "int32"
|
"format": "int32"
|
||||||
|
@ -8414,13 +8428,6 @@
|
||||||
"sortDirection": {
|
"sortDirection": {
|
||||||
"$ref": "#/components/schemas/SortDirection"
|
"$ref": "#/components/schemas/SortDirection"
|
||||||
},
|
},
|
||||||
"filters": {
|
|
||||||
"type": "array",
|
|
||||||
"items": {
|
|
||||||
"$ref": "#/components/schemas/PagingResourceFilter"
|
|
||||||
},
|
|
||||||
"nullable": true
|
|
||||||
},
|
|
||||||
"totalRecords": {
|
"totalRecords": {
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
"format": "int32"
|
"format": "int32"
|
||||||
|
@ -9105,13 +9112,6 @@
|
||||||
"sortDirection": {
|
"sortDirection": {
|
||||||
"$ref": "#/components/schemas/SortDirection"
|
"$ref": "#/components/schemas/SortDirection"
|
||||||
},
|
},
|
||||||
"filters": {
|
|
||||||
"type": "array",
|
|
||||||
"items": {
|
|
||||||
"$ref": "#/components/schemas/PagingResourceFilter"
|
|
||||||
},
|
|
||||||
"nullable": true
|
|
||||||
},
|
|
||||||
"totalRecords": {
|
"totalRecords": {
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
"format": "int32"
|
"format": "int32"
|
||||||
|
@ -9763,20 +9763,6 @@
|
||||||
},
|
},
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"PagingResourceFilter": {
|
|
||||||
"type": "object",
|
|
||||||
"properties": {
|
|
||||||
"key": {
|
|
||||||
"type": "string",
|
|
||||||
"nullable": true
|
|
||||||
},
|
|
||||||
"value": {
|
|
||||||
"type": "string",
|
|
||||||
"nullable": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"additionalProperties": false
|
|
||||||
},
|
|
||||||
"ParseResource": {
|
"ParseResource": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
|
@ -10310,13 +10296,6 @@
|
||||||
"sortDirection": {
|
"sortDirection": {
|
||||||
"$ref": "#/components/schemas/SortDirection"
|
"$ref": "#/components/schemas/SortDirection"
|
||||||
},
|
},
|
||||||
"filters": {
|
|
||||||
"type": "array",
|
|
||||||
"items": {
|
|
||||||
"$ref": "#/components/schemas/PagingResourceFilter"
|
|
||||||
},
|
|
||||||
"nullable": true
|
|
||||||
},
|
|
||||||
"totalRecords": {
|
"totalRecords": {
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
"format": "int32"
|
"format": "int32"
|
||||||
|
|
|
@ -61,80 +61,6 @@ namespace Sonarr.Http.Extensions
|
||||||
return defaultValue;
|
return defaultValue;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static PagingResource<TResource> ReadPagingResourceFromRequest<TResource>(this HttpRequest request)
|
|
||||||
{
|
|
||||||
if (!int.TryParse(request.Query["PageSize"].ToString(), out var pageSize))
|
|
||||||
{
|
|
||||||
pageSize = 10;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!int.TryParse(request.Query["Page"].ToString(), out var page))
|
|
||||||
{
|
|
||||||
page = 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
var pagingResource = new PagingResource<TResource>
|
|
||||||
{
|
|
||||||
PageSize = pageSize,
|
|
||||||
Page = page,
|
|
||||||
Filters = new List<PagingResourceFilter>()
|
|
||||||
};
|
|
||||||
|
|
||||||
if (request.Query["SortKey"].Any())
|
|
||||||
{
|
|
||||||
var sortKey = request.Query["SortKey"].ToString();
|
|
||||||
|
|
||||||
if (!VALID_SORT_KEYS.Contains(sortKey) &&
|
|
||||||
!TableMapping.Mapper.IsValidSortKey(sortKey))
|
|
||||||
{
|
|
||||||
throw new BadRequestException($"Invalid sort key {sortKey}");
|
|
||||||
}
|
|
||||||
|
|
||||||
pagingResource.SortKey = sortKey;
|
|
||||||
|
|
||||||
if (request.Query["SortDirection"].Any())
|
|
||||||
{
|
|
||||||
pagingResource.SortDirection = request.Query["SortDirection"].ToString()
|
|
||||||
.Equals("ascending", StringComparison.InvariantCultureIgnoreCase)
|
|
||||||
? SortDirection.Ascending
|
|
||||||
: SortDirection.Descending;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// For backwards compatibility with v2
|
|
||||||
if (request.Query["FilterKey"].Any())
|
|
||||||
{
|
|
||||||
var filter = new PagingResourceFilter
|
|
||||||
{
|
|
||||||
Key = request.Query["FilterKey"].ToString()
|
|
||||||
};
|
|
||||||
|
|
||||||
if (request.Query["FilterValue"].Any())
|
|
||||||
{
|
|
||||||
filter.Value = request.Query["FilterValue"].ToString();
|
|
||||||
}
|
|
||||||
|
|
||||||
pagingResource.Filters.Add(filter);
|
|
||||||
}
|
|
||||||
|
|
||||||
// v3 uses filters in key=value format
|
|
||||||
foreach (var pair in request.Query)
|
|
||||||
{
|
|
||||||
if (EXCLUDED_KEYS.Contains(pair.Key))
|
|
||||||
{
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
pagingResource.Filters.Add(new PagingResourceFilter
|
|
||||||
{
|
|
||||||
Key = pair.Key,
|
|
||||||
Value = pair.Value.ToString()
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
return pagingResource;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static PagingResource<TResource> ApplyToPage<TResource, TModel>(this PagingSpec<TModel> pagingSpec, Func<PagingSpec<TModel>, PagingSpec<TModel>> function, Converter<TModel, TResource> mapper)
|
public static PagingResource<TResource> ApplyToPage<TResource, TModel>(this PagingSpec<TModel> pagingSpec, Func<PagingSpec<TModel>, PagingSpec<TModel>> function, Converter<TModel, TResource> mapper)
|
||||||
{
|
{
|
||||||
pagingSpec = function(pagingSpec);
|
pagingSpec = function(pagingSpec);
|
||||||
|
|
|
@ -12,7 +12,6 @@ namespace Sonarr.Http
|
||||||
public int? PageSize { get; set; }
|
public int? PageSize { get; set; }
|
||||||
public string SortKey { get; set; }
|
public string SortKey { get; set; }
|
||||||
public SortDirection? SortDirection { get; set; }
|
public SortDirection? SortDirection { get; set; }
|
||||||
public List<PagingResourceFilter> Filters { get; set; }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public class PagingResource<TResource>
|
public class PagingResource<TResource>
|
||||||
|
@ -21,8 +20,6 @@ namespace Sonarr.Http
|
||||||
public int PageSize { get; set; }
|
public int PageSize { get; set; }
|
||||||
public string SortKey { get; set; }
|
public string SortKey { get; set; }
|
||||||
public SortDirection SortDirection { get; set; }
|
public SortDirection SortDirection { get; set; }
|
||||||
public List<PagingResourceFilter> Filters { get; set; }
|
|
||||||
|
|
||||||
public int TotalRecords { get; set; }
|
public int TotalRecords { get; set; }
|
||||||
public List<TResource> Records { get; set; }
|
public List<TResource> Records { get; set; }
|
||||||
|
|
||||||
|
@ -36,7 +33,6 @@ namespace Sonarr.Http
|
||||||
PageSize = requestResource.PageSize ?? 10;
|
PageSize = requestResource.PageSize ?? 10;
|
||||||
SortKey = requestResource.SortKey;
|
SortKey = requestResource.SortKey;
|
||||||
SortDirection = requestResource.SortDirection ?? SortDirection.Descending;
|
SortDirection = requestResource.SortDirection ?? SortDirection.Descending;
|
||||||
Filters = requestResource.Filters ?? new List<PagingResourceFilter>();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,8 +0,0 @@
|
||||||
namespace Sonarr.Http
|
|
||||||
{
|
|
||||||
public class PagingResourceFilter
|
|
||||||
{
|
|
||||||
public string Key { get; set; }
|
|
||||||
public string Value { get; set; }
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue