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.
49 lines
1.3 KiB
49 lines
1.3 KiB
3 years ago
|
using System.Linq;
|
||
|
using System.Reflection;
|
||
|
using Lidarr.Http.REST;
|
||
|
using Lidarr.Http.REST.Attributes;
|
||
|
using Microsoft.AspNetCore.Mvc;
|
||
|
using NzbDrone.Core.Configuration;
|
||
|
|
||
|
namespace Lidarr.Api.V1.Config
|
||
|
{
|
||
|
public abstract class ConfigController<TResource> : RestController<TResource>
|
||
|
where TResource : RestResource, new()
|
||
|
{
|
||
|
private readonly IConfigService _configService;
|
||
|
|
||
|
protected ConfigController(IConfigService configService)
|
||
|
{
|
||
|
_configService = configService;
|
||
|
}
|
||
|
|
||
|
public override TResource GetResourceById(int id)
|
||
|
{
|
||
|
return GetConfig();
|
||
|
}
|
||
|
|
||
|
[HttpGet]
|
||
|
public TResource GetConfig()
|
||
|
{
|
||
|
var resource = ToResource(_configService);
|
||
|
resource.Id = 1;
|
||
|
|
||
|
return resource;
|
||
|
}
|
||
|
|
||
|
[RestPutById]
|
||
|
public ActionResult<TResource> SaveConfig(TResource resource)
|
||
|
{
|
||
|
var dictionary = resource.GetType()
|
||
|
.GetProperties(BindingFlags.Instance | BindingFlags.Public)
|
||
|
.ToDictionary(prop => prop.Name, prop => prop.GetValue(resource, null));
|
||
|
|
||
|
_configService.SaveConfigDictionary(dictionary);
|
||
|
|
||
|
return Accepted(resource.Id);
|
||
|
}
|
||
|
|
||
|
protected abstract TResource ToResource(IConfigService model);
|
||
|
}
|
||
|
}
|