deploy db test WIP

This commit is contained in:
Jan Prochazka
2021-09-30 16:01:43 +02:00
parent e653b793d8
commit 0974c76fc6
3 changed files with 131 additions and 55 deletions

View File

@@ -1,70 +1,30 @@
const fs = require('fs-extra');
const path = require('path');
const yaml = require('js-yaml');
const { tableInfoFromYaml, DatabaseAnalyser } = require('dbgate-tools');
const { databaseInfoFromYamlModel, DatabaseAnalyser } = require('dbgate-tools');
const { startsWith } = require('lodash');
const { archivedir } = require('./directories');
async function importDbModel(inputDir) {
const tablesYaml = [];
const model = DatabaseAnalyser.createEmptyStructure();
const files = [];
const dir = inputDir.startsWith('archive:')
? path.join(archivedir(), inputDir.substring('archive:'.length))
: inputDir;
for (const file of await fs.readdir(dir)) {
if (file.endsWith('.table.yaml') || file.endsWith('.sql')) {
const content = await fs.readFile(path.join(dir, file), { encoding: 'utf-8' });
for (const name of await fs.readdir(dir)) {
if (name.endsWith('.table.yaml') || name.endsWith('.sql')) {
const text = await fs.readFile(path.join(dir, name), { encoding: 'utf-8' });
if (file.endsWith('.table.yaml')) {
const json = yaml.load(content);
tablesYaml.push(json);
}
if (file.endsWith('.view.sql')) {
model.views.push({
pureName: file.slice(0, -'.view.sql'.length),
createSql: content,
columns: [],
});
}
if (file.endsWith('.matview.sql')) {
model.matviews.push({
pureName: file.slice(0, -'.matview.sql'.length),
createSql: content,
columns: [],
});
}
if (file.endsWith('.proc.sql')) {
model.procedures.push({
pureName: file.slice(0, -'.proc.sql'.length),
createSql: content,
});
}
if (file.endsWith('.func.sql')) {
model.functions.push({
pureName: file.slice(0, -'.func.sql'.length),
createSql: content,
});
}
if (file.endsWith('.trigger.sql')) {
model.triggers.push({
pureName: file.slice(0, -'.trigger.sql'.length),
createSql: content,
});
}
files.push({
name,
text,
json: name.endsWith('.yaml') ? yaml.load(text) : null,
});
}
}
model.tables = tablesYaml.map(table => tableInfoFromYaml(table, tablesYaml));
return model;
return databaseInfoFromYamlModel(files);
}
module.exports = importDbModel;