summaryrefslogtreecommitdiff
path: root/users/app/models/local_email.rb
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2013-01-16 16:52:35 +0100
committerAzul <azul@leap.se>2013-01-16 16:52:35 +0100
commit7f7ba4f3d72104d67e9ecf839c9688c0580d4063 (patch)
treed0f4fbe470c0971d86b8cc58fbe73c1a29ba06f3 /users/app/models/local_email.rb
parentee2ea4ac8f4c6b0c3b09be6ed49e7a1faec7a9c1 (diff)
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.
Diffstat (limited to 'users/app/models/local_email.rb')
-rw-r--r--users/app/models/local_email.rb49
1 files changed, 34 insertions, 15 deletions
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