2014-07-31 02:09:23 +00:00
|
|
|
|
using MediaBrowser.Common.Configuration;
|
|
|
|
|
using MediaBrowser.Model.FileOrganization;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Server.Implementations.FileOrganization
|
|
|
|
|
{
|
|
|
|
|
public static class ConfigurationExtension
|
|
|
|
|
{
|
|
|
|
|
public static AutoOrganizeOptions GetAutoOrganizeOptions(this IConfigurationManager manager)
|
|
|
|
|
{
|
|
|
|
|
return manager.GetConfiguration<AutoOrganizeOptions>("autoorganize");
|
|
|
|
|
}
|
2015-09-23 04:12:46 +00:00
|
|
|
|
public static void SaveAutoOrganizeOptions(this IConfigurationManager manager, AutoOrganizeOptions options)
|
|
|
|
|
{
|
|
|
|
|
manager.SaveConfiguration("autoorganize", options);
|
|
|
|
|
}
|
2014-07-31 02:09:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class AutoOrganizeOptionsFactory : IConfigurationFactory
|
|
|
|
|
{
|
|
|
|
|
public IEnumerable<ConfigurationStore> GetConfigurations()
|
|
|
|
|
{
|
|
|
|
|
return new List<ConfigurationStore>
|
|
|
|
|
{
|
|
|
|
|
new ConfigurationStore
|
|
|
|
|
{
|
|
|
|
|
Key = "autoorganize",
|
|
|
|
|
ConfigurationType = typeof (AutoOrganizeOptions)
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|