discourse/app/models/screened_email.rb

45 lines
1.3 KiB
Ruby
Raw Normal View History

require_dependency 'screening_model'
# A ScreenedEmail record represents an email address that is being watched,
# typically when creating a new User account. If the email of the signup form
# (or some other form) matches a ScreenedEmail record, an action can be
# performed based on the action_type.
class ScreenedEmail < ActiveRecord::Base
include ScreeningModel
default_action :block
validates :email, presence: true, uniqueness: true
def self.block(email, opts={})
find_by_email(email) || create(opts.slice(:action_type, :ip_address).merge({email: email}))
end
def self.should_block?(email)
screened_email = ScreenedEmail.find_by(email: email)
screened_email.record_match! if screened_email
screened_email && screened_email.action_type == actions[:block]
end
end
2013-08-27 20:42:58 -04:00
# == Schema Information
#
# Table name: screened_emails
#
# id :integer not null, primary key
# email :string(255) not null
# action_type :integer not null
# match_count :integer default(0), not null
# last_match_at :datetime
2014-05-27 21:49:50 -04:00
# created_at :datetime
# updated_at :datetime
2013-12-05 01:40:35 -05:00
# ip_address :inet
2013-08-27 20:42:58 -04:00
#
# Indexes
#
2014-05-27 21:49:50 -04:00
# index_screened_emails_on_email (email) UNIQUE
# index_screened_emails_on_last_match_at (last_match_at)
2013-08-27 20:42:58 -04:00
#