Chatwoot/app/models/channel/email.rb

44 lines
1.1 KiB
Ruby
Raw Normal View History

2020-07-21 06:45:24 +00:00
# == Schema Information
#
# Table name: channel_email
#
2021-03-04 08:29:59 +00:00
# id :bigint not null, primary key
# email :string not null
# forward_to_email :string not null
# created_at :datetime not null
# updated_at :datetime not null
# account_id :integer not null
2020-07-21 06:45:24 +00:00
#
# Indexes
#
2021-03-04 08:29:59 +00:00
# index_channel_email_on_email (email) UNIQUE
# index_channel_email_on_forward_to_email (forward_to_email) UNIQUE
2020-07-21 06:45:24 +00:00
#
class Channel::Email < ApplicationRecord
self.table_name = 'channel_email'
EDITABLE_ATTRS = [:email].freeze
2020-07-21 06:45:24 +00:00
validates :account_id, presence: true
belongs_to :account
validates :email, uniqueness: true
2021-03-04 08:29:59 +00:00
validates :forward_to_email, uniqueness: true
2020-07-21 06:45:24 +00:00
has_one :inbox, as: :channel, dependent: :destroy
2021-03-04 08:29:59 +00:00
before_validation :ensure_forward_to_email, on: :create
2020-07-21 06:45:24 +00:00
def name
'Email'
end
def has_24_hour_messaging_window?
false
end
2020-07-21 06:45:24 +00:00
private
2021-03-04 08:29:59 +00:00
def ensure_forward_to_email
self.forward_to_email ||= "#{SecureRandom.hex}@#{account.inbound_email_domain}"
2020-07-21 06:45:24 +00:00
end
end