blob: b862590f96a3d4272a4a1eafcbda42b6d3857b3e (
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
35
36
37
38
39
40
41
42
43
44
45
46
|
class Identity < CouchRest::Model::Base
use_database :identities
belongs_to :user
property :address, LocalEmail
property :destination, Email
property :keys, Hash
validate :unique_forward
validate :alias_available
design do
view :by_user_id
view :by_address_and_destination
view :by_address
view :pgp_key_by_email,
map: <<-EOJS
function(doc) {
if (doc.type != 'Identity') {
return;
}
emit(doc.address, doc.keys["pgp"]);
}
EOJS
end
protected
def unique_forward
same = Identity.find_by_address_and_destination([address, destination])
if same && same != self
errors.add :base, "This alias already exists"
end
end
def alias_available
same = Identity.find_by_address(address)
if same && same.user != self.user
errors.add :base, "This email has already been taken"
end
end
end
|