Merge pull request #5964 from sbwalker/dev
enable scheduled job automatically if SMTP is enabled in Site Settings
This commit is contained in:
@@ -248,8 +248,7 @@
|
|||||||
job.NextExecution = null;
|
job.NextExecution = null;
|
||||||
job = await JobService.UpdateJobAsync(job);
|
job = await JobService.UpdateJobAsync(job);
|
||||||
await logger.LogInformation("Job Updated {Job}", job);
|
await logger.LogInformation("Job Updated {Job}", job);
|
||||||
await LoadJob();
|
NavigationManager.NavigateTo(NavigateUrl());
|
||||||
StateHasChanged();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -14,6 +14,7 @@
|
|||||||
@inject IServiceProvider ServiceProvider
|
@inject IServiceProvider ServiceProvider
|
||||||
@inject IStringLocalizer<Index> Localizer
|
@inject IStringLocalizer<Index> Localizer
|
||||||
@inject INotificationService NotificationService
|
@inject INotificationService NotificationService
|
||||||
|
@inject IJobService JobService
|
||||||
@inject IStringLocalizer<SharedResources> SharedLocalizer
|
@inject IStringLocalizer<SharedResources> SharedLocalizer
|
||||||
@inject IOutputCacheService CacheService
|
@inject IOutputCacheService CacheService
|
||||||
|
|
||||||
@@ -207,13 +208,6 @@
|
|||||||
</div>
|
</div>
|
||||||
@if (_smtpenabled == "True" && UserSecurity.IsAuthorized(PageState.User, RoleNames.Host))
|
@if (_smtpenabled == "True" && UserSecurity.IsAuthorized(PageState.User, RoleNames.Host))
|
||||||
{
|
{
|
||||||
<div class="row mb-1 align-items-center">
|
|
||||||
<div class="col-sm-3">
|
|
||||||
</div>
|
|
||||||
<div class="col-sm-9">
|
|
||||||
<strong>@Localizer["Smtp.Required.EnableNotificationJob"]</strong><br />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="row mb-1 align-items-center">
|
<div class="row mb-1 align-items-center">
|
||||||
<Label Class="col-sm-3" For="host" HelpText="Enter the host name of the SMTP server" ResourceKey="Host">Host: </Label>
|
<Label Class="col-sm-3" For="host" HelpText="Enter the host name of the SMTP server" ResourceKey="Host">Host: </Label>
|
||||||
<div class="col-sm-9">
|
<div class="col-sm-9">
|
||||||
@@ -848,6 +842,17 @@
|
|||||||
settings = SettingService.SetSetting(settings, "SMTPSender", _smtpsender, true);
|
settings = SettingService.SetSetting(settings, "SMTPSender", _smtpsender, true);
|
||||||
settings = SettingService.SetSetting(settings, "SMTPRelay", _smtprelay, true);
|
settings = SettingService.SetSetting(settings, "SMTPRelay", _smtprelay, true);
|
||||||
settings = SettingService.SetSetting(settings, "NotificationRetention", _retention.ToString(), true);
|
settings = SettingService.SetSetting(settings, "NotificationRetention", _retention.ToString(), true);
|
||||||
|
|
||||||
|
if (_smtpenabled == "True")
|
||||||
|
{
|
||||||
|
var jobs = await JobService.GetJobsAsync();
|
||||||
|
var job = jobs.FirstOrDefault(item => item.JobType == "Oqtane.Infrastructure.NotificationJob, Oqtane.Server");
|
||||||
|
if (job != null && !job.IsEnabled)
|
||||||
|
{
|
||||||
|
job.IsEnabled = true;
|
||||||
|
await JobService.UpdateJobAsync(job);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//cookie consent
|
//cookie consent
|
||||||
@@ -957,7 +962,10 @@
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
_smtpenabled = "True";
|
||||||
|
|
||||||
var settings = await SettingService.GetSiteSettingsAsync(PageState.Site.SiteId);
|
var settings = await SettingService.GetSiteSettingsAsync(PageState.Site.SiteId);
|
||||||
|
settings = SettingService.SetSetting(settings, "SMTPEnabled", _smtpenabled, true);
|
||||||
settings = SettingService.SetSetting(settings, "SMTPHost", _smtphost, true);
|
settings = SettingService.SetSetting(settings, "SMTPHost", _smtphost, true);
|
||||||
settings = SettingService.SetSetting(settings, "SMTPPort", _smtpport, true);
|
settings = SettingService.SetSetting(settings, "SMTPPort", _smtpport, true);
|
||||||
settings = SettingService.SetSetting(settings, "SMTPSSL", _smtpssl, true);
|
settings = SettingService.SetSetting(settings, "SMTPSSL", _smtpssl, true);
|
||||||
@@ -972,6 +980,14 @@
|
|||||||
await SettingService.UpdateSiteSettingsAsync(settings, PageState.Site.SiteId);
|
await SettingService.UpdateSiteSettingsAsync(settings, PageState.Site.SiteId);
|
||||||
await logger.LogInformation("Site SMTP Settings Saved");
|
await logger.LogInformation("Site SMTP Settings Saved");
|
||||||
|
|
||||||
|
var jobs = await JobService.GetJobsAsync();
|
||||||
|
var job = jobs.FirstOrDefault(item => item.JobType == "Oqtane.Infrastructure.NotificationJob, Oqtane.Server");
|
||||||
|
if (job != null && !job.IsEnabled)
|
||||||
|
{
|
||||||
|
job.IsEnabled = true;
|
||||||
|
await JobService.UpdateJobAsync(job);
|
||||||
|
}
|
||||||
|
|
||||||
await NotificationService.AddNotificationAsync(new Notification(PageState.Site.SiteId, PageState.User, PageState.Site.Name + " SMTP Configuration Test", "SMTP Server Is Configured Correctly."));
|
await NotificationService.AddNotificationAsync(new Notification(PageState.Site.SiteId, PageState.User, PageState.Site.Name + " SMTP Configuration Test", "SMTP Server Is Configured Correctly."));
|
||||||
AddModuleMessage(Localizer["Info.Smtp.SaveSettings"], MessageType.Info);
|
AddModuleMessage(Localizer["Info.Smtp.SaveSettings"], MessageType.Info);
|
||||||
await ScrollToPageTop();
|
await ScrollToPageTop();
|
||||||
|
|||||||
@@ -132,9 +132,6 @@
|
|||||||
<data name="DefaultAdminContainer" xml:space="preserve">
|
<data name="DefaultAdminContainer" xml:space="preserve">
|
||||||
<value>Default Admin Container</value>
|
<value>Default Admin Container</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Smtp.Required.EnableNotificationJob" xml:space="preserve">
|
|
||||||
<value>** Please Note That SMTP Requires The Notification Job To Be Enabled In Scheduled Jobs</value>
|
|
||||||
</data>
|
|
||||||
<data name="Smtp.TestConfig" xml:space="preserve">
|
<data name="Smtp.TestConfig" xml:space="preserve">
|
||||||
<value>Test SMTP Configuration</value>
|
<value>Test SMTP Configuration</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
Reference in New Issue
Block a user