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