datasquirel/engine/db/updateDb.js

130 lines
4.3 KiB
JavaScript
Raw Normal View History

2023-07-07 14:43:33 +00:00
/**
* Imports: Handle imports
*/
2023-07-08 07:55:57 +00:00
const encrypt = require("../../functions/encrypt");
const sanitizeHtml = require("sanitize-html");
const sanitizeHtmlOptions = require("../utils/sanitizeHtmlOptions");
2023-07-08 06:15:25 +00:00
const dsqlDbHandler = require("../utils/dsqlDbHandler");
2023-07-07 14:43:33 +00:00
/**
* Update DB Function
* ==============================================================================
* @description Description
2023-07-07 14:52:24 +00:00
* @async
2023-07-07 14:43:33 +00:00
*
* @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
*
2023-07-07 14:52:24 +00:00
* @returns {Promise<object|null>}
2023-07-07 14:43:33 +00:00
*/
2023-07-07 19:13:13 +00:00
async function updateDb({ dbFullName, tableName, data, tableSchema, identifierColumnName, identifierValue, dbHost, dbPassword, dbUsername, encryptionKey, encryptionSalt }) {
2023-07-07 14:43:33 +00:00
/**
* Check if data is valid
*/
if (!data || !Object.keys(data).length) return null;
////////////////////////////////////////
////////////////////////////////////////
////////////////////////////////////////
/**
* Declare variables
*
* @description Declare "results" variable
*/
const dataKeys = Object.keys(data);
let updateKeyValueArray = [];
let updateValues = [];
for (let i = 0; i < dataKeys.length; i++) {
2023-07-08 07:55:57 +00:00
try {
const dataKey = dataKeys[i];
let value = data[dataKey];
2023-07-07 14:43:33 +00:00
2023-07-08 07:55:57 +00:00
const targetFieldSchemaArray = tableSchema ? tableSchema?.fields?.filter((field) => field.fieldName === dataKey) : null;
const targetFieldSchema = targetFieldSchemaArray && targetFieldSchemaArray[0] ? targetFieldSchemaArray[0] : null;
2023-07-07 14:43:33 +00:00
2023-07-08 07:55:57 +00:00
if (!value) continue;
2023-07-07 14:43:33 +00:00
2023-07-08 07:55:57 +00:00
if (targetFieldSchema?.encrypted) {
value = encrypt({ data: value, encryptionKey, encryptionSalt });
}
2023-07-07 14:43:33 +00:00
2023-07-08 07:55:57 +00:00
if (targetFieldSchema?.richText) {
value = sanitizeHtml(value, sanitizeHtmlOptions);
}
if (typeof value === "string" && value.match(/^null$/i)) value = "";
if (typeof value === "object") {
value = JSON.stringify(value);
}
if (!value && value != 0) continue;
updateKeyValueArray.push(`\`${dataKey}\`=?`);
updateValues.push(value);
////////////////////////////////////////
////////////////////////////////////////
} catch (error) {
////////////////////////////////////////
////////////////////////////////////////
console.log("DSQL: Error in parsing data keys in update function =>", error.message);
continue;
}
2023-07-07 14:43:33 +00:00
}
2023-07-08 07:55:57 +00:00
////////////////////////////////////////
////////////////////////////////////////
2023-07-07 14:43:33 +00:00
updateKeyValueArray.push(`date_updated='${Date()}'`);
updateKeyValueArray.push(`date_updated_code='${Date.now()}'`);
2023-07-08 07:55:57 +00:00
////////////////////////////////////////
////////////////////////////////////////
2023-07-07 14:43:33 +00:00
const query = `UPDATE ${tableName} SET ${updateKeyValueArray.join(",")} WHERE \`${identifierColumnName}\`=?`;
updateValues.push(identifierValue);
2023-07-08 06:15:25 +00:00
const updatedEntry = await dsqlDbHandler({
2023-07-07 14:43:33 +00:00
queryString: query,
database: dbFullName,
queryValuesArray: updateValues,
dbHost,
dbPassword,
dbUsername,
encryptionKey,
encryptionSalt,
tableSchema,
});
////////////////////////////////////////
////////////////////////////////////////
////////////////////////////////////////
/**
* Return statement
*/
return updatedEntry;
2023-07-07 19:13:13 +00:00
}
////////////////////////////////////////
////////////////////////////////////////
////////////////////////////////////////
module.exports = updateDb;