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.
41 lines
1.1 KiB
41 lines
1.1 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using Nancy;
|
|
using NzbDrone.Api.Extensions;
|
|
using NzbDrone.Core.Configuration;
|
|
|
|
namespace NzbDrone.Api.Settings
|
|
{
|
|
public class SettingsModule : NzbDroneApiModule
|
|
{
|
|
private readonly IConfigService _configService;
|
|
|
|
public SettingsModule(IConfigService configService)
|
|
: base("/settings")
|
|
{
|
|
_configService = configService;
|
|
Get["/"] = x => GetAllSettings();
|
|
Post["/"] = x => SaveSettings();
|
|
}
|
|
|
|
private Response GetAllSettings()
|
|
{
|
|
var collection = Request.Query.Collection;
|
|
|
|
if(collection.HasValue && Boolean.Parse(collection.Value))
|
|
return _configService.All().AsResponse();
|
|
|
|
return _configService.AllWithDefaults().AsResponse();
|
|
}
|
|
|
|
private Response SaveSettings()
|
|
{
|
|
var request = Request.Body.FromJson<Dictionary<string, object>>();
|
|
_configService.SaveValues(request);
|
|
|
|
|
|
return request.AsResponse();
|
|
}
|
|
}
|
|
} |