@opengis/fastify-table 1.4.47 → 1.4.48
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/server/plugins/grpc/grpc.js +74 -249
- package/server/plugins/grpc/office2pdf.js +38 -19
- package/server/plugins/migration/exec.migrations.js +43 -19
- package/server/plugins/migration/exec.sql.js +6 -4
- package/server/plugins/pg/funcs/init.js +1 -0
- package/server/plugins/redis/funcs/getRedis.js +1 -1
package/package.json
CHANGED
|
@@ -1,26 +1,33 @@
|
|
|
1
|
-
|
|
1
|
+
import path from 'node:path';
|
|
2
|
+
import { fileURLToPath } from 'url';
|
|
3
|
+
|
|
2
4
|
import grpc from '@grpc/grpc-js';
|
|
3
5
|
import protoLoader from '@grpc/proto-loader';
|
|
4
6
|
|
|
5
7
|
import config from '../../../config.js';
|
|
6
8
|
import logger from '../logger/getLogger.js';
|
|
7
9
|
|
|
8
|
-
|
|
10
|
+
const filename = fileURLToPath(import.meta.url);
|
|
11
|
+
const dirname = path.dirname(filename);
|
|
9
12
|
|
|
10
|
-
|
|
13
|
+
config.ready = config.ready || {};
|
|
11
14
|
|
|
12
15
|
// external ip not-accessible from internal network
|
|
13
|
-
const defaultConvertServerAddress = config.pg?.host?.startsWith('192.168.3')
|
|
16
|
+
const defaultConvertServerAddress = config.pg?.host?.startsWith?.('192.168.3')
|
|
17
|
+
? '192.168.1.96:4003'
|
|
18
|
+
: '193.239.152.181:44003';
|
|
14
19
|
|
|
15
|
-
const convertServerAddress = config.convertServerAddress
|
|
20
|
+
const convertServerAddress = config.convertServerAddress === true
|
|
21
|
+
? defaultConvertServerAddress
|
|
22
|
+
: config.convertServerAddress;
|
|
16
23
|
|
|
17
|
-
console.log('convertServerAddress: ', convertServerAddress, !!config.convertServerAddress);
|
|
24
|
+
if (config.local || config.debug) console.log('convertServerAddress: ', convertServerAddress, !!config.convertServerAddress);
|
|
18
25
|
|
|
19
|
-
const relpath = 'server/plugins/grpc/utils/convertp.proto';
|
|
20
|
-
const protoLocation = process.cwd().includes('fastify-table') ? relpath : `node_modules/@opengis/fastify-table/${relpath}`;
|
|
26
|
+
// const relpath = 'server/plugins/grpc/utils/convertp.proto';
|
|
27
|
+
// const protoLocation = process.cwd().includes('fastify-table') ? relpath : `node_modules/@opengis/fastify-table/${relpath}`;
|
|
21
28
|
|
|
22
29
|
const proto = grpc.loadPackageDefinition(
|
|
23
|
-
protoLoader.loadSync(
|
|
30
|
+
protoLoader.loadSync(`${dirname}/utils/convertp.proto`, {
|
|
24
31
|
keepCase: true,
|
|
25
32
|
longs: String,
|
|
26
33
|
enums: String,
|
|
@@ -29,267 +36,85 @@ const proto = grpc.loadPackageDefinition(
|
|
|
29
36
|
}),
|
|
30
37
|
);
|
|
31
38
|
|
|
32
|
-
const convertClient = new proto.Convert(
|
|
39
|
+
const convertClient = convertServerAddress ? new proto.Convert(
|
|
33
40
|
convertServerAddress,
|
|
34
41
|
grpc.credentials.createInsecure(),
|
|
35
42
|
{
|
|
36
43
|
'grpc.max_send_message_length': 512 * 1024 * 1024,
|
|
37
44
|
'grpc.max_receive_message_length': 512 * 1024 * 1024,
|
|
38
45
|
},
|
|
39
|
-
);
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
46
|
+
) : {};
|
|
47
|
+
|
|
48
|
+
if (convertServerAddress) {
|
|
49
|
+
convertClient.waitForReady(Date.now() + 5000, (err) => {
|
|
50
|
+
if (err) {
|
|
51
|
+
config.ready.convert = false;
|
|
52
|
+
console.error('Client connection timeout or failure:', err);
|
|
53
|
+
}
|
|
54
|
+
else {
|
|
55
|
+
config.ready.convert = true;
|
|
56
|
+
console.log('Client connected successfully.');
|
|
57
|
+
// You can now make RPC calls safely
|
|
58
|
+
}
|
|
59
|
+
});
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
const methodNames = [
|
|
63
|
+
'pdfMerge',
|
|
64
|
+
'htmlToPdf',
|
|
65
|
+
'csvToXls',
|
|
66
|
+
'jsonToXls',
|
|
67
|
+
'excelToJson',
|
|
68
|
+
'xmlToJson',
|
|
69
|
+
'htmlToDoc',
|
|
70
|
+
'htmlToImage',
|
|
71
|
+
'shpToGeojson',
|
|
72
|
+
'geojsonToShp',
|
|
73
|
+
'geojsonToGpkg',
|
|
74
|
+
'docToPDF',
|
|
75
|
+
'mergeImages',
|
|
76
|
+
'resizeImage',
|
|
77
|
+
'jsonToYaml',
|
|
78
|
+
'yamlToJson',
|
|
79
|
+
'log',
|
|
80
|
+
];
|
|
81
|
+
|
|
82
|
+
const wrapGrpcCall = (methodName) => async (data) => new Promise((res, rej) => {
|
|
83
|
+
if (!convertServerAddress) {
|
|
84
|
+
logger.file('grpc/convert', {
|
|
85
|
+
method: methodName,
|
|
86
|
+
error: 'grpc convert not set',
|
|
87
|
+
stack: new Error().stack,
|
|
88
|
+
});
|
|
89
|
+
return rej(new Error('grpc convert not set'));
|
|
45
90
|
}
|
|
46
|
-
|
|
47
|
-
config.ready.convert = true;
|
|
48
|
-
console.log('Client connected successfully.');
|
|
49
|
-
// You can now make RPC calls safely
|
|
50
|
-
}
|
|
51
|
-
});
|
|
52
|
-
|
|
53
|
-
// rewrite, merge??
|
|
54
|
-
const pdfMerge = async (data) => new Promise((res, rej) => {
|
|
55
|
-
convertClient.pdfMerge(data, (err, data1) => {
|
|
56
|
-
if (err) {
|
|
57
|
-
logger.file('grpc/convert', { error: err.toString(), stack: err.stack, ready: config.ready.convert });
|
|
58
|
-
if (!config.ready.convert) {
|
|
59
|
-
return rej(new Error('no grpc convert connection'));
|
|
60
|
-
}
|
|
61
|
-
return rej(err);
|
|
62
|
-
}
|
|
63
|
-
res(data1);
|
|
64
|
-
});
|
|
65
|
-
});
|
|
66
|
-
|
|
67
|
-
const htmlToPdf = async (data) => new Promise((res, rej) => {
|
|
68
|
-
convertClient.htmlToPdf(data, (err, data1) => {
|
|
69
|
-
if (err) {
|
|
70
|
-
logger.file('grpc/convert', { error: err.toString(), stack: err.stack, ready: config.ready.convert });
|
|
71
|
-
if (!config.ready.convert) {
|
|
72
|
-
return rej(new Error('no grpc convert connection'));
|
|
73
|
-
}
|
|
74
|
-
return rej(err);
|
|
75
|
-
}
|
|
76
|
-
res(data1);
|
|
77
|
-
});
|
|
78
|
-
});
|
|
79
|
-
|
|
80
|
-
const csvToXls = async (data) => new Promise((res, rej) => {
|
|
81
|
-
convertClient.csvToXls(data, (err, data1) => {
|
|
82
|
-
if (err) {
|
|
83
|
-
logger.file('grpc/convert', { error: err.toString(), stack: err.stack, ready: config.ready.convert });
|
|
84
|
-
if (!config.ready.convert) {
|
|
85
|
-
return rej(new Error('no grpc convert connection'));
|
|
86
|
-
}
|
|
87
|
-
return rej(err);
|
|
88
|
-
}
|
|
89
|
-
res(data1);
|
|
90
|
-
});
|
|
91
|
-
});
|
|
92
|
-
|
|
93
|
-
const jsonToXls = async (data) => new Promise((res, rej) => {
|
|
94
|
-
convertClient.jsonToXls(data, (err, data1) => {
|
|
95
|
-
if (err) {
|
|
96
|
-
logger.file('grpc/convert', { error: err.toString(), stack: err.stack, ready: config.ready.convert });
|
|
97
|
-
if (!config.ready.convert) {
|
|
98
|
-
return rej(new Error('no grpc convert connection'));
|
|
99
|
-
}
|
|
100
|
-
return rej(err);
|
|
101
|
-
}
|
|
102
|
-
res(data1);
|
|
103
|
-
});
|
|
104
|
-
});
|
|
105
|
-
|
|
106
|
-
const excelToJson = async (data) => new Promise((res, rej) => {
|
|
107
|
-
convertClient.excelToJson(data, (err, data1) => {
|
|
108
|
-
if (err) {
|
|
109
|
-
logger.file('grpc/convert', { error: err.toString(), stack: err.stack, ready: config.ready.convert });
|
|
110
|
-
if (!config.ready.convert) {
|
|
111
|
-
return rej(new Error('no grpc convert connection'));
|
|
112
|
-
}
|
|
113
|
-
return rej(err);
|
|
114
|
-
}
|
|
115
|
-
res(data1);
|
|
116
|
-
});
|
|
117
|
-
});
|
|
118
|
-
|
|
119
|
-
const xmlToJson = async (data) => new Promise((res, rej) => {
|
|
120
|
-
convertClient.xmlToJson(data, (err, data1) => {
|
|
121
|
-
if (err) {
|
|
122
|
-
logger.file('grpc/convert', { error: err.toString(), stack: err.stack, ready: config.ready.convert });
|
|
123
|
-
if (!config.ready.convert) {
|
|
124
|
-
return rej(new Error('no grpc convert connection'));
|
|
125
|
-
}
|
|
126
|
-
return rej(err);
|
|
127
|
-
}
|
|
128
|
-
res(data1);
|
|
129
|
-
});
|
|
130
|
-
});
|
|
131
|
-
|
|
132
|
-
const html2Doc = async (data) => new Promise((res, rej) => {
|
|
133
|
-
convertClient.htmlToDoc(data, (err, data1) => {
|
|
134
|
-
if (err) {
|
|
135
|
-
logger.file('grpc/convert', { error: err.toString(), stack: err.stack, ready: config.ready.convert });
|
|
136
|
-
if (!config.ready.convert) {
|
|
137
|
-
return rej(new Error('no grpc convert connection'));
|
|
138
|
-
}
|
|
139
|
-
return rej(err);
|
|
140
|
-
}
|
|
141
|
-
res(data1);
|
|
142
|
-
});
|
|
143
|
-
});
|
|
144
|
-
|
|
145
|
-
const htmlToImg = async (data) => new Promise((res, rej) => {
|
|
146
|
-
convertClient.htmlToImage(data, (err, data1) => {
|
|
147
|
-
if (err) {
|
|
148
|
-
logger.file('grpc/convert', { error: err.toString(), stack: err.stack, ready: config.ready.convert });
|
|
149
|
-
if (!config.ready.convert) {
|
|
150
|
-
return rej(new Error('no grpc convert connection'));
|
|
151
|
-
}
|
|
152
|
-
return rej(err);
|
|
153
|
-
}
|
|
154
|
-
res(data1);
|
|
155
|
-
});
|
|
156
|
-
});
|
|
157
|
-
|
|
158
|
-
const shpToGeojson = async (data) => new Promise((res, rej) => {
|
|
159
|
-
convertClient.shpToGeojson(data, (err, data1) => {
|
|
160
|
-
if (err) {
|
|
161
|
-
logger.file('grpc/convert', { error: err.toString(), stack: err.stack, ready: config.ready.convert });
|
|
162
|
-
if (!config.ready.convert) {
|
|
163
|
-
return rej(new Error('no grpc convert connection'));
|
|
164
|
-
}
|
|
165
|
-
return rej(err);
|
|
166
|
-
}
|
|
167
|
-
res(data1);
|
|
168
|
-
});
|
|
169
|
-
});
|
|
170
|
-
|
|
171
|
-
const geojsonToShp = async (data) => new Promise((res, rej) => {
|
|
172
|
-
convertClient.geojsonToShp(data, (err, data1) => {
|
|
173
|
-
if (err) {
|
|
174
|
-
logger.file('grpc/convert', { error: err.toString(), stack: err.stack, ready: config.ready.convert });
|
|
175
|
-
if (!config.ready.convert) {
|
|
176
|
-
return rej(new Error('no grpc convert connection'));
|
|
177
|
-
}
|
|
178
|
-
return rej(err);
|
|
179
|
-
}
|
|
180
|
-
res(data1);
|
|
181
|
-
});
|
|
182
|
-
});
|
|
183
|
-
|
|
184
|
-
const geojsonToGpkg = async (data) => new Promise((res, rej) => {
|
|
185
|
-
convertClient.geojsonToGpkg(data, (err, data1) => {
|
|
186
|
-
if (err) {
|
|
187
|
-
logger.file('grpc/convert', { error: err.toString(), stack: err.stack, ready: config.ready.convert });
|
|
188
|
-
if (!config.ready.convert) {
|
|
189
|
-
return rej(new Error('no grpc convert connection'));
|
|
190
|
-
}
|
|
191
|
-
return rej(err);
|
|
192
|
-
}
|
|
193
|
-
res(data1);
|
|
194
|
-
});
|
|
195
|
-
});
|
|
196
|
-
|
|
197
|
-
const docToPDF = async (data) => new Promise((res, rej) => {
|
|
198
|
-
convertClient.docToPDF(data, (err, data1) => {
|
|
199
|
-
if (err) {
|
|
200
|
-
logger.file('grpc/convert', { error: err.toString(), stack: err.stack, ready: config.ready.convert });
|
|
201
|
-
if (!config.ready.convert) {
|
|
202
|
-
return rej(new Error('no grpc convert connection'));
|
|
203
|
-
}
|
|
204
|
-
return rej(err);
|
|
205
|
-
}
|
|
206
|
-
res(data1);
|
|
207
|
-
});
|
|
208
|
-
});
|
|
209
|
-
|
|
210
|
-
const mergeImages = async (data) => new Promise((res, rej) => {
|
|
211
|
-
convertClient.mergeImages(data, (err, data1) => {
|
|
91
|
+
convertClient[methodName](data, (err, response) => {
|
|
212
92
|
if (err) {
|
|
213
|
-
logger.file('grpc/convert', {
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
res(data1);
|
|
220
|
-
});
|
|
221
|
-
});
|
|
93
|
+
logger.file('grpc/convert', {
|
|
94
|
+
method: methodName,
|
|
95
|
+
error: err.toString(),
|
|
96
|
+
stack: err.stack,
|
|
97
|
+
ready: config.ready.convert,
|
|
98
|
+
});
|
|
222
99
|
|
|
223
|
-
const resizeImage = async (data) => new Promise((res, rej) => {
|
|
224
|
-
convertClient.resizeImage(data, (err, data1) => {
|
|
225
|
-
if (err) {
|
|
226
|
-
logger.file('grpc/convert', { error: err.toString(), stack: err.stack, ready: config.ready.convert });
|
|
227
100
|
if (!config.ready.convert) {
|
|
228
101
|
return rej(new Error('no grpc convert connection'));
|
|
229
102
|
}
|
|
230
|
-
return rej(err);
|
|
231
|
-
}
|
|
232
|
-
res(data1);
|
|
233
|
-
});
|
|
234
|
-
});
|
|
235
103
|
|
|
236
|
-
const jsonToYaml = async (data) => new Promise((res, rej) => {
|
|
237
|
-
convertClient.jsonToYaml(data, (err, data1) => {
|
|
238
|
-
if (err) {
|
|
239
|
-
logger.file('grpc/convert', { error: err.toString(), stack: err.stack, ready: config.ready.convert });
|
|
240
|
-
if (!config.ready.convert) {
|
|
241
|
-
return rej(new Error('no grpc convert connection'));
|
|
242
|
-
}
|
|
243
104
|
return rej(err);
|
|
244
105
|
}
|
|
245
|
-
res(data1);
|
|
246
|
-
});
|
|
247
|
-
});
|
|
248
106
|
|
|
249
|
-
|
|
250
|
-
convertClient.yamlToJson(data, (err, data1) => {
|
|
251
|
-
if (err) {
|
|
252
|
-
logger.file('grpc/convert', { error: err.toString(), stack: err.stack, ready: config.ready.convert });
|
|
253
|
-
if (!config.ready.convert) {
|
|
254
|
-
return rej(new Error('no grpc convert connection'));
|
|
255
|
-
}
|
|
256
|
-
return rej(err);
|
|
257
|
-
}
|
|
258
|
-
res(data1);
|
|
107
|
+
return res(response);
|
|
259
108
|
});
|
|
260
109
|
});
|
|
261
110
|
|
|
262
|
-
const
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
if (!config.ready.convert) {
|
|
267
|
-
return rej(new Error('no grpc convert connection'));
|
|
268
|
-
}
|
|
269
|
-
return rej(err);
|
|
270
|
-
}
|
|
271
|
-
res(data1);
|
|
272
|
-
});
|
|
273
|
-
});
|
|
111
|
+
const grpcMethods = methodNames.reduce((acc, name) => {
|
|
112
|
+
acc[name] = wrapGrpcCall(name);
|
|
113
|
+
return acc;
|
|
114
|
+
}, {});
|
|
274
115
|
|
|
275
116
|
const getGRPC = () => ({
|
|
276
|
-
|
|
277
|
-
htmlToPdf,
|
|
278
|
-
csvToXls,
|
|
279
|
-
jsonToXls,
|
|
280
|
-
excelToJson,
|
|
281
|
-
xmlToJson,
|
|
282
|
-
html2Doc,
|
|
283
|
-
htmlToImg,
|
|
284
|
-
shpToGeojson,
|
|
285
|
-
geojsonToShp,
|
|
286
|
-
geojsonToGpkg,
|
|
287
|
-
docToPDF,
|
|
288
|
-
mergeImages,
|
|
289
|
-
resizeImage,
|
|
290
|
-
jsonToYaml,
|
|
291
|
-
yamlToJson,
|
|
292
|
-
log,
|
|
117
|
+
...grpcMethods,
|
|
293
118
|
convertServerAddress,
|
|
294
119
|
});
|
|
295
120
|
|
|
@@ -1,24 +1,33 @@
|
|
|
1
|
-
|
|
1
|
+
import path from 'node:path';
|
|
2
|
+
import { fileURLToPath } from 'url';
|
|
3
|
+
|
|
2
4
|
import grpc from '@grpc/grpc-js';
|
|
3
5
|
import protoLoader from '@grpc/proto-loader';
|
|
4
6
|
|
|
5
7
|
import config from '../../../config.js';
|
|
6
8
|
import logger from '../logger/getLogger.js';
|
|
7
9
|
|
|
10
|
+
const filename = fileURLToPath(import.meta.url);
|
|
11
|
+
const dirname = path.dirname(filename);
|
|
12
|
+
|
|
8
13
|
config.ready = config.ready || {};
|
|
9
14
|
|
|
10
15
|
// external ip not-accessible from internal network
|
|
11
|
-
const defaultOfficeConverterServerAddress = config.pg?.host?.startsWith('192.168.3')
|
|
16
|
+
const defaultOfficeConverterServerAddress = config.pg?.host?.startsWith?.('192.168.3')
|
|
17
|
+
? '192.168.1.96:4011'
|
|
18
|
+
: '193.239.152.181:44011';
|
|
12
19
|
|
|
13
|
-
const officeConverterServerAddress = config.officeConverterServerAddress
|
|
20
|
+
const officeConverterServerAddress = config.officeConverterServerAddress === true
|
|
21
|
+
? defaultOfficeConverterServerAddress
|
|
22
|
+
: config.officeConverterServerAddress;
|
|
14
23
|
|
|
15
24
|
console.log('officeConverterServerAddress: ', officeConverterServerAddress, !!config.officeConverterServerAddress);
|
|
16
25
|
|
|
17
|
-
const relpath = 'server/plugins/grpc/utils/office2pdf.proto';
|
|
18
|
-
const protoLocation = process.cwd().includes('fastify-table') ? relpath : `node_modules/@opengis/fastify-table/${relpath}`;
|
|
26
|
+
// const relpath = 'server/plugins/grpc/utils/office2pdf.proto';
|
|
27
|
+
// const protoLocation = process.cwd().includes('fastify-table') ? relpath : `node_modules/@opengis/fastify-table/${relpath}`;
|
|
19
28
|
|
|
20
29
|
const proto = grpc.loadPackageDefinition(
|
|
21
|
-
protoLoader.loadSync(
|
|
30
|
+
protoLoader.loadSync(`${dirname}/utils/office2pdf.proto`, {
|
|
22
31
|
keepCase: true,
|
|
23
32
|
longs: String,
|
|
24
33
|
enums: String,
|
|
@@ -27,28 +36,38 @@ const proto = grpc.loadPackageDefinition(
|
|
|
27
36
|
}),
|
|
28
37
|
);
|
|
29
38
|
|
|
30
|
-
const officeClient = new proto.OfficeConverterService(
|
|
39
|
+
const officeClient = officeConverterServerAddress ? new proto.OfficeConverterService(
|
|
31
40
|
officeConverterServerAddress,
|
|
32
41
|
grpc.credentials.createInsecure(),
|
|
33
42
|
{
|
|
34
43
|
'grpc.max_send_message_length': 512 * 1024 * 1024,
|
|
35
44
|
'grpc.max_receive_message_length': 512 * 1024 * 1024,
|
|
36
45
|
},
|
|
37
|
-
);
|
|
46
|
+
) : {};
|
|
38
47
|
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
}
|
|
48
|
+
if (officeConverterServerAddress) {
|
|
49
|
+
officeClient.waitForReady(Date.now() + 5000, (err) => {
|
|
50
|
+
if (err) {
|
|
51
|
+
config.ready.office2pdf = false;
|
|
52
|
+
console.error('Client connection timeout or failure:', err);
|
|
53
|
+
}
|
|
54
|
+
else {
|
|
55
|
+
config.ready.office2pdf = true;
|
|
56
|
+
console.log('Client connected successfully.');
|
|
57
|
+
// You can now make RPC calls safely
|
|
58
|
+
}
|
|
59
|
+
});
|
|
60
|
+
}
|
|
50
61
|
|
|
51
62
|
const officeToPdf = async (data) => new Promise((res, rej) => {
|
|
63
|
+
if (!officeConverterServerAddress) {
|
|
64
|
+
logger.file('grpc/convert', {
|
|
65
|
+
method: 'officeToPdf',
|
|
66
|
+
error: 'grpc office2pdf not set',
|
|
67
|
+
stack: new Error().stack,
|
|
68
|
+
});
|
|
69
|
+
return rej(new Error('grpc office2pdf not set'));
|
|
70
|
+
}
|
|
52
71
|
officeClient.OfficeToPdf(data, (err, data1) => {
|
|
53
72
|
if (err) {
|
|
54
73
|
logger.file('grpc/office2pdf', { error: err.toString(), stack: err.stack, ready: config.ready.office2pdf });
|
|
@@ -7,33 +7,57 @@ import pgClients from '../pg/pgClients.js';
|
|
|
7
7
|
// import getCallerDir from './get.caller.dir.js';
|
|
8
8
|
|
|
9
9
|
const time = Date.now();
|
|
10
|
+
const debug = config.debug || config.local;
|
|
10
11
|
|
|
11
12
|
export default async function execMigrations(dirPath, pg = pgClients.client, iscore = false) {
|
|
12
|
-
if (
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|| process.env.NODE_ENV === 'unit test'
|
|
17
|
-
) {
|
|
18
|
-
console.log('migrations skip', 'core: ', !!iscore, 'dir: ', dirPath || 'not specified');
|
|
19
|
-
return;
|
|
13
|
+
if (!dirPath) {
|
|
14
|
+
const txt = 'migrations skip: path not specified';
|
|
15
|
+
if (debug) console.warn(txt);
|
|
16
|
+
return txt;
|
|
20
17
|
}
|
|
21
18
|
|
|
22
|
-
|
|
19
|
+
if (config.migrationsCore === false && iscore) {
|
|
20
|
+
const txt = `migrations skip: core - ${dirPath}`;
|
|
21
|
+
if (debug) console.log(txt);
|
|
22
|
+
return txt;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
if (config.migrations === false && !iscore) {
|
|
26
|
+
const txt = `migrations skip: path - ${dirPath}`;
|
|
27
|
+
if (debug) console.log(txt);
|
|
28
|
+
return txt;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
if (process.env.NODE_ENV !== 'production' && (!config.migrations || !(config.migrationsCore && iscore))) {
|
|
32
|
+
const txt = `migrations skip: not a production environment - ${iscore ? 'core' : 'path'} : ${dirPath}`;
|
|
33
|
+
if (debug) console.log(txt);
|
|
34
|
+
return txt;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
if (debug) console.log('migrations start', dirPath, Date.now() - time);
|
|
23
38
|
|
|
24
39
|
const exists = existsSync(dirPath);
|
|
25
40
|
|
|
26
|
-
if (exists) {
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
41
|
+
if (!exists) {
|
|
42
|
+
const txt = `migrations skip: directory not found - ${dirPath}`;
|
|
43
|
+
if (debug) console.warn(txt);
|
|
44
|
+
return txt;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
// get directory sql file list
|
|
48
|
+
const content = readdirSync(dirPath, { withFileTypes: true })
|
|
49
|
+
?.filter((el) => el.isFile() && path.extname(el.name) === '.sql')
|
|
50
|
+
?.map((el) => el.name) || [];
|
|
31
51
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
52
|
+
// execute sql files
|
|
53
|
+
if (!content?.length) {
|
|
54
|
+
const txt = `migrations skip: no sql in specified directory - ${dirPath}`;
|
|
55
|
+
if (debug) console.warn(txt);
|
|
56
|
+
return txt;
|
|
36
57
|
}
|
|
37
58
|
|
|
38
|
-
|
|
59
|
+
await content.reduce((promise, filename) => promise.then(() => execSql(path.join(dirPath, filename), pg)), Promise.resolve());
|
|
60
|
+
if (debug) console.log('migrations success', dirPath, exists, Date.now() - time);
|
|
61
|
+
|
|
62
|
+
return 'success';
|
|
39
63
|
}
|
|
@@ -12,6 +12,8 @@ import getRedis from '../redis/funcs/getRedis.js';
|
|
|
12
12
|
|
|
13
13
|
const rclient = getRedis();
|
|
14
14
|
|
|
15
|
+
const debug = config.debug || config.local;
|
|
16
|
+
|
|
15
17
|
export default async function execSql(filepath, pg = pgClients.client) {
|
|
16
18
|
const start = Date.now();
|
|
17
19
|
|
|
@@ -33,16 +35,16 @@ export default async function execSql(filepath, pg = pgClients.client) {
|
|
|
33
35
|
const hash = createHash('md5').update(sql).digest('hex');
|
|
34
36
|
const hashes = config.redis ? await rclient.hgetall(`${pg?.options?.database}:migration-hashes`).then(obj => Object.keys(obj)) : [];
|
|
35
37
|
|
|
36
|
-
if (hashes.includes(hash) && !config.disableCache) {
|
|
38
|
+
if (hashes.includes(hash) && !config.disableCache && debug) {
|
|
37
39
|
console.log(filename, 'skip equal hash', Date.now() - start);
|
|
38
40
|
return null;
|
|
39
41
|
}
|
|
40
42
|
|
|
41
43
|
try {
|
|
42
|
-
console.log(filename, 'start', Date.now() - start);
|
|
44
|
+
if (debug) console.log(filename, 'start', Date.now() - start);
|
|
43
45
|
await pg.query(sql);
|
|
44
46
|
if (!config.disableCache && config.redis) await rclient.hset(`${pg?.options?.database}:migration-hashes`, hash, 1);
|
|
45
|
-
console.log(filename, 'finish', Date.now() - start);
|
|
47
|
+
if (debug) console.log(filename, 'finish', Date.now() - start);
|
|
46
48
|
logger.file('migration/success', {
|
|
47
49
|
filepath,
|
|
48
50
|
result: 'success',
|
|
@@ -51,7 +53,7 @@ export default async function execSql(filepath, pg = pgClients.client) {
|
|
|
51
53
|
return 'ok';
|
|
52
54
|
}
|
|
53
55
|
catch (err) {
|
|
54
|
-
console.
|
|
56
|
+
console.error(filename, 'error', err.toString(), Date.now() - start);
|
|
55
57
|
logger.file('migration/error', {
|
|
56
58
|
filepath,
|
|
57
59
|
result: 'error',
|