2013-04-22 05:18:08 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2013-05-22 02:58:57 +02:00
|
|
|
|
using Nancy.Security;
|
2013-04-22 05:18:08 +02:00
|
|
|
|
using NzbDrone.Api.REST;
|
2013-04-21 00:14:41 +02:00
|
|
|
|
using NzbDrone.Api.Validation;
|
2013-04-22 05:18:08 +02:00
|
|
|
|
using NzbDrone.Core.Datastore;
|
|
|
|
|
using NzbDrone.Api.Mapping;
|
2013-04-21 00:14:41 +02:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Api
|
|
|
|
|
{
|
|
|
|
|
public abstract class NzbDroneRestModule<TResource> : RestModule<TResource> where TResource : RestResource, new()
|
|
|
|
|
{
|
2013-04-22 05:18:08 +02:00
|
|
|
|
protected NzbDroneRestModule()
|
|
|
|
|
: this(new TResource().ResourceName)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-21 00:14:41 +02:00
|
|
|
|
protected NzbDroneRestModule(string resource)
|
|
|
|
|
: base("/api/" + resource.Trim('/'))
|
|
|
|
|
{
|
|
|
|
|
PostValidator.RuleFor(r => r.Id).IsZero();
|
|
|
|
|
PutValidator.RuleFor(r => r.Id).ValidId();
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-22 05:18:08 +02:00
|
|
|
|
|
|
|
|
|
protected TResource Apply<TModel>(Func<TModel, TModel> function, TResource resource) where TModel : ModelBase, new()
|
|
|
|
|
{
|
|
|
|
|
var model = resource.InjectTo<TModel>();
|
|
|
|
|
function(model);
|
|
|
|
|
return model.InjectTo<TResource>();
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-25 06:27:49 +02:00
|
|
|
|
protected List<TResource> ApplyToList<TModel>(Func<IEnumerable<TModel>> function) where TModel : ModelBase, new()
|
2013-04-22 05:18:08 +02:00
|
|
|
|
{
|
|
|
|
|
var modelList = function();
|
|
|
|
|
return modelList.InjectTo<List<TResource>>();
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-25 06:27:49 +02:00
|
|
|
|
protected TResource Apply<TModel>(Func<TModel> function) where TModel : ModelBase, new()
|
|
|
|
|
{
|
|
|
|
|
var modelList = function();
|
|
|
|
|
return modelList.InjectTo<TResource>();
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-22 05:18:08 +02:00
|
|
|
|
protected TResource Apply<TModel>(Func<int, TModel> action, int id) where TModel : ModelBase, new()
|
|
|
|
|
{
|
|
|
|
|
var model = action(id);
|
|
|
|
|
return model.InjectTo<TResource>();
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-13 08:12:19 +02:00
|
|
|
|
protected PagingResource<TResource> ApplyToPage<TModel>(Func<PagingSpec<TModel>, PagingSpec<TModel>> function, PagingSpec<TModel> pagingSpec) where TModel : ModelBase, new()
|
|
|
|
|
{
|
|
|
|
|
pagingSpec = function(pagingSpec);
|
|
|
|
|
|
|
|
|
|
return new PagingResource<TResource>
|
|
|
|
|
{
|
|
|
|
|
Page = pagingSpec.Page,
|
|
|
|
|
PageSize = pagingSpec.PageSize,
|
|
|
|
|
SortDirection = pagingSpec.SortDirection,
|
|
|
|
|
SortKey = pagingSpec.SortKey,
|
|
|
|
|
TotalRecords = pagingSpec.TotalRecords,
|
|
|
|
|
Records = pagingSpec.Records.InjectTo<List<TResource>>()
|
|
|
|
|
};
|
|
|
|
|
}
|
2013-04-21 00:14:41 +02:00
|
|
|
|
}
|
|
|
|
|
}
|