2020-07-21 06:45:24 +00:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: channel_email
|
|
|
|
#
|
|
|
|
# id :bigint not null, primary key
|
|
|
|
# email :string not null
|
|
|
|
# forward_to_address :string not null
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
# account_id :integer not null
|
|
|
|
#
|
|
|
|
# Indexes
|
|
|
|
#
|
|
|
|
# index_channel_email_on_email (email) UNIQUE
|
|
|
|
# index_channel_email_on_forward_to_address (forward_to_address) UNIQUE
|
|
|
|
#
|
|
|
|
|
|
|
|
class Channel::Email < ApplicationRecord
|
|
|
|
self.table_name = 'channel_email'
|
|
|
|
|
|
|
|
validates :account_id, presence: true
|
|
|
|
belongs_to :account
|
|
|
|
validates :email, uniqueness: true
|
|
|
|
validates :forward_to_address, uniqueness: true
|
|
|
|
|
|
|
|
has_one :inbox, as: :channel, dependent: :destroy
|
|
|
|
before_validation :ensure_forward_to_address, on: :create
|
|
|
|
|
2020-09-04 13:43:47 +00:00
|
|
|
def name
|
|
|
|
'Email'
|
|
|
|
end
|
|
|
|
|
2020-07-25 17:24:45 +00:00
|
|
|
def has_24_hour_messaging_window?
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
2020-07-21 06:45:24 +00:00
|
|
|
private
|
|
|
|
|
|
|
|
def ensure_forward_to_address
|
2021-01-17 17:13:32 +00:00
|
|
|
email_domain = InstallationConfig.find_by(name: 'MAILER_INBOUND_EMAIL_DOMAIN')&.value
|
|
|
|
self.forward_to_address ||= "#{SecureRandom.hex}@#{email_domain}"
|
2020-07-21 06:45:24 +00:00
|
|
|
end
|
|
|
|
end
|