blob: c654fcb7ca79c457c0415a67ae590ce2d307af68 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
class LocalEmail < Email
validate :unique_on_server
validate :unique_alias_for_user
validate :differs_from_main_email
validates :casted_by, :presence => true
def to_partial_path
"emails/email"
end
def unique_on_server
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 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"
end
end
def differs_from_main_email
user = self.casted_by
if user.email == self.email
errors.add :email, "may not be the same as your email address"
end
end
end
|