2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-05-23 22:48:32 -04:00
|
|
|
class EmailLog < ActiveRecord::Base
|
2017-05-03 07:36:01 -04:00
|
|
|
CRITICAL_EMAIL_TYPES ||= Set.new %w{
|
|
|
|
account_created
|
|
|
|
admin_login
|
|
|
|
confirm_new_email
|
|
|
|
confirm_old_email
|
2020-06-11 07:53:41 -04:00
|
|
|
confirm_old_email_add
|
2017-05-03 07:36:01 -04:00
|
|
|
forgot_password
|
|
|
|
notify_old_email
|
2020-06-11 07:53:41 -04:00
|
|
|
notify_old_email_add
|
2017-05-03 07:36:01 -04:00
|
|
|
signup
|
|
|
|
signup_after_approval
|
|
|
|
}
|
|
|
|
|
2022-02-20 20:26:39 -05:00
|
|
|
# cf. https://www.iana.org/assignments/smtp-enhanced-status-codes/smtp-enhanced-status-codes.xhtml
|
2022-02-21 17:54:01 -05:00
|
|
|
SMTP_ERROR_CODE_REGEXP = Regexp.new(/\d\.\d\.\d+|\d{3}/).freeze
|
2022-02-20 20:26:39 -05:00
|
|
|
|
2013-05-23 22:48:32 -04:00
|
|
|
belongs_to :user
|
2013-06-13 18:11:10 -04:00
|
|
|
belongs_to :post
|
2021-06-14 21:29:46 -04:00
|
|
|
belongs_to :smtp_group, class_name: 'Group'
|
|
|
|
|
2014-10-03 23:07:20 -04:00
|
|
|
validates :email_type, :to_address, presence: true
|
|
|
|
|
2018-07-27 00:32:07 -04:00
|
|
|
scope :bounced, -> { where(bounced: true) }
|
2014-02-14 13:06:21 -05:00
|
|
|
|
2021-06-10 01:28:50 -04:00
|
|
|
scope :addressed_to_user, ->(user) do
|
|
|
|
where(<<~SQL, user_id: user.id)
|
|
|
|
EXISTS(
|
|
|
|
SELECT 1
|
|
|
|
FROM user_emails
|
|
|
|
WHERE user_emails.user_id = :user_id AND
|
2021-06-27 18:55:13 -04:00
|
|
|
(email_logs.to_address = user_emails.email OR
|
|
|
|
email_logs.cc_addresses ILIKE '%' || user_emails.email || '%')
|
2021-06-10 01:28:50 -04:00
|
|
|
)
|
|
|
|
SQL
|
|
|
|
end
|
|
|
|
|
2022-02-20 20:26:39 -05:00
|
|
|
before_save do
|
|
|
|
if self.bounce_error_code.present?
|
|
|
|
match = SMTP_ERROR_CODE_REGEXP.match(self.bounce_error_code)
|
|
|
|
self.bounce_error_code = match.present? ? match[0] : nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-05-23 22:48:32 -04:00
|
|
|
after_create do
|
2014-02-14 13:06:21 -05:00
|
|
|
# Update last_emailed_at if the user_id is present and email was sent
|
2018-07-27 00:32:07 -04:00
|
|
|
User.where(id: user_id).update_all("last_emailed_at = CURRENT_TIMESTAMP") if user_id.present?
|
2013-05-23 22:48:32 -04:00
|
|
|
end
|
|
|
|
|
2021-06-21 18:32:01 -04:00
|
|
|
def topic
|
|
|
|
@topic ||= self.topic_id.present? ? Topic.find_by(id: self.topic_id) : self.post&.topic
|
|
|
|
end
|
|
|
|
|
2016-04-15 01:59:01 -04:00
|
|
|
def self.unique_email_per_post(post, user)
|
|
|
|
return yield unless post && user
|
|
|
|
|
|
|
|
DistributedMutex.synchronize("email_log_#{post.id}_#{user.id}") do
|
2018-07-27 00:32:07 -04:00
|
|
|
if where(post_id: post.id, user_id: user.id).exists?
|
2016-04-15 01:59:01 -04:00
|
|
|
nil
|
|
|
|
else
|
|
|
|
yield
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-05-03 04:03:43 -04:00
|
|
|
def self.reached_max_emails?(user, email_type = nil)
|
2017-05-03 07:36:01 -04:00
|
|
|
return false if SiteSetting.max_emails_per_day_per_user == 0 || CRITICAL_EMAIL_TYPES.include?(email_type)
|
2016-03-23 00:08:34 -04:00
|
|
|
|
2018-07-27 00:32:07 -04:00
|
|
|
count = where('created_at > ?', 1.day.ago)
|
2017-05-03 04:03:43 -04:00
|
|
|
.where(user_id: user.id)
|
|
|
|
.count
|
2016-03-23 00:08:34 -04:00
|
|
|
|
|
|
|
count >= SiteSetting.max_emails_per_day_per_user
|
|
|
|
end
|
|
|
|
|
2014-11-05 13:11:23 -05:00
|
|
|
def self.count_per_day(start_date, end_date)
|
2018-07-27 00:32:07 -04:00
|
|
|
where("created_at BETWEEN ? AND ?", start_date, end_date)
|
2015-12-10 17:49:16 -05:00
|
|
|
.group("DATE(created_at)")
|
|
|
|
.order("DATE(created_at)")
|
|
|
|
.count
|
2013-05-23 22:48:32 -04:00
|
|
|
end
|
2013-06-13 18:11:10 -04:00
|
|
|
|
|
|
|
def self.for(reply_key)
|
2015-12-10 17:49:16 -05:00
|
|
|
self.find_by(reply_key: reply_key)
|
2013-06-13 18:11:10 -04:00
|
|
|
end
|
|
|
|
|
2013-11-15 10:27:43 -05:00
|
|
|
def self.last_sent_email_address
|
2015-12-10 17:49:16 -05:00
|
|
|
self.where(email_type: "signup")
|
|
|
|
.order(created_at: :desc)
|
2018-07-17 23:25:16 -04:00
|
|
|
.limit(1)
|
|
|
|
.pluck(:to_address)
|
2015-12-10 17:49:16 -05:00
|
|
|
.first
|
2013-11-15 10:27:43 -05:00
|
|
|
end
|
|
|
|
|
2019-01-09 20:56:03 -05:00
|
|
|
def bounce_key
|
|
|
|
super&.delete('-')
|
|
|
|
end
|
|
|
|
|
2021-06-21 18:32:01 -04:00
|
|
|
def cc_users
|
|
|
|
return [] if !self.cc_user_ids
|
|
|
|
@cc_users ||= User.where(id: self.cc_user_ids)
|
|
|
|
end
|
|
|
|
|
|
|
|
def cc_addresses_split
|
|
|
|
@cc_addresses_split ||= self.cc_addresses&.split(";") || []
|
|
|
|
end
|
2021-06-27 20:42:06 -04:00
|
|
|
|
|
|
|
def as_mail_message
|
|
|
|
return if self.raw.blank?
|
|
|
|
@mail_message ||= Mail.new(self.raw)
|
|
|
|
end
|
|
|
|
|
|
|
|
def raw_headers
|
|
|
|
return if self.raw.blank?
|
|
|
|
as_mail_message.header.raw_source
|
|
|
|
end
|
|
|
|
|
|
|
|
def raw_body
|
|
|
|
return if self.raw.blank?
|
|
|
|
as_mail_message.body
|
|
|
|
end
|
2013-05-23 22:48:32 -04:00
|
|
|
end
|
|
|
|
|
2013-05-23 22:35:14 -04:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: email_logs
|
|
|
|
#
|
2022-06-14 20:28:30 -04:00
|
|
|
# id :integer not null, primary key
|
|
|
|
# to_address :string not null
|
|
|
|
# email_type :string not null
|
|
|
|
# user_id :integer
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
# post_id :integer
|
|
|
|
# bounce_key :uuid
|
|
|
|
# bounced :boolean default(FALSE), not null
|
|
|
|
# message_id :string
|
|
|
|
# smtp_group_id :integer
|
|
|
|
# cc_addresses :text
|
|
|
|
# cc_user_ids :integer is an Array
|
|
|
|
# raw :text
|
|
|
|
# topic_id :integer
|
|
|
|
# bounce_error_code :string
|
|
|
|
# smtp_transaction_response :string(500)
|
2013-05-23 22:35:14 -04:00
|
|
|
#
|
|
|
|
# Indexes
|
|
|
|
#
|
2021-06-21 18:32:01 -04:00
|
|
|
# index_email_logs_on_bounce_key (bounce_key) UNIQUE WHERE (bounce_key IS NOT NULL)
|
|
|
|
# index_email_logs_on_bounced (bounced)
|
|
|
|
# index_email_logs_on_created_at (created_at)
|
|
|
|
# index_email_logs_on_message_id (message_id)
|
|
|
|
# index_email_logs_on_post_id (post_id)
|
|
|
|
# index_email_logs_on_topic_id (topic_id) WHERE (topic_id IS NOT NULL)
|
|
|
|
# index_email_logs_on_user_id (user_id)
|
2013-05-23 22:35:14 -04:00
|
|
|
#
|