2013-10-16 23:35:11 +00:00
|
|
|
|
using MediaBrowser.Common.Configuration;
|
2013-03-04 05:43:06 +00:00
|
|
|
|
using MediaBrowser.Common.Implementations.Configuration;
|
|
|
|
|
using MediaBrowser.Controller;
|
|
|
|
|
using MediaBrowser.Controller.Configuration;
|
|
|
|
|
using MediaBrowser.Model.Configuration;
|
|
|
|
|
using MediaBrowser.Model.Logging;
|
|
|
|
|
using MediaBrowser.Model.Serialization;
|
|
|
|
|
using System;
|
2013-10-16 23:35:11 +00:00
|
|
|
|
using System.IO;
|
2013-03-04 05:43:06 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Server.Implementations.Configuration
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class ServerConfigurationManager
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class ServerConfigurationManager : BaseConfigurationManager, IServerConfigurationManager
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Initializes a new instance of the <see cref="ServerConfigurationManager" /> class.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="applicationPaths">The application paths.</param>
|
|
|
|
|
/// <param name="logManager">The log manager.</param>
|
|
|
|
|
/// <param name="xmlSerializer">The XML serializer.</param>
|
|
|
|
|
public ServerConfigurationManager(IApplicationPaths applicationPaths, ILogManager logManager, IXmlSerializer xmlSerializer)
|
|
|
|
|
: base(applicationPaths, logManager, xmlSerializer)
|
|
|
|
|
{
|
2013-04-23 19:17:21 +00:00
|
|
|
|
UpdateItemsByNamePath();
|
2013-03-04 05:43:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the type of the configuration.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The type of the configuration.</value>
|
|
|
|
|
protected override Type ConfigurationType
|
|
|
|
|
{
|
|
|
|
|
get { return typeof(ServerConfiguration); }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the application paths.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The application paths.</value>
|
|
|
|
|
public IServerApplicationPaths ApplicationPaths
|
|
|
|
|
{
|
|
|
|
|
get { return (IServerApplicationPaths)CommonApplicationPaths; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the configuration.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The configuration.</value>
|
|
|
|
|
public ServerConfiguration Configuration
|
|
|
|
|
{
|
|
|
|
|
get { return (ServerConfiguration)CommonConfiguration; }
|
|
|
|
|
}
|
2013-04-23 19:17:21 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Called when [configuration updated].
|
|
|
|
|
/// </summary>
|
|
|
|
|
protected override void OnConfigurationUpdated()
|
|
|
|
|
{
|
|
|
|
|
UpdateItemsByNamePath();
|
2014-01-11 18:58:50 +00:00
|
|
|
|
UpdateTranscodingTempPath();
|
2013-04-23 19:17:21 +00:00
|
|
|
|
|
|
|
|
|
base.OnConfigurationUpdated();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Updates the items by name path.
|
|
|
|
|
/// </summary>
|
|
|
|
|
private void UpdateItemsByNamePath()
|
|
|
|
|
{
|
2013-12-15 01:17:57 +00:00
|
|
|
|
((ServerApplicationPaths) ApplicationPaths).ItemsByNamePath = string.IsNullOrEmpty(Configuration.ItemsByNamePath) ?
|
|
|
|
|
null :
|
|
|
|
|
Configuration.ItemsByNamePath;
|
2013-04-23 19:17:21 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-01-11 18:58:50 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Updates the transcoding temporary path.
|
|
|
|
|
/// </summary>
|
|
|
|
|
private void UpdateTranscodingTempPath()
|
|
|
|
|
{
|
|
|
|
|
((ServerApplicationPaths)ApplicationPaths).TranscodingTempPath = string.IsNullOrEmpty(Configuration.TranscodingTempPath) ?
|
|
|
|
|
null :
|
|
|
|
|
Configuration.TranscodingTempPath;
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-23 19:17:21 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Replaces the configuration.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="newConfiguration">The new configuration.</param>
|
|
|
|
|
/// <exception cref="System.IO.DirectoryNotFoundException"></exception>
|
|
|
|
|
public override void ReplaceConfiguration(BaseApplicationConfiguration newConfiguration)
|
|
|
|
|
{
|
|
|
|
|
var newConfig = (ServerConfiguration) newConfiguration;
|
|
|
|
|
|
2013-12-15 01:17:57 +00:00
|
|
|
|
ValidateItemByNamePath(newConfig);
|
2014-01-11 18:58:50 +00:00
|
|
|
|
ValidateTranscodingTempPath(newConfig);
|
2014-02-07 01:31:53 +00:00
|
|
|
|
ValidatePathSubstitutions(newConfig);
|
2013-12-15 01:17:57 +00:00
|
|
|
|
|
|
|
|
|
base.ReplaceConfiguration(newConfiguration);
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-07 01:31:53 +00:00
|
|
|
|
private void ValidatePathSubstitutions(ServerConfiguration newConfig)
|
|
|
|
|
{
|
|
|
|
|
foreach (var map in newConfig.PathSubstitutions)
|
|
|
|
|
{
|
|
|
|
|
if (string.IsNullOrWhiteSpace(map.From) || string.IsNullOrWhiteSpace(map.To))
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentException("Invalid path substitution");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!map.From.EndsWith(":\\") && !map.From.EndsWith(":/"))
|
|
|
|
|
{
|
|
|
|
|
map.From = map.From.TrimEnd('/').TrimEnd('\\');
|
|
|
|
|
}
|
|
|
|
|
if (!map.To.EndsWith(":\\") && !map.To.EndsWith(":/"))
|
|
|
|
|
{
|
|
|
|
|
map.To = map.To.TrimEnd('/').TrimEnd('\\');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (string.IsNullOrWhiteSpace(map.From) || string.IsNullOrWhiteSpace(map.To))
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentException("Invalid path substitution");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-15 01:17:57 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Replaces the item by name path.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="newConfig">The new configuration.</param>
|
|
|
|
|
/// <exception cref="System.IO.DirectoryNotFoundException"></exception>
|
|
|
|
|
private void ValidateItemByNamePath(ServerConfiguration newConfig)
|
|
|
|
|
{
|
|
|
|
|
var newPath = newConfig.ItemsByNamePath;
|
2013-04-29 18:00:21 +00:00
|
|
|
|
|
2013-12-15 01:17:57 +00:00
|
|
|
|
if (!string.IsNullOrWhiteSpace(newPath)
|
|
|
|
|
&& !string.Equals(Configuration.ItemsByNamePath ?? string.Empty, newPath))
|
2013-04-23 19:17:21 +00:00
|
|
|
|
{
|
|
|
|
|
// Validate
|
2013-12-15 01:17:57 +00:00
|
|
|
|
if (!Directory.Exists(newPath))
|
2013-04-23 19:17:21 +00:00
|
|
|
|
{
|
2013-12-15 01:17:57 +00:00
|
|
|
|
throw new DirectoryNotFoundException(string.Format("{0} does not exist.", newPath));
|
2013-04-23 19:17:21 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-01-11 18:58:50 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Validates the transcoding temporary path.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="newConfig">The new configuration.</param>
|
|
|
|
|
/// <exception cref="DirectoryNotFoundException"></exception>
|
|
|
|
|
private void ValidateTranscodingTempPath(ServerConfiguration newConfig)
|
|
|
|
|
{
|
|
|
|
|
var newPath = newConfig.TranscodingTempPath;
|
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(newPath)
|
|
|
|
|
&& !string.Equals(Configuration.TranscodingTempPath ?? string.Empty, newPath))
|
|
|
|
|
{
|
|
|
|
|
// Validate
|
|
|
|
|
if (!Directory.Exists(newPath))
|
|
|
|
|
{
|
|
|
|
|
throw new DirectoryNotFoundException(string.Format("{0} does not exist.", newPath));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-03-04 05:43:06 +00:00
|
|
|
|
}
|
|
|
|
|
}
|