-
Notifications
You must be signed in to change notification settings - Fork 2
/
base.js
180 lines (134 loc) · 3.59 KB
/
base.js
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
'use strict';
const R = require('rethinkdb');
const Includes = require('lodash/includes');
Promise = require('bluebird');
const Base = function (options) {
this.options = options;
this.connection = options.connection;
};
Base.prototype.emptyCallback = function () {
if (this.options.verbose) {
return console.log;
}
return function () {};
};
/**
* @return {Promise}
*/
Base.prototype.close = function () {
return new Promise( (resolve,reject) => {
this.connection.close()
.then( () => {
resolve(true);
}, reject);
});
};
/**
* @return {Promise}
*/
Base.prototype.connect = function () {
if (this.connection && this.connection.open) {
const message = [
'Already connected to '
,this.connection.host
,':'
,this.connection.port
,'/'
,this.connection.db,'\n'
].join('');
return Promise.resolve(message);
}
return new Promise( (resolve,reject) => {
const options = Object.assign({}, this.options);
return R.connect(options).then( (conn) => {
this.connection = conn;
const message = ['Connected to ',conn.host,':',conn.port,'/',conn.db,'\n'].join('');
resolve(message);
},reject);
});
};
/**
* @param {String} name
* @return {Promise}
*/
Base.prototype.createTableUnlessExist = function (name) {
return new Promise( (resolve,reject) => {
this.tableList().then( (list) => {
if (Includes(list,name)) {
resolve(name);
}
else {
R.tableCreate(name).run(this.connection).then( (result) => {
resolve(name);
},reject);
}
});
});
};
/**
* @param {Array} tables
* @return {Array} [promise]
*/
Base.prototype.createTablesUnlessExist = function (tables) {
const promises = tables.map( (table) => {
return this.createTableUnlessExist(table);
});
return Promise.all(promises);
};
Base.prototype.dropTables = function (tables) {
const promises = tables.map( (table) => {
return R.tableDrop(table).run(this.connection);
});
return Promise.all(promises);
};
Base.prototype.deleteTableWithFilter = function (table,filter) {
return R.table(table)
.filter(filter)
.delete()
.run(this.connection, {
returnChanges: true
});
};
Base.prototype.deleteTable = function (table) {
return R.table(table).delete().run(this.connection, { returnChanges: true });
};
/**
* @param {Object}
* @returns {Array}
*/
Base.prototype.fill = function (data) {
const tables = Object.keys(data);
// returns array of promises
const promises = tables.map( (table) => {
return this.fillTable(table, data[table]);
});
return Promise.all(promises);
};
/**
* @param {String} table
* @param {Object} data
* @return {Promise}
*/
Base.prototype.fillTable = function (table, data) {
return new Promise( (resolve,reject) => {
R.table(table)
.insert(data, { returnChanges: true })
.run(this.connection)
.then( (result) => {
const objects = result.changes.map( (obj) => {
return obj.new_val;
});
const pack = {};
pack[table] = objects;
return resolve(pack);
}, reject);
});
};
/**
* @return {Promise}
*/
Base.prototype.tableList = function () {
return R.tableList().run(this.connection);
};
Base.prototype.$r = R;
module.exports = Base;