updates
This commit is contained in:
parent
84e6d59a4a
commit
dbd66baac3
154
engine/db/add.js
Normal file
154
engine/db/add.js
Normal file
@ -0,0 +1,154 @@
|
|||||||
|
/**
|
||||||
|
* Imports: Handle imports
|
||||||
|
*/
|
||||||
|
|
||||||
|
const encrypt = require("../../functions/encrypt");
|
||||||
|
const handler = require("../utils/handler");
|
||||||
|
const sanitizeHtml = require("sanitize-html");
|
||||||
|
const sanitizeHtmlOptions = require("../utils/sanitizeHtmlOptions");
|
||||||
|
|
||||||
|
/**
|
||||||
|
* add Function
|
||||||
|
* ==============================================================================
|
||||||
|
* @description Description
|
||||||
|
*
|
||||||
|
* @param {object} params - An object containing the function parameters.
|
||||||
|
* @param {string} params.dbFullName - Database full name
|
||||||
|
* @param {string} params.tableName - Table name
|
||||||
|
* @param {object} params.data - Data to add
|
||||||
|
* @param {DSQL_TableSchemaType?} params.tableSchema - Table schema
|
||||||
|
* @param {string?} params.duplicateColumnName - Duplicate column name
|
||||||
|
* @param {string?} params.duplicateColumnValue - Duplicate column value
|
||||||
|
* @param {boolean?} params.update - Update this row if it exists
|
||||||
|
* @param {string?} params.dbHost - Database host
|
||||||
|
* @param {string?} params.dbPassword - Database password
|
||||||
|
* @param {string?} params.dbUsername - Database username
|
||||||
|
* @param {string?} params.encryptionKey - Encryption key
|
||||||
|
* @param {string?} params.encryptionSalt - Encryption salt
|
||||||
|
*
|
||||||
|
* @returns {object}
|
||||||
|
*/
|
||||||
|
module.exports = async function add({ dbFullName, tableName, data, tableSchema, duplicateColumnName, duplicateColumnValue, update, dbHost, dbPassword, dbUsername, encryptionKey, encryptionSalt }) {
|
||||||
|
/**
|
||||||
|
* Initialize variables
|
||||||
|
*/
|
||||||
|
|
||||||
|
////////////////////////////////////////
|
||||||
|
////////////////////////////////////////
|
||||||
|
////////////////////////////////////////
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handle function logic
|
||||||
|
*/
|
||||||
|
if (duplicateColumnName && typeof duplicateColumnName === "string") {
|
||||||
|
const duplicateValue = await handler({
|
||||||
|
queryString: `SELECT * FROM \`${tableName}\` WHERE \`${duplicateColumnName}\`=?`,
|
||||||
|
queryValuesArray: [duplicateColumnValue],
|
||||||
|
database: dbFullName,
|
||||||
|
dbHost,
|
||||||
|
dbPassword,
|
||||||
|
dbUsername,
|
||||||
|
});
|
||||||
|
|
||||||
|
if (duplicateValue && duplicateValue[0] && !update) {
|
||||||
|
return null;
|
||||||
|
} else if (duplicateValue && duplicateValue[0] && update) {
|
||||||
|
return await update();
|
||||||
|
}
|
||||||
|
} else if (duplicateColumnName && typeof duplicateColumnName === "object" && duplicateColumnValue && typeof duplicateColumnValue === "object") {
|
||||||
|
const duplicateArray = duplicateColumnName.map((dupColName, index) => {
|
||||||
|
return `\`${dupColName}\`='${duplicateColumnValue[index]}'`;
|
||||||
|
});
|
||||||
|
|
||||||
|
const duplicateValue = await handler({
|
||||||
|
queryString: `SELECT * FROM ${tableName} WHERE ${duplicateArray.join(" AND ")}`,
|
||||||
|
database: dbFullName,
|
||||||
|
});
|
||||||
|
|
||||||
|
if (duplicateValue && duplicateValue[0] && !update) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Declare variables
|
||||||
|
*
|
||||||
|
* @description Declare "results" variable
|
||||||
|
*/
|
||||||
|
const dataKeys = Object.keys(data);
|
||||||
|
|
||||||
|
let insertKeysArray = [];
|
||||||
|
let insertValuesArray = [];
|
||||||
|
|
||||||
|
for (let i = 0; i < dataKeys.length; i++) {
|
||||||
|
const dataKey = dataKeys[i];
|
||||||
|
let value = data[dataKey];
|
||||||
|
|
||||||
|
const targetFieldSchemaArray = tableSchema ? tableSchema?.fields.filter((field) => field.fieldName === dataKey) : null;
|
||||||
|
const targetFieldSchema = targetFieldSchemaArray && targetFieldSchemaArray[0] ? targetFieldSchemaArray[0] : null;
|
||||||
|
|
||||||
|
if (!value) continue;
|
||||||
|
|
||||||
|
if (targetFieldSchema?.encrypted) {
|
||||||
|
value = encrypt({ data: value, encryptionKey, encryptionSalt });
|
||||||
|
}
|
||||||
|
|
||||||
|
if (targetFieldSchema?.richText) {
|
||||||
|
value = sanitizeHtml(value, sanitizeHtmlOptions).replace(/\n|\r|\n\r/gm, "");
|
||||||
|
}
|
||||||
|
|
||||||
|
insertKeysArray.push("`" + dataKey + "`");
|
||||||
|
|
||||||
|
if (typeof value === "object") {
|
||||||
|
value = JSON.stringify(value);
|
||||||
|
}
|
||||||
|
|
||||||
|
insertValuesArray.push(dataValue);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** ********************************************** */
|
||||||
|
|
||||||
|
insertKeysArray.push("date_created");
|
||||||
|
insertValuesArray.push(Date());
|
||||||
|
|
||||||
|
insertKeysArray.push("date_created_code");
|
||||||
|
insertValuesArray.push(Date.now());
|
||||||
|
|
||||||
|
/** ********************************************** */
|
||||||
|
|
||||||
|
insertKeysArray.push("date_updated");
|
||||||
|
insertValuesArray.push(Date());
|
||||||
|
|
||||||
|
insertKeysArray.push("date_updated_code");
|
||||||
|
insertValuesArray.push(Date.now());
|
||||||
|
|
||||||
|
/** ********************************************** */
|
||||||
|
|
||||||
|
const query = `INSERT INTO \`${tableName}\` (${insertKeysArray.join(",")}) VALUES (${insertValuesArray.map(() => "?").join(",")})`;
|
||||||
|
const queryValuesArray = insertValuesArray;
|
||||||
|
|
||||||
|
// const newInsert = await dbHandler(query, queryValuesArray);
|
||||||
|
|
||||||
|
// const query = `INSERT INTO ${tableName} (${insertKeysArray.join(",")}) VALUES (${insertValuesArray.join(",")})`;
|
||||||
|
|
||||||
|
const newInsert = await handler({
|
||||||
|
queryString: query,
|
||||||
|
database: dbFullName,
|
||||||
|
queryValuesArray,
|
||||||
|
dbHost,
|
||||||
|
dbPassword,
|
||||||
|
dbUsername,
|
||||||
|
encryptionKey,
|
||||||
|
encryptionSalt,
|
||||||
|
tableSchema,
|
||||||
|
});
|
||||||
|
|
||||||
|
////////////////////////////////////////
|
||||||
|
////////////////////////////////////////
|
||||||
|
////////////////////////////////////////
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return statement
|
||||||
|
*/
|
||||||
|
return newInsert;
|
||||||
|
};
|
||||||
125
engine/db/test/add.js
Normal file
125
engine/db/test/add.js
Normal file
@ -0,0 +1,125 @@
|
|||||||
|
const fs = require("fs");
|
||||||
|
const dbHandler = require("../dbHandler");
|
||||||
|
|
||||||
|
/** ****************************************************************************** */
|
||||||
|
/** ****************************************************************************** */
|
||||||
|
/** ****************************************************************************** */
|
||||||
|
/** ****************************************************************************** */
|
||||||
|
/** ****************************************************************************** */
|
||||||
|
/** ****************************************************************************** */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Add Database Entry
|
||||||
|
* ==============================================================================
|
||||||
|
* @param {object} params - foundUser if any
|
||||||
|
* @param {string} params.tableName - Table Name
|
||||||
|
* @param {object} params.data - Data to be added
|
||||||
|
* @param {string?} params.duplicateColumnName - Duplicate Column Name
|
||||||
|
* @param {string | number?} params.duplicateColumnValue - Duplicate Column Value
|
||||||
|
*/
|
||||||
|
async function addDbEntry({ tableName, data, duplicateColumnName, duplicateColumnValue }) {
|
||||||
|
/**
|
||||||
|
* Check Duplicate if specified
|
||||||
|
*
|
||||||
|
* @description Check Duplicate if specified
|
||||||
|
*/
|
||||||
|
if (duplicateColumnName) {
|
||||||
|
let duplicateEntry = await dbHandler(`SELECT ${duplicateColumnName} FROM ${tableName} WHERE ${duplicateColumnName}='${duplicateColumnValue}'`);
|
||||||
|
|
||||||
|
if (duplicateEntry && duplicateEntry[0]) return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Declare variables
|
||||||
|
*
|
||||||
|
* @description Declare "results" variable
|
||||||
|
*/
|
||||||
|
const dataKeys = Object.keys(data);
|
||||||
|
|
||||||
|
let insertKeysArray = [];
|
||||||
|
let insertValuesArray = [];
|
||||||
|
|
||||||
|
for (let i = 0; i < dataKeys.length; i++) {
|
||||||
|
const dataKey = dataKeys[i];
|
||||||
|
let dataValue = data[dataKey];
|
||||||
|
// const correspondingColumnObject = dbColumns.filter((col) => col.Field === dataKey);
|
||||||
|
// const { Field, Type, Null, Key, Default, Extra } = correspondingColumnObject;
|
||||||
|
|
||||||
|
if (!dataValue) continue;
|
||||||
|
|
||||||
|
insertKeysArray.push("`" + dataKey + "`");
|
||||||
|
|
||||||
|
if (typeof dataValue === "object") {
|
||||||
|
dataValue = JSON.stringify(data[dataKey]);
|
||||||
|
}
|
||||||
|
|
||||||
|
// let parsedDataValue = dataValue.toString().replace(/\'/g, "\\'");
|
||||||
|
|
||||||
|
insertValuesArray.push(dataValue);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** ********************************************** */
|
||||||
|
|
||||||
|
let existingDateCreatedColumn = await dbHandler(`SHOW COLUMNS FROM \`${tableName}\` WHERE Field = 'date_created'`);
|
||||||
|
if (!existingDateCreatedColumn || !existingDateCreatedColumn[0]) {
|
||||||
|
await dbHandler(`ALTER TABLE ${tableName} ADD COLUMN date_created VARCHAR(255) NOT NULL`);
|
||||||
|
}
|
||||||
|
|
||||||
|
insertKeysArray.push("date_created");
|
||||||
|
insertValuesArray.push(Date());
|
||||||
|
|
||||||
|
/** ********************************************** */
|
||||||
|
|
||||||
|
let existingDateCreatedCodeColumn = await dbHandler(`SHOW COLUMNS FROM ${tableName} WHERE Field = 'date_created_code'`);
|
||||||
|
if (!existingDateCreatedCodeColumn || !existingDateCreatedCodeColumn[0]) {
|
||||||
|
await dbHandler(`ALTER TABLE ${tableName} ADD COLUMN date_created_code BIGINT NOT NULL`);
|
||||||
|
}
|
||||||
|
|
||||||
|
insertKeysArray.push("date_created_code");
|
||||||
|
insertValuesArray.push(Date.now());
|
||||||
|
|
||||||
|
/** ********************************************** */
|
||||||
|
|
||||||
|
let existingDateCodeColumn = await dbHandler(`SHOW COLUMNS FROM ${tableName} WHERE Field = 'date_code'`);
|
||||||
|
if (existingDateCodeColumn && existingDateCodeColumn[0]) {
|
||||||
|
insertKeysArray.push("date_code");
|
||||||
|
insertValuesArray.push(Date.now());
|
||||||
|
}
|
||||||
|
|
||||||
|
/** ********************************************** */
|
||||||
|
/** ********************************************** */
|
||||||
|
/** ********************************************** */
|
||||||
|
|
||||||
|
let existingDateUpdatedColumn = await dbHandler(`SHOW COLUMNS FROM ${tableName} WHERE Field = 'date_updated'`);
|
||||||
|
if (!existingDateUpdatedColumn || !existingDateUpdatedColumn[0]) {
|
||||||
|
await dbHandler(`ALTER TABLE ${tableName} ADD COLUMN date_updated VARCHAR(255) NOT NULL`);
|
||||||
|
}
|
||||||
|
|
||||||
|
insertKeysArray.push("date_updated");
|
||||||
|
insertValuesArray.push(Date());
|
||||||
|
|
||||||
|
/** ********************************************** */
|
||||||
|
|
||||||
|
let existingDateUpdatedCodeColumn = await dbHandler(`SHOW COLUMNS FROM ${tableName} WHERE Field = 'date_updated_code'`);
|
||||||
|
if (!existingDateUpdatedCodeColumn || !existingDateUpdatedCodeColumn[0]) {
|
||||||
|
await dbHandler(`ALTER TABLE ${tableName} ADD COLUMN date_updated_code BIGINT NOT NULL`);
|
||||||
|
}
|
||||||
|
|
||||||
|
insertKeysArray.push("date_updated_code");
|
||||||
|
insertValuesArray.push(Date.now());
|
||||||
|
|
||||||
|
/** ********************************************** */
|
||||||
|
|
||||||
|
const query = `INSERT INTO ${tableName} (${insertKeysArray.join(",")}) VALUES (${insertValuesArray.map((val) => "?").join(",")})`;
|
||||||
|
const queryValuesArray = insertValuesArray;
|
||||||
|
|
||||||
|
const newInsert = await dbHandler(query, queryValuesArray);
|
||||||
|
|
||||||
|
/** ********************************************** */
|
||||||
|
|
||||||
|
return newInsert;
|
||||||
|
|
||||||
|
/** ********************************************** */
|
||||||
|
/** ********************************************** */
|
||||||
|
/** ********************************************** */
|
||||||
|
}
|
||||||
139
engine/db/update.js
Normal file
139
engine/db/update.js
Normal file
@ -0,0 +1,139 @@
|
|||||||
|
/**
|
||||||
|
* Imports: Handle imports
|
||||||
|
*/
|
||||||
|
|
||||||
|
const handler = require("../utils/handler");
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Update DB Function
|
||||||
|
* ==============================================================================
|
||||||
|
* @description Description
|
||||||
|
*
|
||||||
|
* @param {object} params - An object containing the function parameters.
|
||||||
|
* @param {string} params.dbFullName - Database full name
|
||||||
|
* @param {string} params.tableName - Table name
|
||||||
|
* @param {object} params.data - Data to add
|
||||||
|
* @param {DSQL_TableSchemaType?} params.tableSchema - Table schema
|
||||||
|
* @param {string} params.identifierColumnName - Update row identifier column name
|
||||||
|
* @param {string|number} params.identifierValue - Update row identifier column value
|
||||||
|
* @param {boolean?} params.update - Update this row if it exists
|
||||||
|
* @param {string?} params.dbHost - Database host
|
||||||
|
* @param {string?} params.dbPassword - Database password
|
||||||
|
* @param {string?} params.dbUsername - Database username
|
||||||
|
* @param {string?} params.encryptionKey - Encryption key
|
||||||
|
* @param {string?} params.encryptionSalt - Encryption salt
|
||||||
|
*
|
||||||
|
* @returns {object}
|
||||||
|
*/
|
||||||
|
module.exports = async function update({ dbFullName, tableName, data, tableSchema, identifierColumnName, identifierValue, update, dbHost, dbPassword, dbUsername, encryptionKey, encryptionSalt }) {
|
||||||
|
/**
|
||||||
|
* Initialize variables
|
||||||
|
*/
|
||||||
|
|
||||||
|
////////////////////////////////////////
|
||||||
|
////////////////////////////////////////
|
||||||
|
////////////////////////////////////////
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handle function logic
|
||||||
|
*/
|
||||||
|
if (duplicateColumnName && typeof duplicateColumnName === "string") {
|
||||||
|
const duplicateValue = await handler({
|
||||||
|
queryString: `SELECT * FROM \`${tableName}\` WHERE \`${duplicateColumnName}\`=?`,
|
||||||
|
queryValuesArray: [duplicateColumnValue],
|
||||||
|
database: dbFullName,
|
||||||
|
dbHost,
|
||||||
|
dbPassword,
|
||||||
|
dbUsername,
|
||||||
|
});
|
||||||
|
|
||||||
|
if (duplicateValue && duplicateValue[0] && !update) {
|
||||||
|
return null;
|
||||||
|
} else if (duplicateValue && duplicateValue[0] && update) {
|
||||||
|
return await update();
|
||||||
|
}
|
||||||
|
} else if (duplicateColumnName && typeof duplicateColumnName === "object" && duplicateColumnValue && typeof duplicateColumnValue === "object") {
|
||||||
|
const duplicateArray = duplicateColumnName.map((dupColName, index) => {
|
||||||
|
return `\`${dupColName}\`='${duplicateColumnValue[index]}'`;
|
||||||
|
});
|
||||||
|
|
||||||
|
const duplicateValue = await handler({
|
||||||
|
queryString: `SELECT * FROM ${tableName} WHERE ${duplicateArray.join(" AND ")}`,
|
||||||
|
database: dbFullName,
|
||||||
|
});
|
||||||
|
|
||||||
|
if (duplicateValue && duplicateValue[0] && !update) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Declare variables
|
||||||
|
*
|
||||||
|
* @description Declare "results" variable
|
||||||
|
*/
|
||||||
|
const dataKeys = Object.keys(data);
|
||||||
|
|
||||||
|
let insertKeysArray = [];
|
||||||
|
let insertValuesArray = [];
|
||||||
|
|
||||||
|
for (let i = 0; i < dataKeys.length; i++) {
|
||||||
|
const dataKey = dataKeys[i];
|
||||||
|
// const correspondingColumnObject = dbColumns.filter((col) => col.Field === dataKey);
|
||||||
|
// const { Field, Type, Null, Key, Default, Extra } = correspondingColumnObject;
|
||||||
|
let value = data[dataKey];
|
||||||
|
|
||||||
|
const targetFieldSchemaArray = tableSchema ? tableSchema?.fields.filter((field) => field.fieldName === dataKey) : null;
|
||||||
|
const targetFieldSchema = targetFieldSchemaArray && targetFieldSchemaArray[0] ? targetFieldSchemaArray[0] : null;
|
||||||
|
|
||||||
|
if (!value) continue;
|
||||||
|
|
||||||
|
if (targetFieldSchema?.encrypted) {
|
||||||
|
value = await encrypt(value);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (targetFieldSchema?.richText) {
|
||||||
|
value = sanitizeHtml(value, sanitizeHtmlOptions).replace(/\n|\r|\n\r/gm, "");
|
||||||
|
}
|
||||||
|
|
||||||
|
insertKeysArray.push("`" + dataKey + "`");
|
||||||
|
|
||||||
|
let parsedDataValue = value.toString().replace(/(?<!\\)\'/g, "\\'");
|
||||||
|
|
||||||
|
insertValuesArray.push("'" + parsedDataValue + "'");
|
||||||
|
}
|
||||||
|
|
||||||
|
/** ********************************************** */
|
||||||
|
|
||||||
|
insertKeysArray.push("date_created");
|
||||||
|
insertValuesArray.push("'" + Date() + "'");
|
||||||
|
|
||||||
|
insertKeysArray.push("date_created_code");
|
||||||
|
insertValuesArray.push("'" + Date.now() + "'");
|
||||||
|
|
||||||
|
/** ********************************************** */
|
||||||
|
|
||||||
|
insertKeysArray.push("date_updated");
|
||||||
|
insertValuesArray.push("'" + Date() + "'");
|
||||||
|
|
||||||
|
insertKeysArray.push("date_updated_code");
|
||||||
|
insertValuesArray.push("'" + Date.now() + "'");
|
||||||
|
|
||||||
|
/** ********************************************** */
|
||||||
|
|
||||||
|
const query = `INSERT INTO ${tableName} (${insertKeysArray.join(",")}) VALUES (${insertValuesArray.join(",")})`;
|
||||||
|
|
||||||
|
const newInsert = await handler({
|
||||||
|
queryString: query,
|
||||||
|
database: dbFullName,
|
||||||
|
});
|
||||||
|
|
||||||
|
////////////////////////////////////////
|
||||||
|
////////////////////////////////////////
|
||||||
|
////////////////////////////////////////
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return statement
|
||||||
|
*/
|
||||||
|
return newInsert;
|
||||||
|
};
|
||||||
@ -21,24 +21,12 @@ const logout = require("./auth/logout");
|
|||||||
* Media Functions Object
|
* Media Functions Object
|
||||||
* ==============================================================================
|
* ==============================================================================
|
||||||
*/
|
*/
|
||||||
const media = {
|
const db = {
|
||||||
imageInputToBase64: imageInputToBase64,
|
add: imageInputToBase64,
|
||||||
imageInputFileToBase64: imageInputFileToBase64,
|
imageInputFileToBase64: imageInputFileToBase64,
|
||||||
inputFileToBase64: inputFileToBase64,
|
inputFileToBase64: inputFileToBase64,
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
|
||||||
* ==============================================================================
|
|
||||||
* Media Functions Object
|
|
||||||
* ==============================================================================
|
|
||||||
*/
|
|
||||||
const auth = {
|
|
||||||
google: {
|
|
||||||
getAccessToken: getAccessToken,
|
|
||||||
},
|
|
||||||
logout: logout,
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ==============================================================================
|
* ==============================================================================
|
||||||
* Main Export
|
* Main Export
|
||||||
|
|||||||
12
engine/utils/defaultFieldsRegexp.js
Normal file
12
engine/utils/defaultFieldsRegexp.js
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
/**
|
||||||
|
* Regular expression to match default fields
|
||||||
|
*
|
||||||
|
* @description Regular expression to match default fields
|
||||||
|
*/
|
||||||
|
const defaultFieldsRegexp = /^id$|^date_created$|^date_created_code$|^date_created_timestamp$|^date_updated$|^date_updated_code$|^date_updated_timestamp$/;
|
||||||
|
|
||||||
|
/** ********************************************** */
|
||||||
|
/** ********************************************** */
|
||||||
|
/** ********************************************** */
|
||||||
|
|
||||||
|
module.exports = defaultFieldsRegexp;
|
||||||
92
engine/utils/handler.js
Normal file
92
engine/utils/handler.js
Normal file
@ -0,0 +1,92 @@
|
|||||||
|
const fs = require("fs");
|
||||||
|
const parseDbResults = require("./parseDbResults");
|
||||||
|
|
||||||
|
/**
|
||||||
|
* DB handler for specific database
|
||||||
|
* ==============================================================================
|
||||||
|
* @async
|
||||||
|
* @param {object} params - Single object params
|
||||||
|
* @param {string} params.queryString - SQL string
|
||||||
|
* @param {string[]?} params.queryValuesArray - Values Array
|
||||||
|
* @param {string} params.database - Database name
|
||||||
|
* @param {DSQL_TableSchemaType?} params.tableSchema - Table schema
|
||||||
|
* @param {string} params.dbHost - Database host
|
||||||
|
* @param {string} params.dbUsername - Database username
|
||||||
|
* @param {string} params.dbPassword - Database password
|
||||||
|
* @param {string?} params.encryptionKey - Encryption key
|
||||||
|
* @param {string?} params.encryptionSalt - Encryption salt
|
||||||
|
*
|
||||||
|
* @returns {Promise<object[]|null>}
|
||||||
|
*/
|
||||||
|
module.exports = async function handler({ queryString, queryValuesArray, database, tableSchema, dbHost, dbUsername, dbPassword, encryptionKey, encryptionSalt }) {
|
||||||
|
const mysql = require("serverless-mysql")({
|
||||||
|
config: {
|
||||||
|
host: dbHost,
|
||||||
|
user: dbUsername,
|
||||||
|
password: dbPassword,
|
||||||
|
database: database.toString().replace(/[^a-z0-9\_\-]/g, ""),
|
||||||
|
charset: "utf8mb4",
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Declare variables
|
||||||
|
*
|
||||||
|
* @description Declare "results" variable
|
||||||
|
*/
|
||||||
|
let results;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check if query values array is an array
|
||||||
|
*/
|
||||||
|
if (!queryString || !queryValuesArray || !Array.isArray(queryValuesArray) || !queryValuesArray[0]) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Fetch from db
|
||||||
|
*
|
||||||
|
* @description Fetch data from db if no cache
|
||||||
|
*/
|
||||||
|
try {
|
||||||
|
/**
|
||||||
|
* Run Query
|
||||||
|
*/
|
||||||
|
results = await mysql.query(queryString, queryValuesArray);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Clean up
|
||||||
|
*/
|
||||||
|
await mysql.end();
|
||||||
|
} catch (error) {
|
||||||
|
/**
|
||||||
|
* Handle error and clean up
|
||||||
|
*/
|
||||||
|
console.log("\x1b[31mDSQL Database Handler ERROR\x1b[0m =>", database, error.message);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Clean up
|
||||||
|
*/
|
||||||
|
await mysql.end();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return results
|
||||||
|
*
|
||||||
|
* @description Return results add to cache if "req" param is passed
|
||||||
|
*/
|
||||||
|
if (results && tableSchema) {
|
||||||
|
try {
|
||||||
|
const unparsedResults = JSON.parse(JSON.stringify(results));
|
||||||
|
const parsedResults = await parseDbResults({ unparsedResults: unparsedResults, tableSchema: tableSchema, encryptionKey, encryptionSalt });
|
||||||
|
return parsedResults;
|
||||||
|
} catch (error) {
|
||||||
|
console.log("\x1b[31mDSQL Database Handler ERROR\x1b[0m =>", database, error.message);
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
} else if (results) {
|
||||||
|
return JSON.parse(JSON.stringify(results));
|
||||||
|
} else {
|
||||||
|
console.log("\x1b[31mDSQL Database Handler No results returned\x1b[0m =>", results);
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
};
|
||||||
70
engine/utils/parseDbResults.js
Normal file
70
engine/utils/parseDbResults.js
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
const decrypt = require("../../functions/decrypt");
|
||||||
|
const defaultFieldsRegexp = require("./defaultFieldsRegexp");
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Parse Database results
|
||||||
|
* ==============================================================================
|
||||||
|
* @description this function takes a database results array gotten from a DB handler
|
||||||
|
* function, decrypts encrypted fields, and returns an updated array with no encrypted
|
||||||
|
* fields
|
||||||
|
*
|
||||||
|
* @param {object} params - Single object params
|
||||||
|
* @param {{}[]} params.unparsedResults - Array of data objects containing Fields(keys)
|
||||||
|
* and corresponding values of the fields(values)
|
||||||
|
* @param {DSQL_TableSchemaType} params.tableSchema - Table schema
|
||||||
|
* @returns {Promise<object[]|null>}
|
||||||
|
*/
|
||||||
|
module.exports = async function parseDbResults({ unparsedResults, tableSchema, encryptionKey, encryptionSalt }) {
|
||||||
|
/**
|
||||||
|
* Declare variables
|
||||||
|
*
|
||||||
|
* @description Declare "results" variable
|
||||||
|
*/
|
||||||
|
let parsedResults = [];
|
||||||
|
|
||||||
|
try {
|
||||||
|
/**
|
||||||
|
* Declare variables
|
||||||
|
*
|
||||||
|
* @description Declare "results" variable
|
||||||
|
*/
|
||||||
|
for (let pr = 0; pr < unparsedResults.length; pr++) {
|
||||||
|
let result = unparsedResults[pr];
|
||||||
|
|
||||||
|
let resultFieldNames = Object.keys(result);
|
||||||
|
|
||||||
|
for (let i = 0; i < resultFieldNames.length; i++) {
|
||||||
|
const resultFieldName = resultFieldNames[i];
|
||||||
|
let resultFieldSchema = tableSchema.fields[i];
|
||||||
|
|
||||||
|
if (resultFieldName?.match(defaultFieldsRegexp)) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
let value = result[resultFieldName];
|
||||||
|
|
||||||
|
if (typeof value !== "number" && !value) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (resultFieldSchema?.encrypted) {
|
||||||
|
if (value?.match(/./)) {
|
||||||
|
result[resultFieldName] = decrypt({ encryptedString: value, encryptionKey, encryptionSalt });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
parsedResults.push(result);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Declare variables
|
||||||
|
*
|
||||||
|
* @description Declare "results" variable
|
||||||
|
*/
|
||||||
|
return parsedResults;
|
||||||
|
} catch (error) {
|
||||||
|
console.log("ERROR in parseDbResults Function =>", error.message);
|
||||||
|
return unparsedResults;
|
||||||
|
}
|
||||||
|
};
|
||||||
9
engine/utils/sanitizeHtmlOptions.js
Normal file
9
engine/utils/sanitizeHtmlOptions.js
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
const sanitizeHtmlOptions = {
|
||||||
|
allowedTags: ["b", "i", "em", "strong", "a", "p", "span", "ul", "ol", "li", "h1", "h2", "h3", "h4", "h5", "h6", "img"],
|
||||||
|
allowedAttributes: {
|
||||||
|
a: ["href"],
|
||||||
|
img: ["src", "alt", "width", "height", "class", "style"],
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
module.exports = sanitizeHtmlOptions;
|
||||||
506
package-lock.json
generated
506
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "datasquirel",
|
"name": "datasquirel",
|
||||||
"version": "1.1.59",
|
"version": "1.1.60",
|
||||||
"description": "Cloud-based SQL data management tool",
|
"description": "Cloud-based SQL data management tool",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
@ -23,5 +23,9 @@
|
|||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/BenjaminToby/dsql/issues"
|
"url": "https://github.com/BenjaminToby/dsql/issues"
|
||||||
},
|
},
|
||||||
"homepage": "https://datasquirel.com/"
|
"homepage": "https://datasquirel.com/",
|
||||||
|
"dependencies": {
|
||||||
|
"sanitize-html": "^2.11.0",
|
||||||
|
"serverless-mysql": "^1.5.5"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
89
types/engine.td.js
Normal file
89
types/engine.td.js
Normal file
@ -0,0 +1,89 @@
|
|||||||
|
/**
|
||||||
|
* @typedef {string} DSQL_DatabaseFullName - Database full name(slug) including datasquirel data => "datasquirel_user_7_new_database"
|
||||||
|
*/
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @typedef {object} DSQL_DatabaseSchemaType
|
||||||
|
* @property {string} dbName - Database Full name with spaces => "New Database"
|
||||||
|
* @property {string} dbSlug - Database Slug => "new_database"
|
||||||
|
* @property {string} dbFullName - Database full name(slug) including datasquirel data => "datasquirel_user_7_new_database"
|
||||||
|
* @property {string} [dbDescription] - Database brief description
|
||||||
|
* @property {string} [dbImage] - Database image - Defaults to "/images/default.png"
|
||||||
|
* @property {DSQL_TableSchemaType[]} tables - List of database tables
|
||||||
|
* @property {{ dbFullName: string }[]} [childrenDatabases] - List of children databases for current database which is parent
|
||||||
|
* @property {boolean} [childDatabase] - If current database is a child of a different parent database
|
||||||
|
* @property {string} [childDatabaseDbFullName] - Parent database full name => "datasquirel_user_7_new_database"
|
||||||
|
*/
|
||||||
|
|
||||||
|
////////////////////////////////////////
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @typedef {object} DSQL_TableSchemaType
|
||||||
|
* @property {string} tableName - Table slug (blog_posts)
|
||||||
|
* @property {string} tableFullName - Table full name with spaces => "Blog Posts"
|
||||||
|
* @property {string} [tableDescription] - Brief description of table
|
||||||
|
* @property {DSQL_FieldSchemaType[]} fields - List of table Fields
|
||||||
|
* @property {DSQL_IndexSchemaType[]} [indexes] - List of table indexes, if available
|
||||||
|
* @property {DSQL_ChildrenTablesType[]} childrenTables - List of children tables
|
||||||
|
* @property {boolean} [childTable] -If current table is a child clone
|
||||||
|
* @property {string} [childTableName] - Table slug of parent table => "blog_posts"
|
||||||
|
* @property {string} [childTableDbFullName] - Database full name(slug) including datasquirel data => "datasquirel_user_7_new_database"
|
||||||
|
* @property {string} [tableNameOld] - Old table name, incase of renaming table
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @typedef {object} DSQL_ChildrenTablesType
|
||||||
|
* @property {string} dbNameFull - Database full name(slug) including datasquirel data => "datasquirel_user_7_new_database"
|
||||||
|
* @property {string} tableName - Table slug => "blog_posts"
|
||||||
|
*/
|
||||||
|
|
||||||
|
////////////////////////////////////////
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @typedef {object} DSQL_FieldSchemaType
|
||||||
|
* @property {string} fieldName - Field Name(slug) => "long_description"
|
||||||
|
* @property {string} [originName] - Field origin name(optional)
|
||||||
|
* @property {boolean} [updatedField] - Has this field been renamed?
|
||||||
|
* @property {string} dataType - Field Data type => "BIGIN" | "LONGTEXT" | "VARCHAR(***)" | ...
|
||||||
|
* @property {boolean} [nullValue] - Is this a null value or not?
|
||||||
|
* @property {boolean} [notNullValue] - Is this NOT a null value?
|
||||||
|
* @property {boolean} [primaryKey] - Is this the primary key for table?
|
||||||
|
* @property {boolean} [encrypted] - Is this field value encrypted?
|
||||||
|
* @property {boolean} [autoIncrement] - Does this table primary key increment automatically?
|
||||||
|
* @property {string|number} [defaultValue] - Value of field by default
|
||||||
|
* @property {string} [defaultValueLiteral] - SQL key word which generates value automatically => "CURRENT_TIMESTAMP"
|
||||||
|
* @property {DSQL_ForeignKeyType} [foreignKey] - Field foreign key reference object
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @typedef {object} DSQL_ForeignKeyType
|
||||||
|
* @property {string} foreignKeyName - Unique Name of foreign key
|
||||||
|
* @property {string} destinationTableName - Reference table name(slug) => "blog_posts"
|
||||||
|
* @property {string} destinationTableColumnName - Reference column name(slug) => "id"
|
||||||
|
* @property {string} destinationTableColumnType - Reference table field type => "BIGINT" | "VARCHAR(***)" | ...
|
||||||
|
* @property {boolean} [cascadeDelete] - Does the reference table entry delete when this key is deleted?
|
||||||
|
* @property {boolean} [cascadeUpdate] - Does the reference table entry update when this key is updated?
|
||||||
|
*/
|
||||||
|
|
||||||
|
////////////////////////////////////////
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @typedef {object} DSQL_IndexSchemaType
|
||||||
|
* @property {string} indexName - Unique Name of index => "blog_text_index"
|
||||||
|
* @property {string} indexType - "regular" or "fullText"
|
||||||
|
* @property {DSQL_IndexTableFieldType[]} indexTableFields - List of Index table fields
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @typedef {object} DSQL_IndexTableFieldType
|
||||||
|
* @property {string} value - Table Field Name
|
||||||
|
* @property {string} dataType - Table Field data type "VARCHAR(***)" | "BIGINT" | ...
|
||||||
|
*/
|
||||||
|
|
||||||
|
////////////////////////////////////////
|
||||||
Loading…
Reference in New Issue
Block a user