PIbd-22_Kalyshev_SUBD/SUBD-back/Controllers/techSpecificationController.js
2023-04-09 19:40:49 +04:00

173 lines
5.6 KiB
JavaScript

const ApiError = require("../Error/ApiError")
const DB = require("../db.js")
class techSpecificationController {
async update(req, res, next) {
const {ChangeColumn} = req.query;
const {ChangeValue} = req.query;
const {ID} = req.query;
const {Name} = req.query;
if ((!ID && !Name) || !ChangeColumn || !ChangeValue) {
return next(ApiError.badRequest('need more args'))
}
var updateQuery = `UPDATE \"TechSpecification\" SET \"${ChangeColumn}\" = '${ChangeValue}' `;
var updateCond = []
if (ID || Name) {
updateQuery += "WHERE ";
}
var i = 0;
if (ID) {
updateCond.push(ID)
updateQuery += `\"ID\" = $${updateCond.length} `;
i++
}
if (Name){
updateCond.push(Name);
if (i > 0) {
updateQuery += "AND ";
}
updateQuery += `\"Name\" = $${updateCond.length} `;
i++
}
try {
var result
if (updateCond.length != 0) {
result = await DB.query(updateQuery, updateCond);
} else {
result = await DB.query(updateQuery);
}
} catch (error) {
return next(ApiError.badRequest('not found'))
}
if (!result.rowCount) {
return next(ApiError.badRequest('not found'))
}
res.json(result.rows)
}
async delete(req, res, next) {
const {ID} = req.query;
const {Name} = req.query;
if (!ID && !Name) {
return next(ApiError.badRequest('need more args'))
}
var selectRefs = await DB.query("SELECT * FROM \"Project\" WHERE \"TechSpecificationID\" = $1", [ID])
if (selectRefs.rowCount) {
return next(ApiError.badRequest('exist Project refs for ID'))
}
var deleteQuery = "DELETE FROM public.\"TechSpecification\" WHERE "
var deleteCond = []
var i = 0
if (ID) {
deleteCond.push(ID);
deleteQuery += `\"ID\" = $${deleteCond.length} `;
i++
}
if (Name) {
deleteCond.push(Name);
if (i > 0) {
deleteQuery += "AND ";
}
deleteQuery += `\"Name\" = $${deleteCond.length} `;
i++
}
deleteQuery += "RETURNING *"
try {
var result
if (deleteCond.length != 0) {
result = await DB.query(deleteQuery, deleteCond);
} else {
result = await DB.query(deleteQuery);
}
} catch (error) {
return next(ApiError.badRequest('not found'))
}
if (!result.rowCount) {
return next(ApiError.badRequest('not found'))
}
res.json(result.rows)
}
async add(req, res, next) {
const {Name} = req.query;
if (!Name) {
return next(ApiError.badRequest('need more args'))
}
var insertQuery = "INSERT INTO public.\"TechSpecification\" (\"ID\", \"Name\") Values(nextval('\"TechSpecificationID\"'), $1)"
var insertCond = [Name]
try {
var result
if (insertCond.length != 0) {
result = await DB.query(insertQuery, insertCond);
} else {
result = await DB.query(insertQuery);
}
} catch (error) {
return next(ApiError.badRequest('not unique'))
}
res.json(result.rows)
}
async get(req, res, next) {
const {Column} = req.query;
const {OperatorID} = req.query;
const {ID} = req.query;
const {Name} = req.query;
var selectQuery = "SELECT "
var selectCond = []
if (Column) {
selectQuery += `\"${Column}\" FROM public.\"TechSpecification\" `;
} else {
selectQuery += "* FROM public.\"TechSpecification\" ";
}
if (ID || Name) {
selectQuery += "WHERE ";
}
var i = 0
if (ID) {
selectCond.push(ID);
if (!OperatorID) {
selectQuery += `\"ID\" = $${selectCond.length} `;
} else {
switch (OperatorID) {
case ">":
selectQuery += `\"ID\" > $${selectCond.length} `;
break;
case "<":
selectQuery += `\"ID\" < $${selectCond.length} `;
break;
case "=":
selectQuery += `\"ID\" = $${selectCond.length} `;
break;
case "!=":
selectQuery += `\"ID\" != $${selectCond.length} `;
break;
default:
break;
}
}
i++
}
if (Name) {
selectCond.push(Name);
if (i > 0) {
selectQuery += "AND ";
}
selectQuery += `\"Name\" = $${selectCond.length} `;
i++
}
try {
var result
if (selectCond.length != 0) {
result = await DB.query(selectQuery, selectCond);
} else {
result = await DB.query(selectQuery);
}
} catch (error) {
return next(ApiError.badRequest('not found'))
}
if (!result.rowCount) {
return next(ApiError.badRequest('not found'))
}
res.json(result.rows)
}
}
module.exports = new techSpecificationController()