From c83ada50de6b9a7084a23037068ba7f12e09dfc9 Mon Sep 17 00:00:00 2001 From: Azul Date: Thu, 20 Dec 2012 17:38:36 +0100 Subject: fixed tests, testing corner cases, fixed these --- users/app/models/user.rb | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) (limited to 'users/app/models/user.rb') diff --git a/users/app/models/user.rb b/users/app/models/user.rb index 8f776a3..2a8a57b 100644 --- a/users/app/models/user.rb +++ b/users/app/models/user.rb @@ -33,9 +33,11 @@ class User < CouchRest::Model::Base :format => { :with => /\A(([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,}))?\Z/, :message => "needs to be a valid email address"} validates :email, - :format => { :with => /@#{APP_CONFIG[:domain]}\Z/, + :format => { :with => /\A(.+@#{APP_CONFIG[:domain]})?\Z/, :message => "needs to end in @#{APP_CONFIG[:domain]}"} + validate :email_unique_on_server + validates :email_forward, :format => { :with => /\A(([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,}))?\Z/, :message => "needs to be a valid email address"} @@ -125,18 +127,28 @@ class User < CouchRest::Model::Base email_aliases.build(attrs.values.first) if attrs end + protected + ## # Validation Functions ## def email_differs_from_email_aliases + # If this has not changed but the email aliases let's not mark this invalid. return if email_aliases.any? and email_aliases.last.errors.any? if email_aliases.map(&:email).include?(email) errors.add(:email, "may not be the same as an alias") end end - protected + def email_unique_on_server + return unless email + has_email = User.find_by_email_or_alias(email) + if has_email && has_email != self.base_doc + errors.add :email, "has already been taken" + end + end + def password password_verifier end -- cgit v1.2.3