mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 09:26:54 -06:00
2211ffa851
There are a couple of reasons for this. The first one is practical, and related to eager loading. Since /lib is not eager loaded, when the application boots, ProblemCheck["identifier"] will be nil because the child classes aren't loaded. The second one is more conceptual. There turns out to be a lot of inter-dependencies between the part of the problem check system that live in /app and the parts that live in /lib, which probably suggests it should all go in /app.
75 lines
2.0 KiB
Ruby
75 lines
2.0 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
##
|
|
# If group SMTP or IMAP has been configured, we want to make sure the
|
|
# credentials are always valid otherwise emails will not be sending out
|
|
# from group inboxes. This check is run as part of scheduled admin
|
|
# problem checks, and if any credentials have issues they will show up on
|
|
# the admin dashboard as a high priority issue.
|
|
class ProblemCheck::GroupEmailCredentials < ProblemCheck
|
|
self.perform_every = 30.minutes
|
|
|
|
def call
|
|
[*smtp_errors, *imap_errors]
|
|
end
|
|
|
|
private
|
|
|
|
def smtp_errors
|
|
return [] if !SiteSetting.enable_smtp
|
|
|
|
Group.with_smtp_configured.find_each.filter_map do |group|
|
|
try_validate(group) do
|
|
EmailSettingsValidator.validate_smtp(
|
|
host: group.smtp_server,
|
|
port: group.smtp_port,
|
|
username: group.email_username,
|
|
password: group.email_password,
|
|
)
|
|
end
|
|
end
|
|
end
|
|
|
|
def imap_errors
|
|
return [] if !SiteSetting.enable_imap
|
|
|
|
Group.with_imap_configured.find_each.filter_map do |group|
|
|
try_validate(group) do
|
|
EmailSettingsValidator.validate_imap(
|
|
host: group.imap_server,
|
|
port: group.imap_port,
|
|
username: group.email_username,
|
|
password: group.email_password,
|
|
)
|
|
end
|
|
end
|
|
end
|
|
|
|
def try_validate(group, &blk)
|
|
begin
|
|
blk.call
|
|
nil
|
|
rescue *EmailSettingsExceptionHandler::EXPECTED_EXCEPTIONS => err
|
|
message =
|
|
I18n.t(
|
|
"dashboard.group_email_credentials_warning",
|
|
{
|
|
base_path: Discourse.base_path,
|
|
group_name: group.name,
|
|
group_full_name: group.full_name,
|
|
error: EmailSettingsExceptionHandler.friendly_exception_message(err, group.smtp_server),
|
|
},
|
|
)
|
|
|
|
Problem.new(message, priority: "high", identifier: "group_#{group.id}_email_credentials")
|
|
rescue => err
|
|
Discourse.warn_exception(
|
|
err,
|
|
message:
|
|
"Unexpected error when checking SMTP credentials for group #{group.id} (#{group.name}).",
|
|
)
|
|
nil
|
|
end
|
|
end
|
|
end
|