summaryrefslogtreecommitdiff
path: root/puppet
diff options
context:
space:
mode:
authorMicah Anderson <micah@leap.se>2013-11-28 11:03:20 -0500
committerMicah Anderson <micah@leap.se>2013-11-28 11:03:20 -0500
commit0ee2115516eb8b79ad6ff8711b860d9da60e0f2a (patch)
tree7c876b3cd691968e0cdc329b0ecf04c5ff20d419 /puppet
parentbba78a580f7c859d3d0d726e291ad628d7e835d3 (diff)
remove duplicate couchdb design document json files
Change-Id: I5b3d073aec0522cf464ff41905be1ee326f13197
Diffstat (limited to 'puppet')
-rw-r--r--puppet/modules/site_couchdb/files/designs/customers.json18
-rw-r--r--puppet/modules/site_couchdb/files/designs/identities.json28
-rw-r--r--puppet/modules/site_couchdb/files/designs/sessions.json8
-rw-r--r--puppet/modules/site_couchdb/files/designs/tickets.json50
-rw-r--r--puppet/modules/site_couchdb/files/designs/tokens.json14
-rw-r--r--puppet/modules/site_couchdb/files/designs/users.json26
6 files changed, 0 insertions, 144 deletions
diff --git a/puppet/modules/site_couchdb/files/designs/customers.json b/puppet/modules/site_couchdb/files/designs/customers.json
deleted file mode 100644
index 1b4bbddd..00000000
--- a/puppet/modules/site_couchdb/files/designs/customers.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "_id": "_design/Customer",
- "language": "javascript",
- "views": {
- "by_user_id": {
- "map": " function(doc) {\n if ((doc['type'] == 'Customer') && (doc['user_id'] != null)) {\n emit(doc['user_id'], 1);\n }\n }\n",
- "reduce": "_sum"
- },
- "by_braintree_customer_id": {
- "map": " function(doc) {\n if ((doc['type'] == 'Customer') && (doc['braintree_customer_id'] != null)) {\n emit(doc['braintree_customer_id'], 1);\n }\n }\n",
- "reduce": "_sum"
- },
- "all": {
- "map": " function(doc) {\n if (doc['type'] == 'Customer') {\n emit(doc._id, null);\n }\n }\n"
- }
- },
- "couchrest-hash": "688c401ec0230b75625c176a88fc4a02"
-} \ No newline at end of file
diff --git a/puppet/modules/site_couchdb/files/designs/identities.json b/puppet/modules/site_couchdb/files/designs/identities.json
deleted file mode 100644
index 8cf8c39b..00000000
--- a/puppet/modules/site_couchdb/files/designs/identities.json
+++ /dev/null
@@ -1,28 +0,0 @@
-{
- "_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 emit(doc.address, doc.keys[\"pgp\"]);\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": "5b0ece9d28b3025d18ea71fddf3a532f"
-} \ No newline at end of file
diff --git a/puppet/modules/site_couchdb/files/designs/sessions.json b/puppet/modules/site_couchdb/files/designs/sessions.json
deleted file mode 100644
index 70202780..00000000
--- a/puppet/modules/site_couchdb/files/designs/sessions.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "views": {
- "by_expires": {
- "reduce": "_sum",
- "map": "function(doc) {\n if(typeof doc.expires !== \"undefined\") {\n emit(doc.expires, 1);\n }\n}\n"
- }
- }
-}
diff --git a/puppet/modules/site_couchdb/files/designs/tickets.json b/puppet/modules/site_couchdb/files/designs/tickets.json
deleted file mode 100644
index 2c9408b8..00000000
--- a/puppet/modules/site_couchdb/files/designs/tickets.json
+++ /dev/null
@@ -1,50 +0,0 @@
-{
- "_id": "_design/Ticket",
- "language": "javascript",
- "views": {
- "by_updated_at": {
- "map": " function(doc) {\n if ((doc['type'] == 'Ticket') && (doc['updated_at'] != null)) {\n emit(doc['updated_at'], 1);\n }\n }\n",
- "reduce": "_sum"
- },
- "by_created_at": {
- "map": " function(doc) {\n if ((doc['type'] == 'Ticket') && (doc['created_at'] != null)) {\n emit(doc['created_at'], 1);\n }\n }\n",
- "reduce": "_sum"
- },
- "by_created_by": {
- "map": " function(doc) {\n if ((doc['type'] == 'Ticket') && (doc['created_by'] != null)) {\n emit(doc['created_by'], 1);\n }\n }\n",
- "reduce": "_sum"
- },
- "by_is_open_and_created_at": {
- "map": " function(doc) {\n if ((doc['type'] == 'Ticket') && (doc['is_open'] != null) && (doc['created_at'] != null)) {\n emit([doc['is_open'], doc['created_at']], 1);\n }\n }\n",
- "reduce": "_sum"
- },
- "by_is_open_and_updated_at": {
- "map": " function(doc) {\n if ((doc['type'] == 'Ticket') && (doc['is_open'] != null) && (doc['updated_at'] != null)) {\n emit([doc['is_open'], doc['updated_at']], 1);\n }\n }\n",
- "reduce": "_sum"
- },
- "by_includes_post_by_and_is_open_and_created_at": {
- "map": "function(doc) {\n var arr = {}\n if (doc['type'] == 'Ticket' && doc.comments) {\n doc.comments.forEach(function(comment){\n if (comment.posted_by && !arr[comment.posted_by]) {\n //don't add duplicates\n arr[comment.posted_by] = true;\n emit([comment.posted_by, doc.is_open, doc.created_at], 1);\n }\n });\n }\n}\n",
- "reduce": "function(key, values, rereduce) { return sum(values); }"
- },
- "by_includes_post_by_and_is_open_and_updated_at": {
- "map": "function(doc) {\n var arr = {}\n if (doc['type'] == 'Ticket' && doc.comments) {\n doc.comments.forEach(function(comment){\n if (comment.posted_by && !arr[comment.posted_by]) {\n //don't add duplicates\n arr[comment.posted_by] = true;\n emit([comment.posted_by, doc.is_open, doc.updated_at], 1);\n }\n });\n }\n}\n",
- "reduce": "function(key, values, rereduce) { return sum(values); }"
- },
- "by_includes_post_by_and_updated_at": {
- "map": "function(doc) {\n var arr = {}\n if (doc['type'] == 'Ticket' && doc.comments) {\n doc.comments.forEach(function(comment){\n if (comment.posted_by && !arr[comment.posted_by]) {\n //don't add duplicates\n arr[comment.posted_by] = true;\n emit([comment.posted_by, doc.updated_at], 1);\n }\n });\n }\n}\n",
- "reduce": "function(key, values, rereduce) { return sum(values); }"
- },
- "by_includes_post_by": {
- "map": "// TODO: This view is only used in tests--should we keep it?\nfunction(doc) {\n var arr = {}\n if (doc['type'] == 'Ticket' && doc.comments) {\n doc.comments.forEach(function(comment){\n if (comment.posted_by && !arr[comment.posted_by]) {\n //don't add duplicates\n arr[comment.posted_by] = true;\n emit(comment.posted_by, 1);\n }\n });\n }\n}\n",
- "reduce": "function(key, values, rereduce) { return sum(values); }"
- },
- "by_includes_post_by_and_created_at": {
- "map": "function(doc) {\n var arr = {}\n if (doc['type'] == 'Ticket' && doc.comments) {\n doc.comments.forEach(function(comment){\n if (comment.posted_by && !arr[comment.posted_by]) {\n //don't add duplicates\n arr[comment.posted_by] = true;\n emit([comment.posted_by, doc.created_at], 1);\n }\n });\n }\n}\n",
- "reduce": "function(key, values, rereduce) { return sum(values); }"
- },
- "all": {
- "map": " function(doc) {\n if (doc['type'] == 'Ticket') {\n emit(doc._id, null);\n }\n }\n"
- }
- },
- "couchrest-hash": "9978e2cbeacbe8622c2a7f103bf8130f"
-} \ No newline at end of file
diff --git a/puppet/modules/site_couchdb/files/designs/tokens.json b/puppet/modules/site_couchdb/files/designs/tokens.json
deleted file mode 100644
index b9025f15..00000000
--- a/puppet/modules/site_couchdb/files/designs/tokens.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "_id": "_design/Token",
- "language": "javascript",
- "views": {
- "by_last_seen_at": {
- "map": " function(doc) {\n if ((doc['type'] == 'Token') && (doc['last_seen_at'] != null)) {\n emit(doc['last_seen_at'], 1);\n }\n }\n",
- "reduce": "_sum"
- },
- "all": {
- "map": " function(doc) {\n if (doc['type'] == 'Token') {\n emit(doc._id, null);\n }\n }\n"
- }
- },
- "couchrest-hash": "541dd924551c42a2317b345effbe65cc"
-} \ No newline at end of file
diff --git a/puppet/modules/site_couchdb/files/designs/users.json b/puppet/modules/site_couchdb/files/designs/users.json
deleted file mode 100644
index c500822b..00000000
--- a/puppet/modules/site_couchdb/files/designs/users.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "_id": "_design/User",
- "language": "javascript",
- "views": {
- "by_login": {
- "map": " function(doc) {\n if ((doc['type'] == 'User') && (doc['login'] != null)) {\n emit(doc['login'], 1);\n }\n }\n",
- "reduce": "_sum"
- },
- "all": {
- "map": " function(doc) {\n if (doc['type'] == 'User') {\n emit(doc._id, null);\n }\n }\n"
- },
- "by_alias": {
- "map": "function(doc) {\n if (doc.type != 'User') {\n return;\n }\n doc.email_aliases.forEach(function(alias){\n emit(alias.username, 1);\n });\n}\n",
- "reduce": "function(key, values, rereduce) { return sum(values); }"
- },
- "by_login_or_alias": {
- "map": "function(doc) {\n if (doc.type != 'User') {\n return;\n }\n emit(doc.login, 1);\n doc.email_aliases.forEach(function(alias){\n emit(alias.username, 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": "26adb5c9480663de3fe60d959b60a7b2"
-} \ No newline at end of file