jellyfin/Emby.Server.Implementations/Configuration/ServerConfigurationManager.cs

123 lines
4.9 KiB
C#
Raw Normal View History

using System;
2019-11-01 18:38:54 +01:00
using System.Globalization;
2016-11-11 04:29:51 +01:00
using System.IO;
2017-02-20 21:50:58 +01:00
using Emby.Server.Implementations.AppBase;
using Jellyfin.Data.Events;
2014-12-22 02:02:15 +01:00
using MediaBrowser.Common.Configuration;
2013-03-04 06:43:06 +01:00
using MediaBrowser.Controller;
using MediaBrowser.Controller.Configuration;
using MediaBrowser.Model.Configuration;
2016-11-11 04:29:51 +01:00
using MediaBrowser.Model.IO;
2013-03-04 06:43:06 +01:00
using MediaBrowser.Model.Serialization;
using Microsoft.Extensions.Logging;
2013-03-04 06:43:06 +01:00
2017-02-20 21:50:58 +01:00
namespace Emby.Server.Implementations.Configuration
2013-03-04 06:43:06 +01:00
{
/// <summary>
/// Class ServerConfigurationManager.
2013-03-04 06:43:06 +01:00
/// </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="loggerFactory">The paramref name="loggerFactory" factory.</param>
2013-03-04 06:43:06 +01:00
/// <param name="xmlSerializer">The XML serializer.</param>
2015-10-07 23:42:29 +02:00
/// <param name="fileSystem">The file system.</param>
public ServerConfigurationManager(IApplicationPaths applicationPaths, ILoggerFactory loggerFactory, IXmlSerializer xmlSerializer, IFileSystem fileSystem)
: base(applicationPaths, loggerFactory, xmlSerializer, fileSystem)
2013-03-04 06:43:06 +01:00
{
2014-03-25 22:13:55 +01:00
UpdateMetadataPath();
2013-03-04 06:43:06 +01:00
}
2019-11-01 18:38:54 +01:00
/// <summary>
/// Configuration updating event.
/// </summary>
2023-02-14 20:09:07 +01:00
public event EventHandler<GenericEventArgs<ServerConfiguration>>? ConfigurationUpdating;
2014-05-07 20:38:50 +02:00
2013-03-04 06:43:06 +01:00
/// <summary>
/// Gets the type of the configuration.
/// </summary>
/// <value>The type of the configuration.</value>
protected override Type ConfigurationType => typeof(ServerConfiguration);
2013-03-04 06:43:06 +01:00
/// <summary>
/// Gets the application paths.
/// </summary>
/// <value>The application paths.</value>
public IServerApplicationPaths ApplicationPaths => (IServerApplicationPaths)CommonApplicationPaths;
2013-03-04 06:43:06 +01:00
/// <summary>
/// Gets the configuration.
/// </summary>
/// <value>The configuration.</value>
public ServerConfiguration Configuration => (ServerConfiguration)CommonConfiguration;
2013-04-23 21:17:21 +02:00
/// <summary>
/// Called when [configuration updated].
/// </summary>
protected override void OnConfigurationUpdated()
{
2014-04-04 00:50:04 +02:00
UpdateMetadataPath();
2013-04-23 21:17:21 +02:00
base.OnConfigurationUpdated();
}
2014-03-25 22:13:55 +01:00
/// <summary>
/// Updates the metadata path.
/// </summary>
/// <exception cref="UnauthorizedAccessException">If the directory does not exist, and the caller does not have the required permission to create it.</exception>
/// <exception cref="NotSupportedException">If there is a custom path transcoding path specified, but it is invalid.</exception>
/// <exception cref="IOException">If the directory does not exist, and it also could not be created.</exception>
2014-03-25 22:13:55 +01:00
private void UpdateMetadataPath()
{
((ServerApplicationPaths)ApplicationPaths).InternalMetadataPath = string.IsNullOrWhiteSpace(Configuration.MetadataPath)
? ApplicationPaths.DefaultInternalMetadataPath
: Configuration.MetadataPath;
Directory.CreateDirectory(ApplicationPaths.InternalMetadataPath);
2015-01-21 04:54:45 +01:00
}
2013-04-23 21:17:21 +02:00
/// <summary>
/// Replaces the configuration.
/// </summary>
/// <param name="newConfiguration">The new configuration.</param>
/// <exception cref="DirectoryNotFoundException">If the configuration path doesn't exist.</exception>
2013-04-23 21:17:21 +02:00
public override void ReplaceConfiguration(BaseApplicationConfiguration newConfiguration)
{
2014-05-07 20:38:50 +02:00
var newConfig = (ServerConfiguration)newConfiguration;
2013-04-23 21:17:21 +02:00
2014-03-25 22:13:55 +01:00
ValidateMetadataPath(newConfig);
2013-12-15 02:17:57 +01:00
ConfigurationUpdating?.Invoke(this, new GenericEventArgs<ServerConfiguration>(newConfig));
2014-05-07 20:38:50 +02:00
2013-12-15 02:17:57 +01:00
base.ReplaceConfiguration(newConfiguration);
}
2014-03-25 22:13:55 +01:00
/// <summary>
/// Validates the metadata path.
/// </summary>
/// <param name="newConfig">The new configuration.</param>
2019-11-01 18:38:54 +01:00
/// <exception cref="DirectoryNotFoundException">The new config path doesn't exist.</exception>
2014-03-25 22:13:55 +01:00
private void ValidateMetadataPath(ServerConfiguration newConfig)
{
var newPath = newConfig.MetadataPath;
if (!string.IsNullOrWhiteSpace(newPath)
2020-03-24 16:12:06 +01:00
&& !string.Equals(Configuration.MetadataPath, newPath, StringComparison.Ordinal))
2014-03-25 22:13:55 +01:00
{
if (!Directory.Exists(newPath))
2014-03-25 22:13:55 +01:00
{
2019-11-01 18:38:54 +01:00
throw new DirectoryNotFoundException(
string.Format(
CultureInfo.InvariantCulture,
"{0} does not exist.",
newPath));
2014-03-25 22:13:55 +01:00
}
EnsureWriteAccess(newPath);
2014-03-25 22:13:55 +01:00
}
}
2013-03-04 06:43:06 +01:00
}
}