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