From 7f7ba4f3d72104d67e9ecf839c9688c0580d4063 Mon Sep 17 00:00:00 2001 From: Azul Date: Wed, 16 Jan 2013 16:52:35 +0100 Subject: incomplete initial changes to make email address just login@domain.tld This involves a number of other changes like making sure the comparison between aliases and emails still works. Will do that by removing the @domain.tld from aliases as well. --- users/app/models/local_email.rb | 49 ++++++++++++++++++++++++++++------------- users/app/models/user.rb | 33 ++++++++------------------- 2 files changed, 43 insertions(+), 39 deletions(-) (limited to 'users/app/models') diff --git a/users/app/models/local_email.rb b/users/app/models/local_email.rb index d23df71..c3bb15c 100644 --- a/users/app/models/local_email.rb +++ b/users/app/models/local_email.rb @@ -1,15 +1,37 @@ -class LocalEmail < Email +class LocalEmail + + property :username, String + + validates :username, + :format => { :with => /\A([^@\s]+)(@.*)?\Z/, :message => "needs to be a valid login or email address"} validate :unique_on_server validate :unique_alias_for_user validate :differs_from_main_email - before_validation :add_domain_if_needed - validates :email, + before_validation :strip_domain_if_needed + validates :username, :presence => true, - :format => { :with => /@#{APP_CONFIG[:domain]}\Z/, + :format => { :with => /[^@]*(@#{APP_CONFIG[:domain]})?\Z/i, :message => "needs to end in @#{APP_CONFIG[:domain]}"} validates :casted_by, :presence => true + def initialize(attributes = nil, &block) + attributes = {:username => attributes} if attributes.is_a? String + super(attributes, &block) + end + + def to_s + email + end + + def ==(other) + other.is_a?(String) ? self.email == other : super + end + + def to_param + email + end + def to_partial_path "emails/email" end @@ -17,16 +39,16 @@ class LocalEmail < Email protected def unique_on_server - has_email = User.find_by_email_or_alias(email) + has_email = User.find_by_login_or_alias(username) if has_email && has_email != self.base_doc - errors.add :email, "has already been taken" + errors.add :username, "has already been taken" end end def unique_alias_for_user aliases = self.casted_by.email_aliases - if aliases.select{|a|a.email == self.email}.count > 1 - errors.add :email, "is already your alias" + if aliases.select{|a|a.username == self.username}.count > 1 + errors.add :username, "is already your alias" end end @@ -34,16 +56,13 @@ class LocalEmail < Email # If this has not changed but the email let's mark the email invalid instead. return if self.persisted? user = self.casted_by - if user.email == self.email - errors.add :email, "may not be the same as your email address" + if user.login == self.username + errors.add :username, "may not be the same as your email address" end end - def add_domain_if_needed - if email.blank? - errors.add :email, "may not be empty." - end - self.email += "@" + APP_CONFIG[:domain] unless self.email.include?("@") + def strip_domain_if_needed + self.username.gsub /@#{APP_CONFIG[:domain]}/i, '' end end diff --git a/users/app/models/user.rb b/users/app/models/user.rb index f20c6ac..40e285a 100644 --- a/users/app/models/user.rb +++ b/users/app/models/user.rb @@ -6,7 +6,6 @@ class User < CouchRest::Model::Base property :password_verifier, String, :accessible => true property :password_salt, String, :accessible => true - property :email, String, :accessible => true property :email_forward, String, :accessible => true property :email_aliases, [LocalEmail] @@ -21,6 +20,8 @@ class User < CouchRest::Model::Base :format => { :with => /\A[A-Za-z\d_\.]+\z/, :message => "Only letters, digits, . and _ allowed" } + validate :login_differs_from_email_aliases + validates :password_salt, :password_verifier, :format => { :with => /\A[\dA-Fa-f]+\z/, :message => "Only hex numbers allowed" } @@ -28,21 +29,9 @@ class User < CouchRest::Model::Base :confirmation => true, :format => { :with => /.{8}.*/, :message => "needs to be at least 8 characters long" } - # TODO: write a proper email validator to be used in the different places - validates :email, - :format => { :with => /\A(([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,}))?\Z/, :message => "needs to be a valid email address"} - - validates :email, - :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"} - validate :email_differs_from_email_aliases - timestamps! design do @@ -83,6 +72,10 @@ class User < CouchRest::Model::Base login end + def email_address + login + '@' + APP_CONFIG[:domain] + end + # Since we are storing admins by login, we cannot allow admins to change their login. def is_admin? APP_CONFIG['admins'].include? self.login @@ -100,19 +93,11 @@ class User < CouchRest::Model::Base # Validation Functions ## - def email_differs_from_email_aliases + def login_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 - - 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" + if email_aliases.map(&:email).include?(email_address) + errors.add(:login, "may not be the same as an alias") end end -- cgit v1.2.3 From a8ec73a0307924610023525786bb3a9eb8b173e1 Mon Sep 17 00:00:00 2001 From: Azul Date: Thu, 17 Jan 2013 15:09:58 +0100 Subject: unit tests passing --- users/app/models/email.rb | 17 ++++++++++------- users/app/models/local_email.rb | 32 +++++++++++++++----------------- users/app/models/remote_email.rb | 14 ++++++++++++++ users/app/models/user.rb | 15 ++++++++------- 4 files changed, 47 insertions(+), 31 deletions(-) create mode 100644 users/app/models/remote_email.rb (limited to 'users/app/models') diff --git a/users/app/models/email.rb b/users/app/models/email.rb index 0745fda..904acb9 100644 --- a/users/app/models/email.rb +++ b/users/app/models/email.rb @@ -1,10 +1,13 @@ -class Email - include CouchRest::Model::Embeddable +module Email + extend ActiveSupport::Concern - property :email, String - - validates :email, - :format => { :with => /\A([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})\Z/, :message => "needs to be a valid email address"} + included do + validates :email, + :format => { + :with => /\A([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})\Z/, + :message => "needs to be a valid email address" + } + end def initialize(attributes = nil, &block) attributes = {:email => attributes} if attributes.is_a? String @@ -16,7 +19,7 @@ class Email end def ==(other) - other.is_a?(String) ? self.email == other : super + other.is_a?(Email) ? self.email == other.email : self.email == other end def to_param diff --git a/users/app/models/local_email.rb b/users/app/models/local_email.rb index c3bb15c..587acc6 100644 --- a/users/app/models/local_email.rb +++ b/users/app/models/local_email.rb @@ -1,35 +1,33 @@ class LocalEmail + include CouchRest::Model::Embeddable + include Email property :username, String + before_validation :strip_domain_if_needed + validates :username, :format => { :with => /\A([^@\s]+)(@.*)?\Z/, :message => "needs to be a valid login or email address"} validate :unique_on_server validate :unique_alias_for_user - validate :differs_from_main_email - before_validation :strip_domain_if_needed + validate :differs_from_login + validates :username, :presence => true, :format => { :with => /[^@]*(@#{APP_CONFIG[:domain]})?\Z/i, - :message => "needs to end in @#{APP_CONFIG[:domain]}"} + :message => "may not contain an '@' or needs to end in @#{APP_CONFIG[:domain]}"} validates :casted_by, :presence => true - def initialize(attributes = nil, &block) - attributes = {:username => attributes} if attributes.is_a? String - super(attributes, &block) - end - - def to_s - email - end - - def ==(other) - other.is_a?(String) ? self.email == other : super + def email + return '' if username.nil? + username + '@' + APP_CONFIG[:domain] end - def to_param - email + def email=(value) + return if value.blank? + self.username = value + strip_domain_if_needed end def to_partial_path @@ -52,7 +50,7 @@ class LocalEmail end end - def differs_from_main_email + def differs_from_login # If this has not changed but the email let's mark the email invalid instead. return if self.persisted? user = self.casted_by diff --git a/users/app/models/remote_email.rb b/users/app/models/remote_email.rb new file mode 100644 index 0000000..4fe7425 --- /dev/null +++ b/users/app/models/remote_email.rb @@ -0,0 +1,14 @@ +class RemoteEmail + include CouchRest::Model::Embeddable + include Email + + property :email, String + + def username + email.spilt('@').first + end + + def domain + email.split('@').last + end +end diff --git a/users/app/models/user.rb b/users/app/models/user.rb index 40e285a..f89d01c 100644 --- a/users/app/models/user.rb +++ b/users/app/models/user.rb @@ -20,7 +20,7 @@ class User < CouchRest::Model::Base :format => { :with => /\A[A-Za-z\d_\.]+\z/, :message => "Only letters, digits, . and _ allowed" } - validate :login_differs_from_email_aliases + validate :login_is_unique_alias validates :password_salt, :password_verifier, :format => { :with => /\A[\dA-Fa-f]+\z/, :message => "Only hex numbers allowed" } @@ -38,7 +38,6 @@ class User < CouchRest::Model::Base load_views(Rails.root.join('users', 'app', 'designs', 'user')) view :by_login view :by_created_at - view :by_email end class << self @@ -93,11 +92,13 @@ class User < CouchRest::Model::Base # Validation Functions ## - def login_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_address) - errors.add(:login, "may not be the same as an alias") + def login_is_unique_alias + has_alias = User.find_by_login_or_alias(username) + return if has_alias.nil? + if has_alias != self + errors.add(:login, "has already been taken") + elsif has_alias.login != self.login + errors.add(:login, "may not be the same as one of your aliases") end end -- cgit v1.2.3 From 247a6f14db14543773beb1a1e96f2c335800eb82 Mon Sep 17 00:00:00 2001 From: Azul Date: Thu, 17 Jan 2013 16:28:52 +0100 Subject: minor fixes to validation workflow --- users/app/models/local_email.rb | 11 ++++------- users/app/models/user.rb | 2 +- 2 files changed, 5 insertions(+), 8 deletions(-) (limited to 'users/app/models') diff --git a/users/app/models/local_email.rb b/users/app/models/local_email.rb index 587acc6..bd9dea3 100644 --- a/users/app/models/local_email.rb +++ b/users/app/models/local_email.rb @@ -7,16 +7,13 @@ class LocalEmail before_validation :strip_domain_if_needed validates :username, - :format => { :with => /\A([^@\s]+)(@.*)?\Z/, :message => "needs to be a valid login or email address"} + :presence => true, + :format => { :with => /\A([^@\s]+)(@#{APP_CONFIG[:domain]})?\Z/i, :message => "needs to be a valid login or email address @#{APP_CONFIG[:domain]}"} validate :unique_on_server validate :unique_alias_for_user validate :differs_from_login - validates :username, - :presence => true, - :format => { :with => /[^@]*(@#{APP_CONFIG[:domain]})?\Z/i, - :message => "may not contain an '@' or needs to end in @#{APP_CONFIG[:domain]}"} validates :casted_by, :presence => true def email @@ -38,7 +35,7 @@ class LocalEmail def unique_on_server has_email = User.find_by_login_or_alias(username) - if has_email && has_email != self.base_doc + if has_email && has_email != self.casted_by errors.add :username, "has already been taken" end end @@ -60,7 +57,7 @@ class LocalEmail end def strip_domain_if_needed - self.username.gsub /@#{APP_CONFIG[:domain]}/i, '' + self.username.gsub! /@#{APP_CONFIG[:domain]}/i, '' end end diff --git a/users/app/models/user.rb b/users/app/models/user.rb index f89d01c..63f4d0f 100644 --- a/users/app/models/user.rb +++ b/users/app/models/user.rb @@ -72,7 +72,7 @@ class User < CouchRest::Model::Base end def email_address - login + '@' + APP_CONFIG[:domain] + LocalEmail.new(login) end # Since we are storing admins by login, we cannot allow admins to change their login. -- cgit v1.2.3