FIX: Add guard to prevent a primary UserEmail from being reassigned.

This commit is contained in:
Guo Xiang Tan 2018-01-04 15:37:26 +08:00
parent a109397035
commit 8a3bbcb19a
3 changed files with 26 additions and 0 deletions

View File

@ -12,6 +12,8 @@ class UserEmail < ActiveRecord::Base
validates :email, email: true, format: { with: EmailValidator.email_regex },
if: :validate_email?
validate :user_id_not_changed, if: :primary
validates :primary, uniqueness: { scope: [:user_id] }
private
@ -27,6 +29,14 @@ class UserEmail < ActiveRecord::Base
return false if self.skip_validate_email
email_changed?
end
def user_id_not_changed
if self.will_save_change_to_user_id? && self.persisted?
self.errors.add(:user_id, I18n.t(
'active_record.errors.model.user_email.attributes.user_id.reassigning_primary_email')
)
end
end
end
# == Schema Information

View File

@ -403,6 +403,10 @@ en:
unique_characters: "has too many repeated characters. Please use a more secure password."
ip_address:
signup_not_allowed: "Signup is not allowed from this account."
user_email:
attributes:
user_id:
reassigning_primary_email: "Reassigning a primary email to another user is not allowed."
color_scheme_color:
attributes:
hex:

View File

@ -37,6 +37,18 @@ describe User do
expect(user.errors.messages).to include(:primary_email)
end
end
describe 'when primary_email is being reassigned to another user' do
it "should not be valid" do
user2 = Fabricate.build(:user, email: nil)
user.save!
user2.primary_email = user.primary_email
expect(user2).to_not be_valid
expect(user2.errors.messages).to include(:primary_email)
expect(user2.primary_email.errors.messages).to include(:user_id)
end
end
end
end