-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.js
160 lines (116 loc) · 3.84 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
'use strict';
const Util = require('util');
const MySQL = require('mysql');
const Hoek = require('@hapi/hoek');
const internals = {
pool: null
};
internals.attachConnection = async (request, h) => {
const connection = await internals.getConnection();
request.app.db = connection;
request.app.connection = connection;
// Since commit/rollback/beginTransaction uses the .query it will auto promisify them
request.app.connection.query = Util.promisify(connection.query);
return h.continue;
};
/**
* Returns a promise if no callback is provided
* Promise will resolve with a promisified connection.query
*
* @param {function(Error, Object)} callback
* @returns {Promise | void}
*/
exports.getConnection = async (callback) => {
if (!callback) {
const connection = await internals.getConnection();
// Since commit/rollback/beginTransaction uses the .query it will auto promisify them
connection.query = Util.promisify(connection.query);
return connection;
}
let connection;
try {
connection = await internals.getConnection();
}
catch (err) {
return callback(err);
}
return callback(null, connection);
};
internals.getConnection = () => {
Hoek.assert(internals.pool, 'No mysql pool found');
return new Promise((resolve, reject) => {
return internals.pool.getConnection((err, connection) => {
if (err) {
return reject(err);
}
return resolve(connection);
});
});
};
internals.response = (request) => {
// Since db and connection is the same connection we only need to release once here
if (request.app.db) {
request.app.db.release();
}
};
exports.stop = internals.stop = () => {
return new Promise((resolve, reject) => {
return internals.pool.end((err) => {
delete internals.pool;
if (err) {
return reject(err);
}
return resolve();
});
});
};
exports.init = internals.init = async (baseOptions = {}) => {
const hasOptions = Object.keys(baseOptions).length > 0;
if (!internals.pool && !hasOptions) {
throw new Error('No pool and no options to create one found, call `init` or `register` with options first');
}
if (internals.pool) {
// Calling init and then register with no options should work
if (!hasOptions) {
return;
}
// Error on trying to init multiple times
throw new Error('There is already a pool configured');
}
if (!Object.prototype.hasOwnProperty.call(baseOptions, 'host')) {
throw new Error('Options must include host property');
}
const options = Hoek.clone(baseOptions);
internals.pool = MySQL.createPool(options);
// Test connection
let connection;
try {
connection = await internals.getConnection();
}
catch (err) {
delete internals.pool;
throw err;
}
finally {
// Release test connection
if (connection) {
connection.release();
}
}
};
exports.plugin = {
pkg: require('../package.json'),
register: async function (server, baseOptions) {
await internals.init(baseOptions);
// Add connection to request object
server.ext('onPreAuth', internals.attachConnection);
// End connection after request finishes
server.events.on('response', internals.response);
// Try to close pool on server end
server.ext('onPostStop', internals.stop);
// Add getDb() function to `server`
server.decorate('server', 'getDb', exports.getConnection);
server.decorate('server', 'getConnection', exports.getConnection);
server.log(['hapi-plugin-mysql', 'database'], 'Connection to the database successful');
}
};