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.4 KiB
49 lines
1.4 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Globalization;
|
|
using System.IO;
|
|
using MediaBrowser.Common.Configuration;
|
|
using MediaBrowser.Model.Configuration;
|
|
|
|
namespace MediaBrowser.MediaEncoding.Configuration
|
|
{
|
|
public class EncodingConfigurationFactory : IConfigurationFactory
|
|
{
|
|
public IEnumerable<ConfigurationStore> GetConfigurations()
|
|
{
|
|
return new[]
|
|
{
|
|
new EncodingConfigurationStore()
|
|
};
|
|
}
|
|
}
|
|
|
|
public class EncodingConfigurationStore : ConfigurationStore, IValidatingConfiguration
|
|
{
|
|
public EncodingConfigurationStore()
|
|
{
|
|
ConfigurationType = typeof(EncodingOptions);
|
|
Key = "encoding";
|
|
}
|
|
|
|
public void Validate(object oldConfig, object newConfig)
|
|
{
|
|
var newPath = ((EncodingOptions)newConfig).TranscodingTempPath;
|
|
|
|
if (!string.IsNullOrWhiteSpace(newPath)
|
|
&& !string.Equals(((EncodingOptions)oldConfig).TranscodingTempPath, newPath, StringComparison.Ordinal))
|
|
{
|
|
// Validate
|
|
if (!Directory.Exists(newPath))
|
|
{
|
|
throw new DirectoryNotFoundException(
|
|
string.Format(
|
|
CultureInfo.InvariantCulture,
|
|
"{0} does not exist.",
|
|
newPath));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|