2013-05-24 10:48:32 +08:00
|
|
|
class EmailLog < ActiveRecord::Base
|
|
|
|
belongs_to :user
|
2013-06-14 06:11:10 +08:00
|
|
|
belongs_to :post
|
|
|
|
belongs_to :topic
|
|
|
|
|
2014-10-04 11:07:20 +08:00
|
|
|
validates :email_type, :to_address, presence: true
|
|
|
|
|
2014-02-15 02:06:21 +08:00
|
|
|
scope :sent, -> { where(skipped: false) }
|
|
|
|
scope :skipped, -> { where(skipped: true) }
|
|
|
|
|
2013-05-24 10:48:32 +08:00
|
|
|
after_create do
|
2014-02-15 02:06:21 +08:00
|
|
|
# Update last_emailed_at if the user_id is present and email was sent
|
2015-12-11 06:49:16 +08:00
|
|
|
User.where(id: user_id).update_all("last_emailed_at = CURRENT_TIMESTAMP") if user_id.present? && !skipped
|
2013-05-24 10:48:32 +08:00
|
|
|
end
|
|
|
|
|
2016-03-23 12:08:34 +08:00
|
|
|
def self.reached_max_emails?(user)
|
|
|
|
return false if SiteSetting.max_emails_per_day_per_user == 0
|
|
|
|
|
|
|
|
count = sent.where('created_at > ?', 1.day.ago)
|
|
|
|
.where(user_id: user.id)
|
|
|
|
.count
|
|
|
|
|
|
|
|
count >= SiteSetting.max_emails_per_day_per_user
|
|
|
|
end
|
|
|
|
|
2014-11-06 02:11:23 +08:00
|
|
|
def self.count_per_day(start_date, end_date)
|
2015-12-11 06:49:16 +08:00
|
|
|
sent.where("created_at BETWEEN ? AND ?", start_date, end_date)
|
|
|
|
.group("DATE(created_at)")
|
|
|
|
.order("DATE(created_at)")
|
|
|
|
.count
|
2013-05-24 10:48:32 +08:00
|
|
|
end
|
2013-06-14 06:11:10 +08:00
|
|
|
|
|
|
|
def self.for(reply_key)
|
2015-12-11 06:49:16 +08:00
|
|
|
self.find_by(reply_key: reply_key)
|
2013-06-14 06:11:10 +08:00
|
|
|
end
|
|
|
|
|
2013-11-15 23:27:43 +08:00
|
|
|
def self.last_sent_email_address
|
2015-12-11 06:49:16 +08:00
|
|
|
self.where(email_type: "signup")
|
|
|
|
.order(created_at: :desc)
|
|
|
|
.first
|
|
|
|
.try(:to_address)
|
2013-11-15 23:27:43 +08:00
|
|
|
end
|
|
|
|
|
2013-05-24 10:48:32 +08:00
|
|
|
end
|
|
|
|
|
2013-05-24 10:35:14 +08:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: email_logs
|
|
|
|
#
|
2014-03-20 12:35:51 +08:00
|
|
|
# id :integer not null, primary key
|
2016-02-23 07:33:53 +08:00
|
|
|
# to_address :string not null
|
|
|
|
# email_type :string not null
|
2014-03-20 12:35:51 +08:00
|
|
|
# user_id :integer
|
2014-08-27 13:19:25 +08:00
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
2014-03-20 12:35:51 +08:00
|
|
|
# reply_key :string(32)
|
|
|
|
# post_id :integer
|
|
|
|
# topic_id :integer
|
|
|
|
# skipped :boolean default(FALSE)
|
2016-02-23 07:33:53 +08:00
|
|
|
# skipped_reason :string
|
2013-05-24 10:35:14 +08:00
|
|
|
#
|
|
|
|
# Indexes
|
|
|
|
#
|
|
|
|
# index_email_logs_on_created_at (created_at)
|
2013-06-17 08:48:58 +08:00
|
|
|
# index_email_logs_on_reply_key (reply_key)
|
2014-03-20 12:35:51 +08:00
|
|
|
# index_email_logs_on_skipped_and_created_at (skipped,created_at)
|
2013-05-24 10:35:14 +08:00
|
|
|
# index_email_logs_on_user_id_and_created_at (user_id,created_at)
|
|
|
|
#
|