| | 1 | | #pragma warning disable CS1591 |
| | 2 | |
|
| | 3 | | using System; |
| | 4 | | using System.Globalization; |
| | 5 | | using System.IO; |
| | 6 | | using MediaBrowser.Common.Configuration; |
| | 7 | | using MediaBrowser.Model.Configuration; |
| | 8 | |
|
| | 9 | | namespace MediaBrowser.MediaEncoding.Configuration |
| | 10 | | { |
| | 11 | | public class EncodingConfigurationStore : ConfigurationStore, IValidatingConfiguration |
| | 12 | | { |
| 21 | 13 | | public EncodingConfigurationStore() |
| | 14 | | { |
| 21 | 15 | | ConfigurationType = typeof(EncodingOptions); |
| 21 | 16 | | Key = "encoding"; |
| 21 | 17 | | } |
| | 18 | |
|
| | 19 | | public void Validate(object oldConfig, object newConfig) |
| | 20 | | { |
| 0 | 21 | | var newPath = ((EncodingOptions)newConfig).TranscodingTempPath; |
| | 22 | |
|
| 0 | 23 | | if (!string.IsNullOrWhiteSpace(newPath) |
| 0 | 24 | | && !string.Equals(((EncodingOptions)oldConfig).TranscodingTempPath, newPath, StringComparison.Ordinal)) |
| | 25 | | { |
| | 26 | | // Validate |
| 0 | 27 | | if (!Directory.Exists(newPath)) |
| | 28 | | { |
| 0 | 29 | | throw new DirectoryNotFoundException( |
| 0 | 30 | | string.Format( |
| 0 | 31 | | CultureInfo.InvariantCulture, |
| 0 | 32 | | "{0} does not exist.", |
| 0 | 33 | | newPath)); |
| | 34 | | } |
| | 35 | | } |
| 0 | 36 | | } |
| | 37 | | } |
| | 38 | | } |