mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 04:26:01 +00:00
293 lines
11 KiB
JavaScript
293 lines
11 KiB
JavaScript
const _ = require('lodash');
|
|
const sql = require('./sql');
|
|
|
|
const { DatabaseAnalyser, isTypeString, isTypeNumeric } = global.DBGATE_PACKAGES['dbgate-tools'];
|
|
|
|
function quoteDefaultValue(value) {
|
|
if (value == null) return value;
|
|
if (!isNaN(value) && !isNaN(parseFloat(value))) return value;
|
|
if (_.isString(value) && value.startsWith('CURRENT_')) return value;
|
|
// keep NULL as default value. Is this really necessary?
|
|
if (_.isString(value) && value?.toUpperCase() == 'NULL') return 'NULL';
|
|
if (_.isString(value)) {
|
|
return `'${value.replace("'", "\\'")}'`;
|
|
}
|
|
return value;
|
|
}
|
|
|
|
function normalizeTypeName(typeName) {
|
|
if (/int\(\d+\)/.test(typeName)) return 'int';
|
|
return typeName;
|
|
}
|
|
|
|
function getColumnInfo(
|
|
{
|
|
isNullable,
|
|
extra,
|
|
columnName,
|
|
dataType,
|
|
charMaxLength,
|
|
numericPrecision,
|
|
numericScale,
|
|
defaultValue,
|
|
columnComment,
|
|
columnType,
|
|
},
|
|
driver
|
|
) {
|
|
const { quoteDefaultValues } = driver.__analyserInternals;
|
|
let optionsInfo = {};
|
|
|
|
const columnTypeTokens = _.isString(columnType) ? columnType.split(' ').map(x => x.trim().toLowerCase()) : [];
|
|
let fullDataType = dataType;
|
|
if (charMaxLength && isTypeString(dataType)) fullDataType = `${dataType}(${charMaxLength})`;
|
|
else if (numericPrecision && numericScale && isTypeNumeric(dataType))
|
|
fullDataType = `${dataType}(${numericPrecision},${numericScale})`;
|
|
else {
|
|
const optionsTypeParts = columnType.match(/^(enum|set)\((.+)\)/i);
|
|
if (optionsTypeParts?.length) {
|
|
fullDataType = columnType;
|
|
optionsInfo.options = optionsTypeParts[2].split(',').map(option => option.substring(1, option.length - 1));
|
|
optionsInfo.canSelectMultipleOptions = optionsTypeParts[1] == 'set';
|
|
}
|
|
}
|
|
|
|
return {
|
|
notNull: !isNullable || isNullable == 'NO' || isNullable == 'no',
|
|
autoIncrement: !!(extra && extra.toLowerCase().includes('auto_increment')),
|
|
columnName,
|
|
columnComment,
|
|
dataType: fullDataType,
|
|
defaultValue: quoteDefaultValues ? quoteDefaultValue(defaultValue) : defaultValue,
|
|
isUnsigned: columnTypeTokens.includes('unsigned'),
|
|
isZerofill: columnTypeTokens.includes('zerofill'),
|
|
...optionsInfo,
|
|
};
|
|
}
|
|
|
|
function getParametersSqlString(parameters = []) {
|
|
if (!parameters?.length) return '';
|
|
|
|
return parameters
|
|
.map(i => {
|
|
const mode = i.parameterMode ? `${i.parameterMode} ` : '';
|
|
const dataType = i.dataType ? ` ${i.dataType.toUpperCase()}` : '';
|
|
return mode + i.parameterName + dataType;
|
|
})
|
|
.join(', ');
|
|
}
|
|
|
|
class Analyser extends DatabaseAnalyser {
|
|
constructor(dbhan, driver, version) {
|
|
super(dbhan, driver, version);
|
|
}
|
|
|
|
createQuery(resFileName, typeFields, replacements = {}) {
|
|
let res = sql[resFileName];
|
|
res = res.replace('#DATABASE#', this.dbhan.database);
|
|
return super.createQuery(res, typeFields, replacements);
|
|
}
|
|
|
|
getRequestedViewNames(allViewNames) {
|
|
return this.getRequestedObjectPureNames('views', allViewNames);
|
|
}
|
|
|
|
async _computeSingleObjectId() {
|
|
const { pureName } = this.singleObjectFilter;
|
|
this.singleObjectId = pureName;
|
|
}
|
|
|
|
async getViewTexts(allViewNames) {
|
|
const res = {};
|
|
|
|
const views = await this.analyserQuery('viewTexts', ['views']);
|
|
for (const view of views.rows) {
|
|
res[view.pureName] = `CREATE VIEW \`${view.pureName}\` AS ${view.viewDefinition}`;
|
|
}
|
|
|
|
// for (const viewName of this.getRequestedViewNames(allViewNames)) {
|
|
// try {
|
|
// const resp = await this.driver.query(this.pool, `SHOW CREATE VIEW \`${viewName}\``);
|
|
// res[viewName] = resp.rows[0]['Create View'];
|
|
// } catch (err) {
|
|
// console.log('ERROR', err);
|
|
// res[viewName] = `${err}`;
|
|
// }
|
|
// }
|
|
return res;
|
|
}
|
|
|
|
async _runAnalysis() {
|
|
this.feedback({ analysingMessage: 'Loading tables' });
|
|
const tables = await this.analyserQuery('tables', ['tables']);
|
|
this.feedback({ analysingMessage: 'Loading columns' });
|
|
const columns = await this.analyserQuery('columns', ['tables', 'views']);
|
|
this.feedback({ analysingMessage: 'Loading primary keys' });
|
|
const pkColumns = await this.analyserQuery('primaryKeys', ['tables']);
|
|
this.feedback({ analysingMessage: 'Loading foreign keys' });
|
|
const fkColumns = await this.analyserQuery('foreignKeys', ['tables']);
|
|
this.feedback({ analysingMessage: 'Loading views' });
|
|
const views = await this.analyserQuery('views', ['views']);
|
|
this.feedback({ analysingMessage: 'Loading programmables' });
|
|
const programmables = await this.analyserQuery('programmables', ['procedures', 'functions']);
|
|
|
|
const parameters = await this.analyserQuery('parameters', ['procedures', 'functions']);
|
|
|
|
const functionParameters = parameters.rows.filter(x => x.routineType == 'FUNCTION');
|
|
const functionNameToParameters = functionParameters.reduce((acc, row) => {
|
|
if (!acc[row.pureName]) acc[row.pureName] = [];
|
|
|
|
acc[row.pureName].push({
|
|
...row,
|
|
dataType: normalizeTypeName(row.dataType),
|
|
});
|
|
return acc;
|
|
}, {});
|
|
|
|
const procedureParameters = parameters.rows.filter(x => x.routineType == 'PROCEDURE');
|
|
const procedureNameToParameters = procedureParameters.reduce((acc, row) => {
|
|
if (!acc[row.pureName]) acc[row.pureName] = [];
|
|
|
|
acc[row.pureName].push({
|
|
...row,
|
|
dataType: normalizeTypeName(row.dataType),
|
|
});
|
|
return acc;
|
|
}, {});
|
|
|
|
this.feedback({ analysingMessage: 'Loading view texts' });
|
|
const viewTexts = await this.getViewTexts(views.rows.map(x => x.pureName));
|
|
this.feedback({ analysingMessage: 'Loading indexes' });
|
|
const indexes = await this.analyserQuery('indexes', ['tables']);
|
|
this.feedback({ analysingMessage: 'Loading uniques' });
|
|
|
|
const triggers = await this.analyserQuery('triggers');
|
|
|
|
const uniqueNames = await this.analyserQuery('uniqueNames', ['tables']);
|
|
this.feedback({ analysingMessage: 'Finalizing DB structure' });
|
|
|
|
const res = {
|
|
tables: tables.rows.map(table => ({
|
|
...table,
|
|
objectId: table.pureName,
|
|
contentHash: _.isDate(table.modifyDate) ? table.modifyDate.toISOString() : table.modifyDate,
|
|
columns: columns.rows.filter(col => col.pureName == table.pureName).map(x => getColumnInfo(x, this.driver)),
|
|
primaryKey: DatabaseAnalyser.extractPrimaryKeys(table, pkColumns.rows),
|
|
foreignKeys: DatabaseAnalyser.extractForeignKeys(table, fkColumns.rows),
|
|
tableRowCount: table.tableRowCount,
|
|
indexes: _.uniqBy(
|
|
indexes.rows.filter(
|
|
idx =>
|
|
idx.tableName == table.pureName && !uniqueNames.rows.find(x => x.constraintName == idx.constraintName)
|
|
),
|
|
'constraintName'
|
|
).map(idx => ({
|
|
..._.pick(idx, ['constraintName', 'indexType']),
|
|
isUnique: !idx.nonUnique,
|
|
columns: indexes.rows
|
|
.filter(col => col.tableName == idx.tableName && col.constraintName == idx.constraintName)
|
|
.map(col => ({
|
|
..._.pick(col, ['columnName', 'isDescending']),
|
|
})),
|
|
})),
|
|
|
|
uniques: _.uniqBy(
|
|
indexes.rows.filter(
|
|
idx => idx.tableName == table.pureName && uniqueNames.rows.find(x => x.constraintName == idx.constraintName)
|
|
),
|
|
'constraintName'
|
|
).map(idx => ({
|
|
..._.pick(idx, ['constraintName']),
|
|
columns: indexes.rows
|
|
.filter(col => col.tableName == idx.tableName && col.constraintName == idx.constraintName)
|
|
.map(col => ({
|
|
..._.pick(col, ['columnName']),
|
|
})),
|
|
})),
|
|
})),
|
|
views: views.rows.map(view => ({
|
|
...view,
|
|
objectId: view.pureName,
|
|
contentHash: _.isDate(view.modifyDate) ? view.modifyDate.toISOString() : view.modifyDate,
|
|
columns: columns.rows.filter(col => col.pureName == view.pureName).map(x => getColumnInfo(x, this.driver)),
|
|
createSql: viewTexts[view.pureName],
|
|
requiresFormat: true,
|
|
})),
|
|
procedures: programmables.rows
|
|
.filter(x => x.objectType == 'PROCEDURE')
|
|
.map(x => _.omit(x, ['objectType']))
|
|
.map(x => ({
|
|
...x,
|
|
createSql: `DELIMITER //\n\nCREATE PROCEDURE \`${x.pureName}\`(${getParametersSqlString(
|
|
procedureNameToParameters[x.pureName]
|
|
)})\n${x.routineDefinition}\n\nDELIMITER ;\n`,
|
|
objectId: x.pureName,
|
|
contentHash: _.isDate(x.modifyDate) ? x.modifyDate.toISOString() : x.modifyDate,
|
|
parameters: procedureNameToParameters[x.pureName],
|
|
})),
|
|
functions: programmables.rows
|
|
.filter(x => x.objectType == 'FUNCTION')
|
|
.map(x => _.omit(x, ['objectType']))
|
|
.map(x => ({
|
|
...x,
|
|
createSql: `CREATE FUNCTION \`${x.pureName}\`(${getParametersSqlString(
|
|
functionNameToParameters[x.pureName]?.filter(i => i.parameterMode !== 'RETURN')
|
|
)})\nRETURNS ${x.returnDataType} ${x.isDeterministic == 'YES' ? 'DETERMINISTIC' : 'NOT DETERMINISTIC'}\n${
|
|
x.routineDefinition
|
|
}`,
|
|
objectId: x.pureName,
|
|
contentHash: _.isDate(x.modifyDate) ? x.modifyDate.toISOString() : x.modifyDate,
|
|
parameters: functionNameToParameters[x.pureName],
|
|
})),
|
|
triggers: triggers.rows.map(row => ({
|
|
objectId: row.triggerName,
|
|
contentHash: row.modifyDate,
|
|
triggerName: row.triggerName,
|
|
eventType: row.triggerEvent,
|
|
triggerTiming: row.triggerTiming,
|
|
schemaName: row.schemaName,
|
|
tableName: row.tableName,
|
|
createSql: row.definition,
|
|
})),
|
|
};
|
|
this.feedback({ analysingMessage: null });
|
|
return res;
|
|
}
|
|
|
|
async _getFastSnapshot() {
|
|
const tableModificationsQueryData = await this.analyserQuery('tableModifications');
|
|
const procedureModificationsQueryData = await this.analyserQuery('procedureModifications');
|
|
const functionModificationsQueryData = await this.analyserQuery('functionModifications');
|
|
|
|
return {
|
|
tables: tableModificationsQueryData.rows
|
|
.filter(x => x.objectType == 'BASE TABLE')
|
|
.map(x => ({
|
|
...x,
|
|
objectId: x.pureName,
|
|
contentHash: _.isDate(x.modifyDate) ? x.modifyDate.toISOString() : x.modifyDate,
|
|
tableRowCount: x.tableRowCount,
|
|
})),
|
|
views: tableModificationsQueryData.rows
|
|
.filter(x => x.objectType == 'VIEW')
|
|
.map(x => ({
|
|
...x,
|
|
objectId: x.pureName,
|
|
contentHash: _.isDate(x.modifyDate) ? x.modifyDate.toISOString() : x.modifyDate,
|
|
})),
|
|
procedures: procedureModificationsQueryData.rows.map(x => ({
|
|
contentHash: x.Modified,
|
|
objectId: x.Name,
|
|
pureName: x.Name,
|
|
})),
|
|
functions: functionModificationsQueryData.rows.map(x => ({
|
|
contentHash: x.Modified,
|
|
objectId: x.Name,
|
|
pureName: x.Name,
|
|
})),
|
|
};
|
|
}
|
|
}
|
|
|
|
module.exports = Analyser;
|