Radarr/src/NzbDrone.Api/PagingResource.cs

55 lines
1.8 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq.Expressions;
2013-05-13 06:12:19 +00:00
using NzbDrone.Core.Datastore;
2013-05-02 05:50:34 +00:00
namespace NzbDrone.Api
{
public class PagingResource<TResource>
2013-05-02 05:50:34 +00:00
{
public int Page { get; set; }
2013-05-13 06:12:19 +00:00
public int PageSize { get; set; }
2013-05-02 05:50:34 +00:00
public string SortKey { get; set; }
2013-05-13 06:12:19 +00:00
public SortDirection SortDirection { get; set; }
public string FilterKey { get; set; }
public string FilterValue { get; set; }
public string FilterType { get; set; }
2013-05-02 05:50:34 +00:00
public int TotalRecords { get; set; }
public List<TResource> Records { get; set; }
}
public static class PagingResourceMapper
{
public static PagingSpec<TModel> MapToPagingSpec<TResource, TModel>(this PagingResource<TResource> pagingResource, string defaultSortKey = "Id", SortDirection defaultSortDirection = SortDirection.Ascending)
{
var pagingSpec = new PagingSpec<TModel>
{
Page = pagingResource.Page,
PageSize = pagingResource.PageSize,
SortKey = pagingResource.SortKey,
SortDirection = pagingResource.SortDirection,
};
if (pagingResource.SortKey == null)
{
pagingSpec.SortKey = defaultSortKey;
if(pagingResource.SortDirection == SortDirection.Default)
{
pagingSpec.SortDirection = defaultSortDirection;
}
}
return pagingSpec;
}
/*public static Expression<Func<TModel, object>> CreateFilterExpression<TModel>(string filterKey, string filterValue)
{
Type type = typeof(TModel);
ParameterExpression parameterExpression = Expression.Parameter(type, "x");
Expression expressionBody = parameterExpression;
return expressionBody;
}*/
2013-05-02 05:50:34 +00:00
}
}