This commit is contained in:
parent
1b0da71c9d
commit
bf1770dcc5
|
@ -1,10 +1,12 @@
|
||||||
const UserError = require('vn-loopback/util/user-error');
|
const UserError = require('vn-loopback/util/user-error');
|
||||||
const fs = require("fs");
|
const fs = require('fs-extra');
|
||||||
const fastCsv = require("fast-csv");
|
const fastCsv = require("fast-csv");
|
||||||
const axios = require('axios');
|
const axios = require('axios');
|
||||||
|
const path = require('path');
|
||||||
|
const { pipeline } = require('stream/promises');
|
||||||
|
|
||||||
module.exports = Self => {
|
module.exports = Self => {
|
||||||
Self.remoteMethod('syncData', {
|
Self.remoteMethodCtx('syncData', {
|
||||||
description: 'Sync schema data from external provider',
|
description: 'Sync schema data from external provider',
|
||||||
accessType: 'WRITE',
|
accessType: 'WRITE',
|
||||||
returns: {
|
returns: {
|
||||||
|
@ -17,9 +19,9 @@ module.exports = Self => {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
Self.syncData = async () => {
|
Self.syncData = async ctx => {
|
||||||
const models = Self.app.models;
|
const models = Self.app.models;
|
||||||
const tx = await Self.beginTransaction({});
|
let tx;
|
||||||
try {
|
try {
|
||||||
const tables = await models.TableMultiConfig.find();
|
const tables = await models.TableMultiConfig.find();
|
||||||
if (!tables?.length) throw new UserError(`No tables to sync`);
|
if (!tables?.length) throw new UserError(`No tables to sync`);
|
||||||
|
@ -32,25 +34,22 @@ module.exports = Self => {
|
||||||
const data = await getData(floricodeConfig.url, table.method, token);
|
const data = await getData(floricodeConfig.url, table.method, token);
|
||||||
if (!data) continue;
|
if (!data) continue;
|
||||||
|
|
||||||
await Self.rawSql(`TRUNCATE edi.??`, [table.toTable]);
|
tx = await Self.beginTransaction({});
|
||||||
|
const options = {transaction: tx, userId: ctx.req.accessToken.userId};
|
||||||
|
|
||||||
const ws = fs.createWriteStream("data.csv");
|
await Self.rawSql(`DELETE FROM edi.??`, [table.toTable]);
|
||||||
|
|
||||||
// Falta implementar la escritura de los datos en el archivo CSV
|
const ws = fs.createWriteStream(path.join(__dirname, `/${table.toTable}.csv`));
|
||||||
await fastCsv
|
await pipeline(fastCsv.write(data, { delimiter: ';' }), ws);
|
||||||
.write(JSON.parse(data[0]), { headers: true, delimiter: ";" })
|
const templatePath = path.join(__dirname, `./syncSql/${table.toTable}.sql`);
|
||||||
.pipe(ws);
|
|
||||||
|
|
||||||
const templatePath = path.join(__dirname, `./sql/${table.toTable}.sql`);
|
|
||||||
const sqlTemplate = await fs.readFile(templatePath, 'utf8');
|
const sqlTemplate = await fs.readFile(templatePath, 'utf8');
|
||||||
const filePath = path.join(tempDir, file);
|
await Self.rawSql(sqlTemplate, [ws.path], options);
|
||||||
await Self.rawSql(sqlTemplate, [filePath], options);
|
await fs.remove(ws.path);
|
||||||
await fs.remove(ws);
|
await table.updateAttribute('updated', Date.vnNew(), options);
|
||||||
await table.updateAttribute('udpated', Date.vnNew());
|
await tx.commit();
|
||||||
}
|
}
|
||||||
await tx.commit();
|
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
await tx.rollback();
|
if (tx) await tx.rollback();
|
||||||
throw e;
|
throw e;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -72,13 +71,13 @@ module.exports = Self => {
|
||||||
let data = [];
|
let data = [];
|
||||||
let count = 0;
|
let count = 0;
|
||||||
const maxCount = await getCount(url, method, token);
|
const maxCount = await getCount(url, method, token);
|
||||||
while (count < maxCount) {
|
while (count < maxCount) {
|
||||||
const request = await axios.get(`${url}/v2/${method}?$skip=${count}`, {
|
const request = await axios.get(`${url}/v2/${method}?$skip=${count}`, {
|
||||||
headers: {
|
headers: {
|
||||||
'Authorization': `Bearer ${token}`
|
'Authorization': `Bearer ${token}`
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
data.push(request.data.value);
|
data.push(...request.data.value);
|
||||||
count += request.data.value.length;
|
count += request.data.value.length;
|
||||||
}
|
}
|
||||||
return data;
|
return data;
|
||||||
|
|
|
@ -0,0 +1,14 @@
|
||||||
|
LOAD DATA LOCAL INFILE ?
|
||||||
|
INTO TABLE `edi`.`bucket`
|
||||||
|
FIELDS TERMINATED BY ';'
|
||||||
|
LINES TERMINATED BY '\n'
|
||||||
|
(@col1, @col2, @col3, @col4, @col5, @col6, @col7, @col8, @col9, @col10, @col11)
|
||||||
|
SET bucket_id = @col3,
|
||||||
|
bucket_type_id = @col5,
|
||||||
|
description = @col6,
|
||||||
|
x_size = @col7,
|
||||||
|
y_size = @col8,
|
||||||
|
z_size = @col9,
|
||||||
|
entry_date = STR_TO_DATE(@col2, '%Y-%m-%d'),
|
||||||
|
expiry_date = STR_TO_DATE(@col1, '%Y-%m-%d'),
|
||||||
|
change_date_time = STR_TO_DATE(REGEXP_REPLACE(@col11, '\\+.*$', ''), '%Y-%m-%dT%H:%i:%s')
|
|
@ -0,0 +1,10 @@
|
||||||
|
LOAD DATA LOCAL INFILE ?
|
||||||
|
INTO TABLE `edi`.`bucket_type`
|
||||||
|
FIELDS TERMINATED BY ';'
|
||||||
|
LINES TERMINATED BY '\n'
|
||||||
|
(@col1, @col2, @col3, @col4, @col5)
|
||||||
|
SET bucket_type_id = @col3,
|
||||||
|
description = @col4,
|
||||||
|
entry_date = STR_TO_DATE(@col2, '%Y-%m-%d'),
|
||||||
|
expiry_date = STR_TO_DATE(@col1, '%Y-%m-%d'),
|
||||||
|
change_date_time = STR_TO_DATE(REGEXP_REPLACE(@col5, '\\+.*$', ''), '%Y-%m-%dT%H:%i:%s')
|
|
@ -0,0 +1,11 @@
|
||||||
|
LOAD DATA LOCAL INFILE ?
|
||||||
|
INTO TABLE `edi`.`feature`
|
||||||
|
FIELDS TERMINATED BY ';'
|
||||||
|
LINES TERMINATED BY '\n'
|
||||||
|
(@col1, @col2, @col3, @col4, @col5, @col6)
|
||||||
|
SET item_id = @col3,
|
||||||
|
feature_type_id = @col4,
|
||||||
|
feature_value = @col5,
|
||||||
|
entry_date = STR_TO_DATE(@col2, '%Y-%m-%d'),
|
||||||
|
expiry_date = STR_TO_DATE(@col1, '%Y-%m-%d'),
|
||||||
|
change_date_time = STR_TO_DATE(REGEXP_REPLACE(@col6, '\\+.*$', ''), '%Y-%m-%dT%H:%i:%s')
|
|
@ -0,0 +1,10 @@
|
||||||
|
LOAD DATA LOCAL INFILE ?
|
||||||
|
INTO TABLE `edi`.`genus`
|
||||||
|
FIELDS TERMINATED BY ';'
|
||||||
|
LINES TERMINATED BY '\n'
|
||||||
|
(@col1, @col2, @col3, @col4, @col5)
|
||||||
|
SET genus_id = @col3,
|
||||||
|
latin_genus_name = @col4,
|
||||||
|
entry_date = STR_TO_DATE(@col2, '%Y-%m-%d'),
|
||||||
|
expiry_date = STR_TO_DATE(@col1, '%Y-%m-%d'),
|
||||||
|
change_date_time = STR_TO_DATE(REGEXP_REPLACE(@col5, '\\+.*$', ''), '%Y-%m-%dT%H:%i:%s')
|
|
@ -0,0 +1,14 @@
|
||||||
|
LOAD DATA LOCAL INFILE ?
|
||||||
|
INTO TABLE `edi`.`item`
|
||||||
|
CHARACTER SET ascii
|
||||||
|
FIELDS TERMINATED BY ';'
|
||||||
|
LINES TERMINATED BY '\n'
|
||||||
|
(@col1, @col2, @col3, @col4, @col5, @col6, @col7, @col8, @col9, @col10, @col11)
|
||||||
|
SET id = @col3,
|
||||||
|
product_name = @col5,
|
||||||
|
name = @col6,
|
||||||
|
plant_id = @col8,
|
||||||
|
group_id = @col10,
|
||||||
|
entry_date = STR_TO_DATE(@col2, '%Y-%m-%d'),
|
||||||
|
expiry_date = STR_TO_DATE(@col1, '%Y-%m-%d'),
|
||||||
|
change_date_time = STR_TO_DATE(REGEXP_REPLACE(@col11, '\\+.*$', ''), '%Y-%m-%dT%H:%i:%s')
|
|
@ -0,0 +1,12 @@
|
||||||
|
LOAD DATA LOCAL INFILE ?
|
||||||
|
INTO TABLE `edi`.`item_feature`
|
||||||
|
FIELDS TERMINATED BY ';'
|
||||||
|
LINES TERMINATED BY '\n'
|
||||||
|
(@col1, @col2, @col3, @col4, @col5, @col6, @col7)
|
||||||
|
SET item_id = @col3,
|
||||||
|
feature = @col4,
|
||||||
|
regulation_type = @col5,
|
||||||
|
presentation_order = @col6,
|
||||||
|
entry_date = STR_TO_DATE(@col2, '%Y-%m-%d'),
|
||||||
|
expiry_date = STR_TO_DATE(@col1, '%Y-%m-%d'),
|
||||||
|
change_date_time = STR_TO_DATE(REGEXP_REPLACE(@col7, '\\+.*$', ''), '%Y-%m-%dT%H:%i:%s')
|
|
@ -0,0 +1,10 @@
|
||||||
|
LOAD DATA LOCAL INFILE ?
|
||||||
|
INTO TABLE `edi`.`item_group`
|
||||||
|
FIELDS TERMINATED BY ';'
|
||||||
|
LINES TERMINATED BY '\n'
|
||||||
|
(@col1, @col2, @col3, @col4, @col5)
|
||||||
|
SET group_code = @col3,
|
||||||
|
dutch_group_description = @col4,
|
||||||
|
entry_date = STR_TO_DATE(@col2, '%Y-%m-%d'),
|
||||||
|
expiry_date = STR_TO_DATE(@col1, '%Y-%m-%d'),
|
||||||
|
change_date_time = STR_TO_DATE(REGEXP_REPLACE(@col5, '\\+.*$', ''), '%Y-%m-%dT%H:%i:%s')
|
|
@ -0,0 +1,11 @@
|
||||||
|
LOAD DATA LOCAL INFILE ?
|
||||||
|
INTO TABLE `edi`.`plant`
|
||||||
|
FIELDS TERMINATED BY ';'
|
||||||
|
LINES TERMINATED BY '\n'
|
||||||
|
(@col1, @col2, @col3, @col4, @col5, @col6, @col7, @col8)
|
||||||
|
SET plant_id = @col4,
|
||||||
|
genus_id = @col5,
|
||||||
|
specie_id = @col6,
|
||||||
|
entry_date = STR_TO_DATE(@col2, '%Y-%m-%d'),
|
||||||
|
expiry_date = STR_TO_DATE(@col1, '%Y-%m-%d'),
|
||||||
|
change_date_time = STR_TO_DATE(REGEXP_REPLACE(@col8, '\\+.*$', ''), '%Y-%m-%dT%H:%i:%s')
|
|
@ -0,0 +1,11 @@
|
||||||
|
LOAD DATA LOCAL INFILE ?
|
||||||
|
INTO TABLE `edi`.`specie`
|
||||||
|
FIELDS TERMINATED BY ';'
|
||||||
|
LINES TERMINATED BY '\n'
|
||||||
|
(@col1, @col2, @col3, @col4, @col5, @col6)
|
||||||
|
SET specie_id = @col3,
|
||||||
|
genus_id = @col4,
|
||||||
|
latin_species_name = @col5,
|
||||||
|
entry_date = STR_TO_DATE(@col2, '%Y-%m-%d'),
|
||||||
|
expiry_date = STR_TO_DATE(@col1, '%Y-%m-%d'),
|
||||||
|
change_date_time = STR_TO_DATE(REGEXP_REPLACE(@col6, '\\+.*$', ''), '%Y-%m-%dT%H:%i:%s')
|
|
@ -0,0 +1,11 @@
|
||||||
|
LOAD DATA LOCAL INFILE ?
|
||||||
|
INTO TABLE `edi`.`supplier`
|
||||||
|
FIELDS TERMINATED BY ';'
|
||||||
|
LINES TERMINATED BY '\n'
|
||||||
|
(@col1, @col2, @col3, @col4, @col5, @col6, @col7, @col8, @col9, @col10, @col11, @col12, @col13, @col14, @col15, @col16, @col17, @col18, @col19, @col20, @col21)
|
||||||
|
SET GLNAddressCode = @col3,
|
||||||
|
supplier_id = @col9,
|
||||||
|
company_name = @col4,
|
||||||
|
entry_date = STR_TO_DATE(@col2, '%Y-%m-%d'),
|
||||||
|
expiry_date = STR_TO_DATE(@col1, '%Y-%m-%d'),
|
||||||
|
change_date_time = STR_TO_DATE(REGEXP_REPLACE(@col17, '\\+.*$', ''), '%Y-%m-%dT%H:%i:%s')
|
|
@ -0,0 +1,10 @@
|
||||||
|
LOAD DATA LOCAL INFILE ?
|
||||||
|
INTO TABLE `edi`.`type`
|
||||||
|
FIELDS TERMINATED BY ';'
|
||||||
|
LINES TERMINATED BY '\n' (@col1, @col2, @col3, @col4, @col5, @col6)
|
||||||
|
SET type_id = @col3,
|
||||||
|
type_group_id = @col4,
|
||||||
|
description = @col5,
|
||||||
|
entry_date = STR_TO_DATE(@col2, '%Y-%m-%d'),
|
||||||
|
expiry_date = STR_TO_DATE(@col1, '%Y-%m-%d'),
|
||||||
|
change_date_time = STR_TO_DATE(REGEXP_REPLACE(@col6, '\\+.*$', ''), '%Y-%m-%dT%H:%i:%s')
|
|
@ -0,0 +1,10 @@
|
||||||
|
LOAD DATA LOCAL INFILE ?
|
||||||
|
INTO TABLE `edi`.`value`
|
||||||
|
FIELDS TERMINATED BY ';'
|
||||||
|
LINES TERMINATED BY '\n' (@col1, @col2, @col3, @col4, @col5, @col6)
|
||||||
|
SET type_id = @col3,
|
||||||
|
type_value = @col4,
|
||||||
|
type_description = @col5,
|
||||||
|
entry_date = STR_TO_DATE(@col2, '%Y-%m-%d'),
|
||||||
|
expiry_date = STR_TO_DATE(@col1, '%Y-%m-%d'),
|
||||||
|
change_date_time = STR_TO_DATE(REGEXP_REPLACE(@col6, '\\+.*$', ''), '%Y-%m-%dT%H:%i:%s')
|
|
@ -32,7 +32,7 @@ UPDATE edi.tableMultiConfig
|
||||||
AND fileName='FB';
|
AND fileName='FB';
|
||||||
|
|
||||||
UPDATE edi.tableMultiConfig
|
UPDATE edi.tableMultiConfig
|
||||||
SET id = 3, method = 'VBN/RegulatoryFeatureType'
|
SET id = 3, method = 'VBN/ProductFeature'
|
||||||
WHERE id IS NULL
|
WHERE id IS NULL
|
||||||
AND fileName='FF';
|
AND fileName='FF';
|
||||||
|
|
||||||
|
@ -47,7 +47,7 @@ UPDATE edi.tableMultiConfig
|
||||||
AND fileName='FP';
|
AND fileName='FP';
|
||||||
|
|
||||||
UPDATE edi.tableMultiConfig
|
UPDATE edi.tableMultiConfig
|
||||||
SET id = 6, method = 'VBN/ProductFeature'
|
SET id = 6, method = 'VBN/RegulatoryFeatureType'
|
||||||
WHERE id IS NULL
|
WHERE id IS NULL
|
||||||
AND fileName='FY';
|
AND fileName='FY';
|
||||||
|
|
||||||
|
@ -72,7 +72,7 @@ UPDATE edi.tableMultiConfig
|
||||||
AND fileName='CC';
|
AND fileName='CC';
|
||||||
|
|
||||||
UPDATE edi.tableMultiConfig
|
UPDATE edi.tableMultiConfig
|
||||||
SET id = 11, method = 'FEC/FeatureType'
|
SET id = 11, method = 'VBN/FeatureType'
|
||||||
WHERE id IS NULL
|
WHERE id IS NULL
|
||||||
AND fileName='FE';
|
AND fileName='FE';
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue