parent
e66ba84fc0
commit
7be5732a3a
|
@ -0,0 +1,142 @@
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using FluentAssertions;
|
||||||
|
using NUnit.Framework;
|
||||||
|
using NzbDrone.Common.Serializer;
|
||||||
|
using NzbDrone.Core.Datastore.Migration;
|
||||||
|
using NzbDrone.Core.Notifications.Email;
|
||||||
|
using NzbDrone.Core.Test.Framework;
|
||||||
|
|
||||||
|
namespace NzbDrone.Core.Test.Datastore.Migration
|
||||||
|
{
|
||||||
|
[TestFixture]
|
||||||
|
public class email_encryptionFixture : MigrationTest<email_encryption>
|
||||||
|
{
|
||||||
|
[Test]
|
||||||
|
public void should_convert_do_not_require_encryption_to_auto()
|
||||||
|
{
|
||||||
|
var db = WithMigrationTestDb(c =>
|
||||||
|
{
|
||||||
|
c.Insert.IntoTable("Notifications").Row(new
|
||||||
|
{
|
||||||
|
OnGrab = true,
|
||||||
|
OnDownload = true,
|
||||||
|
OnUpgrade = true,
|
||||||
|
OnHealthIssue = true,
|
||||||
|
IncludeHealthWarnings = true,
|
||||||
|
OnRename = true,
|
||||||
|
Name = "Mail Sonarr",
|
||||||
|
Implementation = "Email",
|
||||||
|
Tags = "[]",
|
||||||
|
Settings = new EmailSettings200
|
||||||
|
{
|
||||||
|
Server = "smtp.gmail.com",
|
||||||
|
Port = 563,
|
||||||
|
To = new List<string> { "dont@email.me" },
|
||||||
|
RequireEncryption = false
|
||||||
|
}.ToJson(),
|
||||||
|
ConfigContract = "EmailSettings"
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
var items = db.Query<NotificationDefinition201>("SELECT * FROM \"Notifications\"");
|
||||||
|
|
||||||
|
items.Should().HaveCount(1);
|
||||||
|
items.First().Implementation.Should().Be("Email");
|
||||||
|
items.First().ConfigContract.Should().Be("EmailSettings");
|
||||||
|
items.First().Settings.UseEncryption.Should().Be((int)EmailEncryptionType.Preferred);
|
||||||
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void should_convert_require_encryption_to_always()
|
||||||
|
{
|
||||||
|
var db = WithMigrationTestDb(c =>
|
||||||
|
{
|
||||||
|
c.Insert.IntoTable("Notifications").Row(new
|
||||||
|
{
|
||||||
|
OnGrab = true,
|
||||||
|
OnDownload = true,
|
||||||
|
OnUpgrade = true,
|
||||||
|
OnHealthIssue = true,
|
||||||
|
IncludeHealthWarnings = true,
|
||||||
|
OnRename = true,
|
||||||
|
Name = "Mail Sonarr",
|
||||||
|
Implementation = "Email",
|
||||||
|
Tags = "[]",
|
||||||
|
Settings = new EmailSettings200
|
||||||
|
{
|
||||||
|
Server = "smtp.gmail.com",
|
||||||
|
Port = 563,
|
||||||
|
To = new List<string> { "dont@email.me" },
|
||||||
|
RequireEncryption = true
|
||||||
|
}.ToJson(),
|
||||||
|
ConfigContract = "EmailSettings"
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
var items = db.Query<NotificationDefinition201>("SELECT * FROM \"Notifications\"");
|
||||||
|
|
||||||
|
items.Should().HaveCount(1);
|
||||||
|
items.First().Implementation.Should().Be("Email");
|
||||||
|
items.First().ConfigContract.Should().Be("EmailSettings");
|
||||||
|
items.First().Settings.UseEncryption.Should().Be((int)EmailEncryptionType.Always);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public class NotificationDefinition201
|
||||||
|
{
|
||||||
|
public int Id { get; set; }
|
||||||
|
public string Implementation { get; set; }
|
||||||
|
public string ConfigContract { get; set; }
|
||||||
|
public EmailSettings201 Settings { get; set; }
|
||||||
|
public string Name { get; set; }
|
||||||
|
public bool OnGrab { get; set; }
|
||||||
|
public bool OnDownload { get; set; }
|
||||||
|
public bool OnUpgrade { get; set; }
|
||||||
|
public bool OnRename { get; set; }
|
||||||
|
public bool OnSeriesDelete { get; set; }
|
||||||
|
public bool OnEpisodeFileDelete { get; set; }
|
||||||
|
public bool OnEpisodeFileDeleteForUpgrade { get; set; }
|
||||||
|
public bool OnHealthIssue { get; set; }
|
||||||
|
public bool OnApplicationUpdate { get; set; }
|
||||||
|
public bool OnManualInteractionRequired { get; set; }
|
||||||
|
public bool OnSeriesAdd { get; set; }
|
||||||
|
public bool OnHealthRestored { get; set; }
|
||||||
|
public bool SupportsOnGrab { get; set; }
|
||||||
|
public bool SupportsOnDownload { get; set; }
|
||||||
|
public bool SupportsOnUpgrade { get; set; }
|
||||||
|
public bool SupportsOnRename { get; set; }
|
||||||
|
public bool SupportsOnSeriesDelete { get; set; }
|
||||||
|
public bool SupportsOnEpisodeFileDelete { get; set; }
|
||||||
|
public bool SupportsOnEpisodeFileDeleteForUpgrade { get; set; }
|
||||||
|
public bool SupportsOnHealthIssue { get; set; }
|
||||||
|
public bool IncludeHealthWarnings { get; set; }
|
||||||
|
public List<int> Tags { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
|
public class EmailSettings200
|
||||||
|
{
|
||||||
|
public string Server { get; set; }
|
||||||
|
public int Port { get; set; }
|
||||||
|
public bool RequireEncryption { get; set; }
|
||||||
|
public string Username { get; set; }
|
||||||
|
public string Password { get; set; }
|
||||||
|
public string From { get; set; }
|
||||||
|
public IEnumerable<string> To { get; set; }
|
||||||
|
public IEnumerable<string> Cc { get; set; }
|
||||||
|
public IEnumerable<string> Bcc { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
|
public class EmailSettings201
|
||||||
|
{
|
||||||
|
public string Server { get; set; }
|
||||||
|
public int Port { get; set; }
|
||||||
|
public int UseEncryption { get; set; }
|
||||||
|
public string Username { get; set; }
|
||||||
|
public string Password { get; set; }
|
||||||
|
public string From { get; set; }
|
||||||
|
public IEnumerable<string> To { get; set; }
|
||||||
|
public IEnumerable<string> Cc { get; set; }
|
||||||
|
public IEnumerable<string> Bcc { get; set; }
|
||||||
|
}
|
||||||
|
}
|
|
@ -25,7 +25,7 @@ namespace NzbDrone.Core.Test.NotificationTests.EmailTests
|
||||||
_emailSettings = Builder<EmailSettings>.CreateNew()
|
_emailSettings = Builder<EmailSettings>.CreateNew()
|
||||||
.With(s => s.Server = "someserver")
|
.With(s => s.Server = "someserver")
|
||||||
.With(s => s.Port = 567)
|
.With(s => s.Port = 567)
|
||||||
.With(s => s.RequireEncryption = true)
|
.With(s => s.UseEncryption = (int)EmailEncryptionType.Always)
|
||||||
.With(s => s.From = "dont@email.me")
|
.With(s => s.From = "dont@email.me")
|
||||||
.With(s => s.To = new string[] { "dont@email.me" })
|
.With(s => s.To = new string[] { "dont@email.me" })
|
||||||
.Build();
|
.Build();
|
||||||
|
|
|
@ -0,0 +1,50 @@
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Data;
|
||||||
|
using Dapper;
|
||||||
|
using FluentMigrator;
|
||||||
|
using Newtonsoft.Json.Linq;
|
||||||
|
using NzbDrone.Common.Serializer;
|
||||||
|
using NzbDrone.Core.Datastore.Migration.Framework;
|
||||||
|
|
||||||
|
namespace NzbDrone.Core.Datastore.Migration
|
||||||
|
{
|
||||||
|
[Migration(201)]
|
||||||
|
public class email_encryption : NzbDroneMigrationBase
|
||||||
|
{
|
||||||
|
protected override void MainDbUpgrade()
|
||||||
|
{
|
||||||
|
Execute.WithConnection(ChangeEncryption);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void ChangeEncryption(IDbConnection conn, IDbTransaction tran)
|
||||||
|
{
|
||||||
|
var updated = new List<object>();
|
||||||
|
using (var getEmailCmd = conn.CreateCommand())
|
||||||
|
{
|
||||||
|
getEmailCmd.Transaction = tran;
|
||||||
|
getEmailCmd.CommandText = "SELECT \"Id\", \"Settings\" FROM \"Notifications\" WHERE \"Implementation\" = 'Email'";
|
||||||
|
|
||||||
|
using (var reader = getEmailCmd.ExecuteReader())
|
||||||
|
{
|
||||||
|
while (reader.Read())
|
||||||
|
{
|
||||||
|
var id = reader.GetInt32(0);
|
||||||
|
var settings = Json.Deserialize<JObject>(reader.GetString(1));
|
||||||
|
|
||||||
|
settings["useEncryption"] = settings["requireEncryption"].ToObject<bool>() ? 1 : 0;
|
||||||
|
settings["requireEncryption"] = null;
|
||||||
|
|
||||||
|
updated.Add(new
|
||||||
|
{
|
||||||
|
Settings = settings.ToJson(),
|
||||||
|
Id = id
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var updateSql = $"UPDATE \"Notifications\" SET \"Settings\" = @Settings WHERE \"Id\" = @Id";
|
||||||
|
conn.Execute(updateSql, updated, transaction: tran);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -1258,10 +1258,10 @@
|
||||||
"NotificationsEmailSettingsName": "Email",
|
"NotificationsEmailSettingsName": "Email",
|
||||||
"NotificationsEmailSettingsRecipientAddress": "Recipient Address(es)",
|
"NotificationsEmailSettingsRecipientAddress": "Recipient Address(es)",
|
||||||
"NotificationsEmailSettingsRecipientAddressHelpText": "Comma separated list of email recipients",
|
"NotificationsEmailSettingsRecipientAddressHelpText": "Comma separated list of email recipients",
|
||||||
"NotificationsEmailSettingsRequireEncryption": "Require Encryption",
|
|
||||||
"NotificationsEmailSettingsRequireEncryptionHelpText": "Require SSL (Port 465 only) or StartTLS (any other port)",
|
|
||||||
"NotificationsEmailSettingsServer": "Server",
|
"NotificationsEmailSettingsServer": "Server",
|
||||||
"NotificationsEmailSettingsServerHelpText": "Hostname or IP of Email server",
|
"NotificationsEmailSettingsServerHelpText": "Hostname or IP of Email server",
|
||||||
|
"NotificationsEmailSettingsUseEncryption": "Use Encryption",
|
||||||
|
"NotificationsEmailSettingsUseEncryptionHelpText": "Whether to prefer using encryption if configured on the server, to always use encryption via SSL (Port 465 only) or StartTLS (any other port) or to never use encryption",
|
||||||
"NotificationsEmbySettingsSendNotifications": "Send Notifications",
|
"NotificationsEmbySettingsSendNotifications": "Send Notifications",
|
||||||
"NotificationsEmbySettingsSendNotificationsHelpText": "Have MediaBrowser send notifications to configured providers",
|
"NotificationsEmbySettingsSendNotificationsHelpText": "Have MediaBrowser send notifications to configured providers",
|
||||||
"NotificationsEmbySettingsUpdateLibraryHelpText": "Update Library on Import, Rename, or Delete?",
|
"NotificationsEmbySettingsUpdateLibraryHelpText": "Update Library on Import, Rename, or Delete?",
|
||||||
|
|
|
@ -134,19 +134,16 @@ namespace NzbDrone.Core.Notifications.Email
|
||||||
using var client = new SmtpClient();
|
using var client = new SmtpClient();
|
||||||
client.Timeout = 10000;
|
client.Timeout = 10000;
|
||||||
|
|
||||||
var serverOption = SecureSocketOptions.Auto;
|
var useEncyption = (EmailEncryptionType)settings.UseEncryption;
|
||||||
|
|
||||||
if (settings.RequireEncryption)
|
var serverOption = useEncyption switch
|
||||||
{
|
{
|
||||||
if (settings.Port == 465)
|
EmailEncryptionType.Always => settings.Port == 465
|
||||||
{
|
? SecureSocketOptions.SslOnConnect
|
||||||
serverOption = SecureSocketOptions.SslOnConnect;
|
: SecureSocketOptions.StartTls,
|
||||||
}
|
EmailEncryptionType.Never => SecureSocketOptions.None,
|
||||||
else
|
_ => SecureSocketOptions.Auto
|
||||||
{
|
};
|
||||||
serverOption = SecureSocketOptions.StartTls;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
client.ServerCertificateValidationCallback = _certificateValidationService.ShouldByPassValidationError;
|
client.ServerCertificateValidationCallback = _certificateValidationService.ShouldByPassValidationError;
|
||||||
|
|
||||||
|
|
|
@ -45,8 +45,8 @@ namespace NzbDrone.Core.Notifications.Email
|
||||||
[FieldDefinition(1, Label = "Port")]
|
[FieldDefinition(1, Label = "Port")]
|
||||||
public int Port { get; set; }
|
public int Port { get; set; }
|
||||||
|
|
||||||
[FieldDefinition(2, Label = "NotificationsEmailSettingsRequireEncryption", HelpText = "NotificationsEmailSettingsRequireEncryptionHelpText", Type = FieldType.Checkbox)]
|
[FieldDefinition(2, Label = "NotificationsEmailSettingsUseEncryption", HelpText = "NotificationsEmailSettingsUseEncryptionHelpText", Type = FieldType.Select, SelectOptions = typeof(EmailEncryptionType))]
|
||||||
public bool RequireEncryption { get; set; }
|
public int UseEncryption { get; set; }
|
||||||
|
|
||||||
[FieldDefinition(3, Label = "Username", Privacy = PrivacyLevel.UserName)]
|
[FieldDefinition(3, Label = "Username", Privacy = PrivacyLevel.UserName)]
|
||||||
public string Username { get; set; }
|
public string Username { get; set; }
|
||||||
|
@ -71,4 +71,11 @@ namespace NzbDrone.Core.Notifications.Email
|
||||||
return new NzbDroneValidationResult(Validator.Validate(this));
|
return new NzbDroneValidationResult(Validator.Validate(this));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public enum EmailEncryptionType
|
||||||
|
{
|
||||||
|
Preferred = 0,
|
||||||
|
Always = 1,
|
||||||
|
Never = 2
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue