Skip to content
Snippets Groups Projects
Commit d07a81ab authored by Leon A. Okida Gonçalves's avatar Leon A. Okida Gonçalves
Browse files

Add functional version of middleware, add flag to check whether it runs...

Add functional version of middleware, add flag to check whether it runs default query or modified query
parent 2d041c22
No related branches found
No related tags found
4 merge requests!377prd_version of simcaq,!373merge dev -> homologa,!367Add functional version of middleware, add flag to check whether it runs...,!366Add functional version of middleware, add flag to check whether it runs...
...@@ -2,6 +2,32 @@ class ReqBody { ...@@ -2,6 +2,32 @@ class ReqBody {
constructor() { constructor() {
} }
add_metrics(req, column, metricsArray) {
for (let i in metricsArray) {
switch(metricsArray[i]["function"]) {
case "max":
req.sql.field("max(" + column + ")", metricsArray[i]["return_name"]);
req.hasMetrics = true;
break;
case "min":
req.sql.field("min(" + column + ")", metricsArray[i]["return_name"]);
req.hasMetrics = true;
break;
case "count":
req.sql.field("count(" + column + ")", metricsArray[i]["return_name"]);
req.hasMetrics = true;
break;
case "sum":
req.sql.field("sum(" + column + ")", metricsArray[i]["return_name"]);
req.hasMetrics = true;
break;
default:
break;
}
}
}
parse() { parse() {
return(req, res, next) => { return(req, res, next) => {
// Gets body of the HTTP requisition // Gets body of the HTTP requisition
...@@ -10,8 +36,17 @@ class ReqBody { ...@@ -10,8 +36,17 @@ class ReqBody {
// Chooses operation based on the mode field of the body // Chooses operation based on the mode field of the body
switch(body["mode"]) { switch(body["mode"]) {
case "add_metrics": case "add_metrics":
console.log(body); // adds flag to check whether it runs the default query or not
req.hasMetrics = false;
// Gets all column names
let columns = Object.keys(body["add_metrics"]);
// Calls function to add metrics that were specified to req.sql
for (let i in columns) {
this.add_metrics(req, columns[i], body["add_metrics"][columns[i]]);
}
break; break;
default: default:
break; break;
} }
......
...@@ -176,12 +176,21 @@ rqf.addField({ ...@@ -176,12 +176,21 @@ rqf.addField({
}); });
testApp.get('/', rqf.parse(), rqf.build(), reqBody.parse(), (req, res, next) => { testApp.get('/', rqf.parse(), rqf.build(), reqBody.parse(), (req, res, next) => {
req.sql.from('escola') // Runs default query
.field('ano_censo') if (!req.hasMetrics) {
.field('count(*)', 'total') req.sql.from('escola')
.group('ano_censo').order('ano_censo') .field('ano_censo')
.where('escola.situacao_funcionamento_pareada = 1 AND (escola.ensino_regular = 1 OR escola.ensino_eja=1 or escola.educacao_profissional=1)') .field('count(*)', 'total')
console.log(req.sql.toString()); .group('ano_censo').order('ano_censo')
.where('escola.situacao_funcionamento_pareada = 1 AND (escola.ensino_regular = 1 OR escola.ensino_eja=1 or escola.educacao_profissional=1)')
}
// Runs modified query
else {
req.sql.from('escola')
.field('ano_censo')
.group('ano_censo').order('ano_censo')
.where('escola.situacao_funcionamento_pareada = 1 AND (escola.ensino_regular = 1 OR escola.ensino_eja=1 or escola.educacao_profissional=1)')
}
next(); next();
}, query, response('school')); }, query, response('school'));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment