BigW Consortium Gitlab

email.rb 719 Bytes
Newer Older
1 2 3 4
# == Schema Information
#
# Table name: emails
#
Dmitriy Zaporozhets committed
5 6 7 8 9 10 11
#  id         :integer          not null, primary key
#  user_id    :integer          not null
#  email      :string(255)      not null
#  created_at :datetime
#  updated_at :datetime
#

12
class Email < ActiveRecord::Base
13 14
  include Sortable

15
  belongs_to :user
16

17 18 19
  validates :user_id, presence: true
  validates :email, presence: true, email: { strict_mode: true }, uniqueness: true
  validate :unique_email, if: ->(email) { email.email_changed? }
20

21 22 23 24 25 26 27 28 29
  before_validation :cleanup_email

  def cleanup_email
    self.email = self.email.downcase.strip
  end

  def unique_email
    self.errors.add(:email, 'has already been taken') if User.exists?(email: self.email)
  end
30
end