This repository was archived by the owner on Jun 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathmongolab-brain.coffee
66 lines (57 loc) · 1.72 KB
/
mongolab-brain.coffee
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# Description:
# Replaces default `redis-brain` with MongoDB one. Useful
# to those who wants to have persistence on completely free
# Heroku account.
#
# Dependencies:
# "mongodb": "*"
#
# Configuration:
# MONGOLAB_URI
#
# Commands:
# None
#
# Author:
# juancoen, darvin
MongoClient = require('mongodb').MongoClient
encodeKeys = (obj) ->
return obj if typeof obj isnt 'object'
for key, value of obj
if obj.hasOwnProperty key
obj[key.replace(/\./g, ":::")] = encodeKeys(obj[key])
delete obj[key] if (key.indexOf(".") > -1)
obj
decodeKeys = (obj) ->
return obj if typeof obj isnt 'object'
for key, value of obj
if obj.hasOwnProperty key
obj[key.replace(/:::/g, ".")] = encodeKeys(obj[key])
delete obj[key] if (key.indexOf(":::") > -1)
obj
module.exports = (robot) ->
mongoUrl = process.env.MONGOLAB_URI
MongoClient.connect mongoUrl, (err, db) ->
if err?
throw err
else
robot.logger.debug "Successfully connected to Mongo"
db.createCollection 'storage', (err, collection) ->
collection.findOne {}, (err, document) ->
if err?
throw err
else if document
document = decodeKeys document
robot.brain.mergeData document
robot.brain.on 'save', (data) ->
db.collection 'storage', (err, collection) ->
# https://github.com/christkv/node-mongodb-native/blob/master/lib/mongodb/collection.js#L373
# update(selector, document, options, callback)
data = encodeKeys data
opts =
safe: true
upsert: true
collection.update {}, data, opts, (err) ->
throw err if err?
robot.brain.on 'close', ->
db.close()