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

Add enrollment projection route

parent cf418a4e
No related branches found
No related tags found
4 merge requests!377prd_version of simcaq,!373merge dev -> homologa,!368update filter in v2 school,!365Classroom count changes
......@@ -154,6 +154,8 @@ const simcaqResult = require(`${libs}/routes_v2/simcaqResult`);
const simcaqNumberOfTeachers = require(`${libs}/routes_v2/simcaqNumberOfTeachers`);
const simcaqEnrollmentProjection = require(`${libs}/routes_v2/simcaqEnrollmentProjection`);
api.get('/', (req, res) => {
res.json({ msg: 'SimCAQ API v2 is running' });
});
......@@ -222,5 +224,6 @@ api.use('/simcaq_number_of_employees', simcaqNumberOfEmployees);
api.use('/simcaq_new_classes', simcaqNewClasses);
api.use('/simcaq_result', simcaqResult);
api.use('/simcaq_number_of_teachers', simcaqNumberOfTeachers);
api.use('/simcaq_enrollment_projection', simcaqEnrollmentProjection);
module.exports = api;
/*
Copyright (C) 2016 Centro de Computacao Cientifica e Software Livre
Departamento de Informatica - Universidade Federal do Parana - C3SL/UFPR
This file is part of simcaq-node.
simcaq-node is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
simcaq-node is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with simcaq-node. If not, see <https://www.gnu.org/licenses/>.
*/
const express = require('express');
const simcaqEnrollmentProjectionApp = express.Router();
const libs = `${process.cwd()}/libs`;
const squel = require('squel');
const query = require(`${libs}/middlewares/query`).query;
const response = require(`${libs}/middlewares/response`);
const ReqQueryFields = require(`${libs}/middlewares/reqQueryFields`);
const reqBody = require(`${libs}/middlewares/reqBody`);
const config = require(`${libs}/config`);
const cache = require('apicache').options({ debug: config.debug, statusCodes: {include: [200]} }).middleware;
let rqf = new ReqQueryFields();
const id2str = require(`${libs}/middlewares/id2str`);
simcaqEnrollmentProjectionApp.use(cache('15 day'));
rqf.addField({
name: 'filter',
field: false,
where: true
}).addField({
name: 'dims',
field: true,
where: false
}).addValue({
name: 'year',
table: 'simcaq_projecao_de_matricula',
tableField: 'ano_censo',
where: {
relation: '=',
type: 'integer',
field: 'ano_censo'
}
}).addValue({
name: 'city',
table: 'municipio',
tableField: ['nome', 'id'],
resultField: ['city_name', 'city_id'],
where: {
relation: '=',
type: 'integer',
field: 'id'
},
join: {
primary: 'id',
foreign: 'municipio_id',
foreignTable: 'simcaq_projecao_de_matricula'
}
}, 'dims').addValue({
name: 'state',
table: 'estado',
tableField: ['nome', 'id'],
resultField: ['state_name', 'state_id'],
where: {
relation: '=',
type: 'integer',
field: 'id'
},
join: {
primary: 'id',
foreign: 'estado_id',
foreignTable: 'simcaq_projecao_de_matricula'
}
}, 'dims').addValue({
name: 'school',
table: 'escola_agregada',
tableField: 'id',
where: {
relation: '=',
type: 'integer',
field: 'id'
},
join: {
primary: 'id',
foreign: 'escola_id',
foreignTable: 'simcaq_projecao_de_matricula'
}
}, 'dims').addValue({
name: 'education_level_short_id',
table: 'simcaq_projecao_de_matricula',
tableField: 'etapa',
where: {
relation: '=',
type: 'integer',
field: 'etapa'
}
}).addValue({
name: 'adm_dependency_public_id',
table: 'simcaq_projecao_de_matricula',
tableField: 'rede',
where: {
relation: '=',
type: 'integer',
field: 'rede'
}
});
simcaqEnrollmentProjectionApp.get('/', rqf.parse(), rqf.build(), (req, res, next) => {
req.sql.from('simcaq_projecao_de_matricula')
.field('simcaq_projecao_de_matricula.ano_censo', 'year')
.field('simcaq_projecao_de_matricula.etapa', 'education_level_short_id')
.field('simcaq_projecao_de_matricula.rede', 'adm_dependency_public_id')
.field('SUM(simcaq_projecao_de_matricula.total_matriculas)', 'total_enrollments')
.field('SUM(simcaq_projecao_de_matricula.matriculas_diurno)', 'daytime_enrollments')
.field('SUM(simcaq_projecao_de_matricula.matriculas_noturno)', 'nighttime_enrollments')
.field('SUM(simcaq_projecao_de_matricula.total_tempo_integral)', 'fulltime_enrollments')
.group('simcaq_projecao_de_matricula.ano_censo')
.group('simcaq_projecao_de_matricula.etapa')
.group('simcaq_projecao_de_matricula.rede');
next();
}, query, id2str.transform(), response('enrollmentProjection'));
module.exports = simcaqEnrollmentProjectionApp;
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