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

Changes to simcaq infrastructure

parent d127da95
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
/*
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/>.
*/
module.exports = function scholarDependency(id) {
switch (id) {
case 1:
return "Biblioteca";
case 2:
return "Sala de leitura";
case 3:
return "Laboratório de informática";
case 4:
return "Laboratório de ciências";
case 5:
return "Parque infantil";
case 6:
return "Quadra poliesportiva";
case 7:
return "Quadras a serem cobertas";
case 8:
return "Pátio";
case 9:
return "Pátios a serem cobertos";
case 10:
return "Sala de direção";
case 11:
return "Secretaria";
case 12:
return "Sala de professores";
case 13:
return "Cozinha";
case 14:
return "Despensa";
case 15:
return "Almoxarifado";
case 16:
return "Internet";
case 17:
return "Internet banda larga";
case 18:
return "Banheiro dentro do prédio";
case 19:
return "Banheiro adequado para educação infantil dentro do prédio";
case 20:
return "Fornecimento de energia";
case 21:
return "Abastecimento de água";
case 22:
return "Água filtrada";
case 23:
return "Coleta de esgoto";
case 24:
return "Dependências adaptadas para pessoas com deficiências";
case 25:
return "Banheiros adaptados para pessoas com deficiências";
default:
return "Dependência escolar desconhecida";
}
}
\ No newline at end of file
...@@ -100,6 +100,7 @@ const admDependencyPub = require(`${libs}/convert/admDependencyPub`); ...@@ -100,6 +100,7 @@ const admDependencyPub = require(`${libs}/convert/admDependencyPub`);
const supplyDimension = require(`${libs}/convert/supplyDimension`); const supplyDimension = require(`${libs}/convert/supplyDimension`);
const type = require(`${libs}/convert/type`); const type = require(`${libs}/convert/type`);
const level = require(`${libs}/convert/level`); const level = require(`${libs}/convert/level`);
const scholarDependency = require(`${libs}/convert/scholarDependency`);
const ids = { const ids = {
gender_id: gender, gender_id: gender,
...@@ -191,7 +192,8 @@ const ids = { ...@@ -191,7 +192,8 @@ const ids = {
shift_id: shift, shift_id: shift,
supply_dimension_id: supplyDimension, supply_dimension_id: supplyDimension,
type_id: type, type_id: type,
level_id: level level_id: level,
scholar_dependency_id: scholarDependency
}; };
function transform(removeId=false) { function transform(removeId=false) {
......
...@@ -160,6 +160,8 @@ const simcaqAggregatedEnrollment = require(`${libs}/routes_v2/simcaqAggregatedEn ...@@ -160,6 +160,8 @@ const simcaqAggregatedEnrollment = require(`${libs}/routes_v2/simcaqAggregatedEn
const simcaqTeacherCityPlan = require(`${libs}/routes_v2/simcaqTeacherCityPlan`); const simcaqTeacherCityPlan = require(`${libs}/routes_v2/simcaqTeacherCityPlan`);
const simcaqSchoolInfrastructure = require(`${libs}/routes_v2/simcaqSchoolInfrastructure`);
api.get('/', (req, res) => { api.get('/', (req, res) => {
res.json({ msg: 'SimCAQ API v2 is running' }); res.json({ msg: 'SimCAQ API v2 is running' });
}); });
...@@ -231,5 +233,6 @@ api.use('/simcaq_number_of_teachers', simcaqNumberOfTeachers); ...@@ -231,5 +233,6 @@ api.use('/simcaq_number_of_teachers', simcaqNumberOfTeachers);
api.use('/simcaq_enrollment_projection', simcaqEnrollmentProjection); api.use('/simcaq_enrollment_projection', simcaqEnrollmentProjection);
api.use('/simcaq_aggregated_enrollment', simcaqAggregatedEnrollment); api.use('/simcaq_aggregated_enrollment', simcaqAggregatedEnrollment);
api.use('/simcaq_teacher_city_plan', simcaqTeacherCityPlan); api.use('/simcaq_teacher_city_plan', simcaqTeacherCityPlan);
api.use('/simcaq_school_infrastructure', simcaqSchoolInfrastructure);
module.exports = api; 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 simcaqSchoolInfrastructureApp = 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`);
simcaqSchoolInfrastructureApp.use(cache('15 day'));
rqf.addField({
name: 'filter',
field: false,
where: true
}).addField({
name: 'dims',
field: true,
where: false
}).addValue({
name: 'year',
table: 'simcaq_school_infrastructure',
tableField: 'ano_censo',
where: {
relation: '=',
type: 'integer',
field: 'ano_censo'
}
}).addValue({
name: 'scholar_dependency',
table: 'simcaq_school_infrastructure',
tableField: 'scholar_dependency_id',
where: {
relation: '=',
type: 'integer',
field: 'scholar_dependency_id'
}
});
simcaqSchoolInfrastructureApp.get('/', rqf.parse(), rqf.build(), (req, res, next) => {
req.sql.from('simcaq_school_infrastructure')
.field('simcaq_school_infrastructure.ano_censo', 'year')
.field('simcaq_school_infrastructure.scholar_dependency_id', 'scholar_dependency_id')
.field('SUM(simcaq_school_infrastructure.total_schools)', 'total_schools')
.field('SUM(total_no_dependency)', 'total_schools_without_dependency')
.field('SUM(total_with_dependency)', 'total_schools_with_dependency')
.group('simcaq_school_infrastructure.ano_censo')
.group('simcaq_school_infrastructure.scholar_dependency_id');
next();
}, query, id2str.transform(), response('simcaqSchoolInfrastructure'));
module.exports = simcaqSchoolInfrastructureApp;
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