diff options
| author | Azul <azul@riseup.net> | 2014-02-26 14:55:47 +0100 | 
|---|---|---|
| committer | Azul <azul@riseup.net> | 2014-02-26 15:11:01 +0100 | 
| commit | face1d929175b94e26ca11858e3b055873fdde92 (patch) | |
| tree | 7acdfa66344e7bf13deca702fe698b00a7b9e33a /puppet/modules | |
| parent | 2c2091cbfbe7a65234e985b3d004b4c3ec73c560 (diff) | |
update design docs, include messages (#5188)
Diffstat (limited to 'puppet/modules')
| -rw-r--r-- | puppet/modules/site_couchdb/files/designs/messages/Message.json | 18 | ||||
| -rw-r--r-- | puppet/modules/site_couchdb/files/designs/users/User.json | 6 | 
2 files changed, 23 insertions, 1 deletions
| diff --git a/puppet/modules/site_couchdb/files/designs/messages/Message.json b/puppet/modules/site_couchdb/files/designs/messages/Message.json new file mode 100644 index 00000000..7bcd74c7 --- /dev/null +++ b/puppet/modules/site_couchdb/files/designs/messages/Message.json @@ -0,0 +1,18 @@ +{ +  "_id": "_design/Message", +  "language": "javascript", +  "views": { +    "by_user_ids_to_show_and_created_at": { +      "map": "// not using at moment\n// call with something like Message.by_user_ids_to_show_and_created_at.startkey([user_id, start_date]).endkey([user_id,end_date])\nfunction (doc) {\n  if (doc.type === 'Message' && doc.user_ids_to_show && Array.isArray(doc.user_ids_to_show)) {\n    doc.user_ids_to_show.forEach(function (userId) {\n      emit([userId, doc.created_at], 1);\n    });\n  }\n}\n", +      "reduce": "function(key, values, rereduce) { return sum(values); }" +    }, +    "by_user_ids_to_show": { +      "map": "function (doc) {\n  if (doc.type === 'Message' && doc.user_ids_to_show && Array.isArray(doc.user_ids_to_show)) {\n    doc.user_ids_to_show.forEach(function (userId) {\n      emit(userId, 1);\n    });\n  }\n}\n", +      "reduce": "function(key, values, rereduce) { return sum(values); }" +    }, +    "all": { +      "map": "                function(doc) {\n                  if (doc['type'] == 'Message') {\n                    emit(doc._id, null);\n                  }\n                }\n" +    } +  }, +  "couchrest-hash": "0967e7cc5bb1e61edc1c085f6f0cecbf" +}
\ No newline at end of file diff --git a/puppet/modules/site_couchdb/files/designs/users/User.json b/puppet/modules/site_couchdb/files/designs/users/User.json index c99666cb..4089ad97 100644 --- a/puppet/modules/site_couchdb/files/designs/users/User.json +++ b/puppet/modules/site_couchdb/files/designs/users/User.json @@ -9,10 +9,14 @@      "all": {        "map": "                function(doc) {\n                  if (doc['type'] == 'User') {\n                    emit(doc._id, null);\n                  }\n                }\n"      }, +    "by_created_at_and_one_month_warning_not_sent": { +      "map": "function (doc) {\n  if ((doc['type'] == 'User') && (doc['created_at'] != null) && (doc['one_month_warning_sent'] == null)) {\n    emit(doc['created_at'], 1);\n  }    \n}\n", +      "reduce": "function(key, values, rereduce) { return sum(values); }" +    },      "by_created_at": {        "map": "                function(doc) {\n                  if ((doc['type'] == 'User') && (doc['created_at'] != null)) {\n                    emit(doc['created_at'], 1);\n                  }\n                }\n",        "reduce": "_sum"      }    }, -  "couchrest-hash": "3bdbcd85b928ad911e0c89a8924e015c" +  "couchrest-hash": "61840ab3ec0f94ef8bbd6dd208db3b70"  }
\ No newline at end of file | 
