-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
267 lines (218 loc) · 5.66 KB
/
index.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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
import { resolve } from 'path';
import { copySync as copy } from 'fs-extra';
import { writeFileSync as write } from 'fs';
import DBuilder from 'dbuilder';
import chalk from 'chalk';
import vow from 'vow';
import { Spinner } from 'cli-spinner';
import { dirSync as dir } from 'tmp';
import tty from 'tty';
const image = `${__dirname}/../images/Dockerfile`;
const defer = Symbol();
const copies = Symbol();
export default class PSQL {
/**
* Our own copy, so we can stub it
* @static
* @type {FS}
*/
static copy = copy;
/**
* Our own write, so we can stub it
* @static
* @type {FS}
*/
static write = write;
/**
* Our own DBuilder, so we can stub it
* @static
* @type {FS}
*/
static DBuilder = DBuilder;
constructor(opts = {}) {
/**
* Name of the container db
* @type {String}
*/
this.name = opts.name;
/**
* Host port
* @type {String}
*/
this.port = opts.port || 5432;
/**
* Database name
* @type {String}
*/
this.database = opts.db;
/**
* Path to the sql dump
* @type {String | null}
*/
this.dump = 'dump' in opts ? resolve(opts.dump) : null;
/**
* Shell command that will be executed after
* @type {[type]}
*/
this.command = opts.command;
/**
* Environment variables
* @type {Object}
*/
this.envs = {
POSTGRES_USER: process.env.POSTGRES_USER || opts.user,
POSTGRES_PASSWORD: process.env.POSTGRES_PASSWORD || opts.password,
POSTGRES_DB: process.env.POSTGRES_DB || this.database
};
const dirTmp = dir().name;
/**
* Path in which dockerfile and associated files will be copied
* @private
* @type {String}
*/
this[copies] = {
dump: `${dirTmp}/dump.sql`,
image: `${dirTmp}/Dockerfile`,
make: `${dirTmp}/make.sh`
};
/**
* Builder instance
* @type {DBuilder}
*/
this.builder = new DBuilder({
name: this.name,
port: this.port,
exposed: 5432,
envs: this.envs,
image: this[copies].image
});
/**
* Finish promise
* @private
* @type {Deferred}
*/
this[defer] = vow.defer();
/**
* Spinner instance
* @type {Spinner}
*/
this.spin = new Spinner(`${chalk.blue('>')} Docking... ${chalk.blue('%s')}`);
this.spin.setSpinnerString('|/-\\');
const old = this.spin.start;
this.spin.start = (...args) => {
if (tty.isatty(process.stdout.fd)) {
return old.apply(this.spin, args);
}
};
}
/**
* Start psql db instance
* @return {Promise}
*/
up() {
this.prepare();
const promise = this.builder.up().then(() => this[defer].promise());
const listener = (data) => {
if (data.indexOf('No space left on device') > -1) {
const message = `No volume space, execute –
"$ docker volume rm $(docker volume ls -qf dangling=true)"`;
this.builder.removeListener('data', listener);
this.builder.emit('error', message);
this[defer].reject(message);
return;
}
if (data.indexOf('PostgreSQL init process complete; ready for start up') === -1) {
return;
}
this.builder.removeListener('data', listener);
this[defer].resolve();
};
this.builder.on('data', listener);
return promise;
}
/**
* Copy dump and image, prepare make.sh
*/
prepare() {
let command = `#!/bin/bash \n\npsql -d ${this.database} -U postgres -f /dump.sql`;
PSQL.copy(image, this[copies].image);
// Copy real dump
if (this.dump) {
PSQL.copy(this.dump, this[copies].dump);
// Just stub the whole thing
} else {
command = '';
PSQL.write(this[copies].dump, '', 'utf8');
}
PSQL.write(this[copies].make, command, 'utf8');
return this;
}
/**
* Pump container actions into the stdout
*/
pump() {
this.builder.pump();
return this;
}
/**
* Message into the console with spinner reset
* @param {String} message - what should we output
* @param {String} type - type of message, like "log" or "error"
*/
console(message, type) {
this.spin.stop(true);
this.message(message, type);
this.spin.start();
return this;
}
/**
* Message to stdout (easier to stub this in tests)
*/
message(message, type) {
type = type || 'log';
console[type](message);
}
/**
* Log all events into the console
*/
log() {
this.spin.start();
// Stop spin here, so it wouldn't intersect with `docker pull`
this.builder.on('download', () => this.spin.stop(true));
this.builder.on('complete', () => {
this.message(
`${chalk.green('>')}
Container "${this.name}" ${chalk.green('builded')} `.replace(/\s+/g, ' ')
);
// Re-start spin here, so it wouldn't intersect with `docker pull`
this.spin.start();
});
this.builder.on('stopped and removed', () => {
this.console(
`${chalk.red('>')} Container "${this.name}"
${chalk.red('stopped and removed')}`.replace(/\s+/g, ' ')
);
});
this.builder.on('error', (error) => {
this.console(
`${chalk.red('>')}
Error with "${this.name}" - ${error}`.replace(/\s+/g, ' '),
'error'
);
this.spin.stop(true);
this[defer].reject();
});
this.builder.on('data', (data) => {
if (data.indexOf('PostgreSQL init process complete; ready for start up') === -1) {
return;
}
this.spin.stop(true);
this.message(
`${chalk.green('>')}
Container "${this.name}"
${chalk.green('started')}\n`.replace(/\s+/g, ' ')
);
});
return this;
}
}