summaryrefslogtreecommitdiff
path: root/users/app/models/local_email.rb
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2013-01-17 15:09:58 +0100
committerAzul <azul@leap.se>2013-01-17 15:16:53 +0100
commita8ec73a0307924610023525786bb3a9eb8b173e1 (patch)
tree16d937bfea4d18a39aad1eec86edfd4f6467d708 /users/app/models/local_email.rb
parent7f7ba4f3d72104d67e9ecf839c9688c0580d4063 (diff)
unit tests passing
Diffstat (limited to 'users/app/models/local_email.rb')
-rw-r--r--users/app/models/local_email.rb32
1 files changed, 15 insertions, 17 deletions
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