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

254 lines
8.3 KiB
C#
Raw Normal View History

2016-11-11 04:29:51 +01:00
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
2017-02-20 21:50:58 +01:00
using Emby.Server.Implementations.AppBase;
2014-12-22 02:02:15 +01:00
using MediaBrowser.Common.Configuration;
2014-05-07 20:38:50 +02:00
using MediaBrowser.Common.Events;
2013-03-04 06:43:06 +01:00
using MediaBrowser.Controller;
using MediaBrowser.Controller.Configuration;
2014-10-23 06:26:01 +02:00
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Entities.Audio;
2014-07-11 06:27:46 +02:00
using MediaBrowser.Controller.Entities.Movies;
using MediaBrowser.Controller.Entities.TV;
2013-03-04 06:43:06 +01:00
using MediaBrowser.Model.Configuration;
2014-05-08 22:09:53 +02:00
using MediaBrowser.Model.Events;
2016-11-11 04:29:51 +01:00
using MediaBrowser.Model.IO;
2013-03-04 06:43:06 +01:00
using MediaBrowser.Model.Logging;
using MediaBrowser.Model.Serialization;
using MediaBrowser.Model.Extensions;
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
/// </summary>
public class ServerConfigurationManager : BaseConfigurationManager, IServerConfigurationManager
{
2015-09-14 01:07:54 +02:00
2013-03-04 06:43:06 +01:00
/// <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>
2015-10-07 23:42:29 +02:00
/// <param name="fileSystem">The file system.</param>
2015-09-14 01:07:54 +02:00
public ServerConfigurationManager(IApplicationPaths applicationPaths, ILogManager logManager, IXmlSerializer xmlSerializer, IFileSystem fileSystem)
2015-10-07 23:42:29 +02:00
: base(applicationPaths, logManager, 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
}
2014-05-07 20:38:50 +02:00
public event EventHandler<GenericEventArgs<ServerConfiguration>> ConfigurationUpdating;
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
{
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 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-12-22 02:02:15 +01:00
public override void AddParts(IEnumerable<IConfigurationFactory> factories)
{
base.AddParts(factories);
UpdateTranscodingTempPath();
}
2014-03-25 22:13:55 +01:00
/// <summary>
/// Updates the metadata path.
/// </summary>
private void UpdateMetadataPath()
{
2015-04-24 04:15:29 +02:00
string metadataPath;
if (string.IsNullOrWhiteSpace(Configuration.MetadataPath))
{
metadataPath = GetInternalMetadataPath();
}
else
{
2016-07-04 21:30:12 +02:00
metadataPath = Path.Combine(Configuration.MetadataPath, "metadata");
2015-04-24 04:15:29 +02:00
}
((ServerApplicationPaths)ApplicationPaths).InternalMetadataPath = metadataPath;
2014-03-25 22:13:55 +01:00
}
2015-01-21 04:54:45 +01:00
private string GetInternalMetadataPath()
{
2016-01-26 19:19:05 +01:00
return Path.Combine(ApplicationPaths.ProgramDataPath, "metadata");
2015-01-21 04:54:45 +01:00
}
2014-12-22 02:02:15 +01:00
/// <summary>
/// Updates the transcoding temporary path.
/// </summary>
private void UpdateTranscodingTempPath()
{
var encodingConfig = this.GetConfiguration<EncodingOptions>("encoding");
((ServerApplicationPaths)ApplicationPaths).TranscodingTempPath = string.IsNullOrEmpty(encodingConfig.TranscodingTempPath) ?
null :
2015-04-24 04:15:29 +02:00
Path.Combine(encodingConfig.TranscodingTempPath, "transcoding-temp");
2014-12-22 02:02:15 +01:00
}
protected override void OnNamedConfigurationUpdated(string key, object configuration)
{
base.OnNamedConfigurationUpdated(key, configuration);
if (string.Equals(key, "encoding", StringComparison.OrdinalIgnoreCase))
{
UpdateTranscodingTempPath();
}
}
2013-04-23 21:17:21 +02: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)
{
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);
ValidateSslCertificate(newConfig);
2013-12-15 02:17:57 +01:00
2014-05-07 20:38:50 +02:00
EventHelper.FireEventIfNotNull(ConfigurationUpdating, this, new GenericEventArgs<ServerConfiguration> { Argument = newConfig }, Logger);
2013-12-15 02:17:57 +01:00
base.ReplaceConfiguration(newConfiguration);
}
/// <summary>
/// Validates the SSL certificate.
/// </summary>
/// <param name="newConfig">The new configuration.</param>
/// <exception cref="System.IO.DirectoryNotFoundException"></exception>
private void ValidateSslCertificate(BaseApplicationConfiguration newConfig)
{
var serverConfig = (ServerConfiguration)newConfig;
2015-12-29 18:15:19 +01:00
var newPath = serverConfig.CertificatePath;
2015-12-29 18:15:19 +01:00
if (!string.IsNullOrWhiteSpace(newPath)
&& !string.Equals(Configuration.CertificatePath ?? string.Empty, newPath))
{
// Validate
2015-12-29 18:15:19 +01:00
if (!FileSystem.FileExists(newPath))
{
2015-12-29 18:15:19 +01:00
throw new FileNotFoundException(string.Format("Certificate file '{0}' does not exist.", newPath));
}
}
}
2014-03-25 22:13:55 +01:00
/// <summary>
/// Validates the metadata path.
/// </summary>
/// <param name="newConfig">The new configuration.</param>
/// <exception cref="System.IO.DirectoryNotFoundException"></exception>
private void ValidateMetadataPath(ServerConfiguration newConfig)
{
var newPath = newConfig.MetadataPath;
if (!string.IsNullOrWhiteSpace(newPath)
&& !string.Equals(Configuration.MetadataPath ?? string.Empty, newPath))
{
// Validate
2015-10-07 23:42:29 +02:00
if (!FileSystem.DirectoryExists(newPath))
2014-03-25 22:13:55 +01:00
{
2017-02-20 21:50:58 +01:00
throw new FileNotFoundException(string.Format("{0} does not exist.", newPath));
2014-03-25 22:13:55 +01:00
}
EnsureWriteAccess(newPath);
2014-03-25 22:13:55 +01:00
}
}
2014-07-11 06:27:46 +02:00
2017-11-01 20:50:16 +01:00
public bool SetOptimalValues()
2014-07-11 06:27:46 +02:00
{
2017-11-01 20:50:16 +01:00
var config = Configuration;
2014-07-11 06:27:46 +02:00
2017-11-01 20:50:16 +01:00
var changed = false;
2014-07-11 06:27:46 +02:00
2017-11-01 20:50:16 +01:00
if (!config.EnableCaseSensitiveItemIds)
2014-07-11 06:27:46 +02:00
{
2017-11-01 20:50:16 +01:00
config.EnableCaseSensitiveItemIds = true;
changed = true;
}
2014-07-11 06:27:46 +02:00
2017-11-01 20:50:16 +01:00
if (!config.SkipDeserializationForBasicTypes)
{
config.SkipDeserializationForBasicTypes = true;
changed = true;
2014-07-11 06:27:46 +02:00
}
2017-11-01 20:50:16 +01:00
if (!config.EnableSimpleArtistDetection)
{
config.EnableSimpleArtistDetection = true;
changed = true;
}
2014-07-11 06:27:46 +02:00
2017-11-01 20:50:16 +01:00
if (!config.EnableNormalizedItemByNameIds)
2014-07-11 06:27:46 +02:00
{
2017-11-01 20:50:16 +01:00
config.EnableNormalizedItemByNameIds = true;
changed = true;
}
2014-07-11 06:27:46 +02:00
2017-11-01 20:50:16 +01:00
if (!config.DisableLiveTvChannelUserDataName)
{
config.DisableLiveTvChannelUserDataName = true;
changed = true;
}
2014-07-11 06:27:46 +02:00
2017-11-01 20:50:16 +01:00
if (!config.EnableNewOmdbSupport)
{
config.EnableNewOmdbSupport = true;
changed = true;
}
2014-07-11 06:27:46 +02:00
2018-09-12 19:26:21 +02:00
if (!config.CameraUploadUpgraded)
{
config.CameraUploadUpgraded = true;
changed = true;
}
if (!config.CollectionsUpgraded)
{
config.CollectionsUpgraded = true;
changed = true;
}
2017-11-01 20:50:16 +01:00
return changed;
2014-07-11 06:27:46 +02:00
}
2013-03-04 06:43:06 +01:00
}
}