mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-07 10:14:14 -04:00
Merge pull request #1382 from softworkz/ConfigCheckCertificate
ServerConfigurationManager: Check if a specified SSL certificate can be used when configuration is saved
This commit is contained in:
commit
fc1faa65d4
@ -171,12 +171,49 @@ namespace MediaBrowser.Server.Implementations.Configuration
|
|||||||
ValidateItemByNamePath(newConfig);
|
ValidateItemByNamePath(newConfig);
|
||||||
ValidatePathSubstitutions(newConfig);
|
ValidatePathSubstitutions(newConfig);
|
||||||
ValidateMetadataPath(newConfig);
|
ValidateMetadataPath(newConfig);
|
||||||
|
ValidateSslCertificate(newConfig);
|
||||||
|
|
||||||
EventHelper.FireEventIfNotNull(ConfigurationUpdating, this, new GenericEventArgs<ServerConfiguration> { Argument = newConfig }, Logger);
|
EventHelper.FireEventIfNotNull(ConfigurationUpdating, this, new GenericEventArgs<ServerConfiguration> { Argument = newConfig }, Logger);
|
||||||
|
|
||||||
base.ReplaceConfiguration(newConfiguration);
|
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;
|
||||||
|
|
||||||
|
var certPath = serverConfig.CertificatePath;
|
||||||
|
|
||||||
|
if (!string.IsNullOrWhiteSpace(certPath))
|
||||||
|
{
|
||||||
|
// Validate
|
||||||
|
if (!File.Exists(certPath))
|
||||||
|
{
|
||||||
|
throw new FileNotFoundException(string.Format("Certificate file '{0}' does not exist.", certPath));
|
||||||
|
}
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var cert = new System.Security.Cryptography.X509Certificates.X509Certificate2(certPath);
|
||||||
|
|
||||||
|
if (cert.PrivateKey == null)
|
||||||
|
{
|
||||||
|
throw new ArgumentException("Certificate does not contain a private key!");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
throw new ArgumentException(string.Format("Exception loading certificate: '{0}' - {1}", certPath, ex.Message));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private void ValidatePathSubstitutions(ServerConfiguration newConfig)
|
private void ValidatePathSubstitutions(ServerConfiguration newConfig)
|
||||||
{
|
{
|
||||||
foreach (var map in newConfig.PathSubstitutions)
|
foreach (var map in newConfig.PathSubstitutions)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user