mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-19 11:56:00 +00:00
deployDB shell WIP
This commit is contained in:
65
packages/api/src/utility/importDbModel.js
Normal file
65
packages/api/src/utility/importDbModel.js
Normal file
@@ -0,0 +1,65 @@
|
||||
const fs = require('fs-extra');
|
||||
const path = require('path');
|
||||
const yaml = require('js-yaml');
|
||||
const { tableInfoFromYaml, DatabaseAnalyser } = require('dbgate-tools');
|
||||
|
||||
async function importDbModel(inputDir) {
|
||||
const tablesYaml = [];
|
||||
|
||||
const model = DatabaseAnalyser.createEmptyStructure();
|
||||
|
||||
for (const file of await fs.readdir(inputDir)) {
|
||||
if (file.endsWith('.table.yaml') || file.endsWith('.sql')) {
|
||||
const content = await fs.readFile(path.join(inputDir, file), { 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,
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
model.tables = tablesYaml.map(table => tableInfoFromYaml(table, tablesYaml));
|
||||
|
||||
return model;
|
||||
}
|
||||
|
||||
module.exports = importDbModel;
|
||||
Reference in New Issue
Block a user