summaryrefslogtreecommitdiff
path: root/puppet/modules/site_couchdb/files/designs/identities/Identity.json
blob: 2ac092ab3dc04f9566b56ed5a2dafef9e9b8500f (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
{
  "_id": "_design/Identity",
  "language": "javascript",
  "views": {
    "by_user_id": {
      "map": "                function(doc) {\n                  if ((doc['type'] == 'Identity') && (doc['user_id'] != null)) {\n                    emit(doc['user_id'], 1);\n                  }\n                }\n",
      "reduce": "_sum"
    },
    "by_address_and_destination": {
      "map": "                function(doc) {\n                  if ((doc['type'] == 'Identity') && (doc['address'] != null) && (doc['destination'] != null)) {\n                    emit([doc['address'], doc['destination']], 1);\n                  }\n                }\n",
      "reduce": "_sum"
    },
    "by_address": {
      "map": "                function(doc) {\n                  if ((doc['type'] == 'Identity') && (doc['address'] != null)) {\n                    emit(doc['address'], 1);\n                  }\n                }\n",
      "reduce": "_sum"
    },
    "pgp_key_by_email": {
      "map": "      function(doc) {\n        if (doc.type != 'Identity') {\n          return;\n        }\n        if (typeof doc.keys === \"object\") {\n          emit(doc.address, doc.keys[\"pgp\"]);\n        }\n      }\n"
    },
    "disabled": {
      "map": "      function(doc) {\n        if (doc.type != 'Identity') {\n          return;\n        }\n        if (typeof doc.user_id === \"undefined\") {\n          emit(doc._id, 1);\n        }\n      }\n"
    },
    "all": {
      "map": "                function(doc) {\n                  if (doc['type'] == 'Identity') {\n                    emit(doc._id, null);\n                  }\n                }\n"
    }
  },
  "couchrest-hash": "e9004d70e26770c621a9667536429a68"
}