You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Readarr/NzbDrone.Api/History/HistoryModule.cs

39 lines
1.2 KiB

12 years ago
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using AutoMapper;
using Nancy;
using NzbDrone.Api.Episodes;
using NzbDrone.Api.Extensions;
using NzbDrone.Core.Datastore;
using NzbDrone.Core.History;
using NzbDrone.Core.Qualities;
using NzbDrone.Core.Tv;
namespace NzbDrone.Api.History
{
public class HistoryModule : NzbDroneRestModule<HistoryResource>
12 years ago
{
private readonly IHistoryService _historyService;
public HistoryModule(IHistoryService historyService)
{
_historyService = historyService;
GetResourcePaged = GetHistory;
12 years ago
}
private PagingResource<HistoryResource> GetHistory(PagingResource<HistoryResource> pagingResource)
12 years ago
{
12 years ago
var pagingSpec = new PagingSpec<Core.History.History>
12 years ago
{
Page = pagingResource.Page,
PageSize = pagingResource.PageSize,
SortKey = pagingResource.SortKey,
SortDirection = pagingResource.SortDirection
12 years ago
};
return ApplyToPage(_historyService.Paged, pagingSpec);
12 years ago
}
}
}