diff --git a/src/libs/convert/agreement.js b/src/libs/convert/agreement.js new file mode 100644 index 0000000000000000000000000000000000000000..b3317e2e5178d785f966d3e24ffe990065d54be9 --- /dev/null +++ b/src/libs/convert/agreement.js @@ -0,0 +1,12 @@ +module.exports = function agreement(id) { + switch (id) { + case 1: + return 'Estadual'; + case 2: + return 'Municipal'; + case 3: + return 'Estadual e Municipal'; + default: + return 'Não declarada'; + } +}; diff --git a/src/libs/convert/booleanVariable.js b/src/libs/convert/booleanVariable.js index 4014da94c8cdc5dcbb380488b72cca544b1f817a..8ed8e007e2597049009072955c46319e32891a1c 100644 --- a/src/libs/convert/booleanVariable.js +++ b/src/libs/convert/booleanVariable.js @@ -1,6 +1,6 @@ -module.exports = function admDependency(id) { +module.exports = function booleanVariable(id) { if (id == null) - return 'Não DisponÃvel'; + return 'Não Declarado'; else if (id == false) return 'Não'; else if (id == true) diff --git a/src/libs/middlewares/id2str.js b/src/libs/middlewares/id2str.js index 8df5aeb7a77e1f436c105024aba1ab17ee9ef1c9..ae9ae4634767e7a14a2ea197335d05169ea10618 100644 --- a/src/libs/middlewares/id2str.js +++ b/src/libs/middlewares/id2str.js @@ -5,6 +5,7 @@ const schoolYear = require(`${libs}/convert/schoolYear`); const admDependency = require(`${libs}/convert/admDependency`); const location = require(`${libs}/convert/location`); const ethnicGroup = require(`${libs}/convert/ethnicGroup`); +const agreement = require(`${libs}/convert/agreement`); const booleanVariable = require(`${libs}/convert/booleanVariable`); const educationLevel = require(`${libs}/convert/educationLevel`); const educationLevelMod = require(`${libs}/convert/educationLevelMod`); @@ -20,7 +21,37 @@ const ids = { adm_dependency_detailed_id: admDependency, location_id: location, ethnic_group_id: ethnicGroup, + agreement_id: agreement, integral_time_id: booleanVariable, + government_agreement_id: booleanVariable, + building_school_id: booleanVariable, + informatics_lab_id: booleanVariable, + science_lab_id: booleanVariable, + directors_room_id: booleanVariable, + teacher_room_id: booleanVariable, + cook_room_id: booleanVariable, + playground_id: booleanVariable, + indor_sports_court_id: booleanVariable, + nusery_id: booleanVariable, + special_attendence_room_id: booleanVariable, + toilet_inside_building_id: booleanVariable, + denpendency_pne_id: booleanVariable, + restroom_pne_id: booleanVariable, + broadband_id: booleanVariable, + energy_id: booleanVariable, + water_id: booleanVariable, + wastepipe_id: booleanVariable, + education_day_care_child_id: booleanVariable, + education_preschool_child_id: booleanVariable, + education_begin_elementary_school_id: booleanVariable, + education_end_elementary_school_id: booleanVariable, + education_middle_school_id: booleanVariable, + education_professional_id: booleanVariable, + education_eja_id: booleanVariable, + library_reading_room_id: booleanVariable, + library_id: booleanVariable, + reading_room_id: booleanVariable, + water_id: booleanVariable, education_type_id: educationType }; @@ -48,6 +79,7 @@ module.exports = { admDependency, location, ethnicGroup, + agreement, booleanVariable, educationLevel, educationLevelMod, diff --git a/src/libs/middlewares/reqQueryFields.js b/src/libs/middlewares/reqQueryFields.js index ca4e15e0e67213ec982c7b5ab51834de0f8023e2..b85e3f0036ff2084cc6efc56e4be7faf5528a60c 100644 --- a/src/libs/middlewares/reqQueryFields.js +++ b/src/libs/middlewares/reqQueryFields.js @@ -210,24 +210,55 @@ class ReqQueryFields { // Se o valor é um campo a ser incluÃdo no SELECT if(typeof field.field !== 'undefined' && field.field) { log.debug('SELECT'); - req.sql.field(value.table+'.'+value.tableField, value.resultField || value.tableField) - .group(value.table+'.'+value.tableField) - .order(value.table+'.'+value.tableField); + if (Array.isArray(value.resultField)) { + value.tableField.forEach((f, i) => { + req.sql.field(value.table+'.'+f, value.resultField[i] || f) + .group(value.table+'.'+f); + }) + }else{ + req.sql.field(value.table+'.'+value.tableField, value.resultField || value.tableField) + .group(value.table+'.'+value.tableField); + } } // Se o valor é um campo para ser usado no WHERE if(typeof field.where !== 'undefined' && field.where) { log.debug('WHERE'); // Valor do where + let whereValue = param[k]; // Valor sempre vem como string, necessário fazer parse para o banco if(value.where.type === 'integer') whereValue = parseInt(whereValue, 10); if(value.where.type === 'double') whereValue = parseFloat(whereValue); if(value.where.type === 'string') whereValue = '%'+whereValue+'%'; - if(value.where.type === 'boolean') whereValue = (whereValue.toLowerCase() === 'true' || parseInt(whereValue, 10) === 1); + if(value.where.type === 'boolean') { + if (whereValue.toLowerCase() === 'null') { + whereValue = null; + console.log('Fazendo uma consulta Null'); + } else { + whereValue = (whereValue.toLowerCase() === 'true' || parseInt(whereValue, 10) === 1); + console.log('Fazendo uma consulta True'); + } + } let tbl = value.where.table || value.table; - let whereField = (value.where.type === 'string')? 'LOWER('+tbl+'.'+value.where.field+')' : tbl+'.'+value.where.field; - let lower = (value.where.type === 'string') ? ' LOWER(?) ' : ' ? '; - req.sql.where(whereField + ' ' + value.where.relation + lower, whereValue); + // multiple where, only tested for boolean filds + if (Array.isArray(value.tableField)) { + let lower = (value.where.type === 'string') ? ' LOWER(?) ' : ' ? '; + let whereField = ''; + let whereValues = []; + value.where.field.forEach((f, i, arr) => { + whereValues.push(whereValue); + whereField += (value.where.type === 'string') ? 'LOWER(' + tbl + '.' + value.where.field[i] + ')' : tbl + '.' + value.where.field[i]; + whereField += ' ' + value.where.relation + ' ?'; + if (i < arr.length - 1) { + whereField += ' ' + value.where.condition + ' '; + } + }); + req.sql.where(whereField, ...whereValues); + } else { + let whereField = (value.where.type === 'string') ? 'LOWER(' + tbl + '.' + value.where.field + ')' : tbl + '.' + value.where.field; + let lower = (value.where.type === 'string') ? ' LOWER(?) ' : ' ? '; + req.sql.where(whereField + ' ' + value.where.relation + lower, whereValue); + } } } }); diff --git a/src/libs/routes/school.js b/src/libs/routes/school.js index d6e5f7d013f5b0bf11f14a3456273bf64ff0cfca..659730083c3c49928eb8a6d4adb241a1940f7614 100644 --- a/src/libs/routes/school.js +++ b/src/libs/routes/school.js @@ -10,9 +10,305 @@ const query = require(`${libs}/middlewares/query`); const response = require(`${libs}/middlewares/response`); +const id2str = require(`${libs}/middlewares/id2str`); + const ReqQueryFields = require(`${libs}/middlewares/reqQueryFields`); let rqf = new ReqQueryFields(); +let rqfCount = new ReqQueryFields(); + +// Return location +schoolApp.get('/year_range', (req, res, next) => { + req.sql.from('escola') + .field('MIN(escola.ano_censo)', 'start_year') + .field('MAX(escola.ano_censo)', 'end_year'); + next(); +}, query, response('range')); + +schoolApp.get('/location', (req, res, next) => { + req.result = [ + {id: 1, name: 'Urbana'}, + {id: 2, name: 'Rural'} + ]; + next(); +}, response('location')); + +schoolApp.get('/adm_dependency', (req, res, next) => { + req.sql.from('dependencia_adm') + .field('id') + .field('nome', 'name') + .where('id <= 4'); + next(); +}, query, response('adm_dependency')); + +schoolApp.get('/adm_dependency_detailed', (req, res, next) => { + req.sql.from('dependencia_adm') + .field('id', 'id') + .field('nome', 'name'); + next(); +}, query, response('adm_dependency_detailed')); + +schoolApp.get('/government_agreement', (req, res, next) => { + req.result = [ + {id: null, name: 'Não Declarado'}, + {id: 0, name: 'Não'}, + {id: 1, name: 'Sim'} + ]; + next(); +}, response('government_agreement')); + +schoolApp.get('/agreement', (req, res, next) => { + req.result = [ + {id: 1, name: 'Estadual'}, + {id: 2, name: 'Municipal'}, + {id: 3, name: 'Estadual e Municipal'} + ]; + next(); +}, response('agreement')); + +schoolApp.get('/building_school', (req, res, next) => { + req.result = [ + {id: null, name: 'Não Declarado'}, + {id: 0, name: 'Não'}, + {id: 1, name: 'Sim'} + ]; + next(); +}, response('building_school')); + +schoolApp.get('/informatics_lab', (req, res, next) => { + req.result = [ + {id: null, name: 'Não Declarado'}, + {id: 0, name: 'Não'}, + {id: 1, name: 'Sim'} + ]; + next(); +}, response('informatics_lab')); + + +schoolApp.get('/science_lab', (req, res, next) => { + req.result = [ + {id: null, name: 'Não Declarado'}, + {id: 0, name: 'Não'}, + {id: 1, name: 'Sim'} + ]; + next(); +}, response('/science_lab')); + +schoolApp.get('/directors_room', (req, res, next) => { + req.result = [ + {id: null, name: 'Não Declarado'}, + {id: 0, name: 'Não'}, + {id: 1, name: 'Sim'} + ]; + next(); +}, response('directors_room')); + +schoolApp.get('/teacher_room', (req, res, next) => { + req.result = [ + {id: null, name: 'Não Declarado'}, + {id: 0, name: 'Não'}, + {id: 1, name: 'Sim'} + ]; + next(); +}, response('teacher_room')); + +schoolApp.get('/cook_room', (req, res, next) => { + req.result = [ + {id: null, name: 'Não Declarado'}, + {id: 0, name: 'Não'}, + {id: 1, name: 'Sim'} + ]; + next(); +}, response('cook_room')); + +schoolApp.get('/playground', (req, res, next) => { + req.result = [ + {id: null, name: 'Não Declarado'}, + {id: 0, name: 'Não'}, + {id: 1, name: 'Sim'} + ]; + next(); +}, response('playground')); + +schoolApp.get('/indor_sports_court', (req, res, next) => { + req.result = [ + {id: null, name: 'Não Declarado'}, + {id: 0, name: 'Não'}, + {id: 1, name: 'Sim'} + ]; + next(); +}, response('indor_sports_court')); + +schoolApp.get('/nusery', (req, res, next) => { + req.result = [ + {id: null, name: 'Não Declarado'}, + {id: 0, name: 'Não'}, + {id: 1, name: 'Sim'} + ]; + next(); +}, response('nusery')); + +schoolApp.get('/special_attendence_room', (req, res, next) => { + req.result = [ + {id: null, name: 'Não Declarado'}, + {id: 0, name: 'Não'}, + {id: 1, name: 'Sim'} + ]; + next(); +}, response('special_attendence_room')); + +schoolApp.get('/toilet_inside_building', (req, res, next) => { + req.result = [ + {id: null, name: 'Não Declarado'}, + {id: 0, name: 'Não'}, + {id: 1, name: 'Sim'} + ]; + next(); +}, response('toilet_inside_building')); + +schoolApp.get('/denpendency_pne', (req, res, next) => { + req.result = [ + {id: null, name: 'Não Declarado'}, + {id: 0, name: 'Não'}, + {id: 1, name: 'Sim'} + ]; + next(); +}, response('denpendency_pne')); + +schoolApp.get('/restroom_pne', (req, res, next) => { + req.result = [ + {id: null, name: 'Não Declarado'}, + {id: 0, name: 'Não'}, + {id: 1, name: 'Sim'} + ]; + next(); +}, response('restroom_pne')); + +schoolApp.get('/broadband', (req, res, next) => { + req.result = [ + {id: null, name: 'Não Declarado'}, + {id: 0, name: 'Não'}, + {id: 1, name: 'Sim'} + ]; + next(); +}, response('broadband')); + +schoolApp.get('/energy', (req, res, next) => { + req.result = [ + {id: null, name: 'Não Declarado'}, + {id: 0, name: 'Não'}, + {id: 1, name: 'Sim'} + ]; + next(); +}, response('energy')); + +schoolApp.get('/water', (req, res, next) => { + req.result = [ + {id: null, name: 'Não Declarado'}, + {id: 0, name: 'Não'}, + {id: 1, name: 'Sim'} + ]; + next(); +}, response('water')); + +schoolApp.get('/wastepipe', (req, res, next) => { + req.result = [ + {id: null, name: 'Não Declarado'}, + {id: 0, name: 'Não'}, + {id: 1, name: 'Sim'} + ]; + next(); +}, response('wastepipe')); + +schoolApp.get('/education_day_care_child', (req, res, next) => { + req.result = [ + {id: null, name: 'Não Declarado'}, + {id: 0, name: 'Não'}, + {id: 1, name: 'Sim'} + ]; + next(); +}, response('education_day_care_child')); + +schoolApp.get('/education_preschool_child', (req, res, next) => { + req.result = [ + {id: null, name: 'Não Declarado'}, + {id: 0, name: 'Não'}, + {id: 1, name: 'Sim'} + ]; + next(); +}, response('education_preschool_child')); + +schoolApp.get('/education_begin_elementary_school', (req, res, next) => { + req.result = [ + {id: null, name: 'Não Declarado'}, + {id: 0, name: 'Não'}, + {id: 1, name: 'Sim'} + ]; + next(); +}, response('education_begin_elementary_school')); + +schoolApp.get('/education_end_elementary_school', (req, res, next) => { + req.result = [ + {id: null, name: 'Não Declarado'}, + {id: 0, name: 'Não'}, + {id: 1, name: 'Sim'} + ]; + next(); +}, response('education_end_elementary_school')); + +schoolApp.get('/education_middle_school', (req, res, next) => { + req.result = [ + {id: null, name: 'Não Declarado'}, + {id: 0, name: 'Não'}, + {id: 1, name: 'Sim'} + ]; + next(); +}, response('education_middle_school')); + +schoolApp.get('/education_professional', (req, res, next) => { + req.result = [ + {id: null, name: 'Não Declarado'}, + {id: 0, name: 'Não'}, + {id: 1, name: 'Sim'} + ]; + next(); +}, response('education_professional')); + +schoolApp.get('/education_eja', (req, res, next) => { + req.result = [ + {id: null, name: 'Não Declarado'}, + {id: 0, name: 'Não'}, + {id: 1, name: 'Sim'} + ]; + next(); +}, response('education_eja')); + +schoolApp.get('/library', (req, res, next) => { + req.result = [ + {id: null, name: 'Não Declarado'}, + {id: 0, name: 'Não'}, + {id: 1, name: 'Sim'} + ]; + next(); +}, response('library')); + +schoolApp.get('/reading_room', (req, res, next) => { + req.result = [ + {id: null, name: 'Não Declarado'}, + {id: 0, name: 'Não'}, + {id: 1, name: 'Sim'} + ]; + next(); +}, response('reading_room')); + +schoolApp.get('/library_reading_room', (req, res, next) => { + req.result = [ + {id: null, name: 'Não Declarado'}, + {id: 0, name: 'Não'}, + {id: 1, name: 'Sim'} + ]; + next(); +}, response('library_reading_room')); rqf.addField({ name: 'filter', @@ -72,6 +368,447 @@ rqf.addField({ } }); +rqfCount.addField({ + name: 'filter', + field: false, + where: true +}).addField({ + name: 'dims', + field: true, + where: false +}).addValue({ + name: 'id', + table: 'escola', + tableField: 'id', + where: { + relation: '=', + type: 'integer', + field: 'id' + } +}).addValue({ + name: 'city', + table: 'municipio', + tableField: 'nome', + resultField: 'city_name', + where: { + relation: '=', + type: 'integer', + field: 'municipio_id', + table: 'escola' + }, + join: { + primary: 'id', + foreign: 'municipio_id', + foreignTable: 'escola' + } +}).addValue({ + name: 'state', + table: 'estado', + tableField: 'nome', + resultField: 'state_name', + where: { + relation: '=', + type: 'integer', + field: 'estado_id', + table: 'escola' + }, + join: { + primary: 'id', + foreign: 'estado_id', + foreignTable: 'escola' + } +}).addValue({ + name: 'region', + table: 'regiao', + tableField: 'nome', + resultField: 'region_name', + where: { + relation: '=', + type: 'integer', + field: 'id' + }, + join: { + primary: 'id', + foreign: 'regiao_id', + foreignTable: 'escola' + } +}).addValue({ + name: 'year', + table: 'escola', + tableField: 'ano_censo', + resultField: 'year', + where: { + relation: '=', + type: 'integer', + field: 'ano_censo', + table: 'escola' + } +}).addValue({ + name: 'adm_dependency', + table: 'dependencia_adm', + tableField: 'nome', + resultField: 'adm_dependency_name', + where: { + relation: '=', + type: 'integer', + field: 'id' + }, + join: { + primary: 'id', + foreign: 'dependencia_adm_id', + foreignTable: 'escola' + } +}).addValue({ + name: 'adm_dependency_detailed', + table: 'dependencia_adm', + tableField: 'nome', + resultField: 'adm_dependency_detailed_name', + where: { + relation: '=', + type: 'integer', + field: 'id' + }, + join: { + primary: 'id', + foreign: 'dependencia_adm_priv', + foreignTable: 'escola' + } +}).addValue({ + name: 'location', + table: 'escola', + tableField: 'cod_localizacao', + resultField: 'location_id', + where: { + relation: '=', + type: 'integer', + field: 'cod_localizacao' + } +}).addValue({ + name: 'cook_room', + table: 'escola', + tableField: 'cozinha', + resultField: 'cook_room_id', + where: { + relation: '=', + type: 'boolean', + field: 'cozinha' + } +}).addValue({ + name: 'government_agreement', + table: 'escola', + tableField: 'conveniada_pp', + resultField: 'government_agreement_id', + where: { + relation: '=', + type: 'boolean', + field: 'conveniada_pp' + } +}).addValue({ + name: 'informatics_lab', + table: 'escola', + tableField: 'lab_informatica', + resultField: 'informatics_lab_id', + where: { + relation: '=', + type: 'boolean', + field: 'lab_informatica' + } +}).addValue({ + name: 'science_lab', + table: 'escola', + tableField: 'lab_ciencias', + resultField: 'science_lab_id', + where: { + relation: '=', + type: 'boolean', + field: 'lab_ciencias' + } +}).addValue({ + name: 'special_attendence_room', + table: 'escola', + tableField: 'sala_atendimento_especial', + resultField: 'special_attendence_room_id', + where: { + relation: '=', + type: 'boolean', + field: 'sala_atendimento_especial' + } +}).addValue({ + name: 'indor_sports_court', + table: 'escola', + tableField: 'quadra_esportes_coberta', + resultField: 'indor_sports_court_id', + where: { + relation: '=', + type: 'boolean', + field: 'quadra_esportes_coberta' + } +}).addValue({ + name: 'education_eja', + table: 'escola', + tableField: 'ensino_eja', + resultField: 'education_eja_id', + where: { + relation: '=', + type: 'boolean', + field: 'ensino_eja' + } +}).addValue({ + name: 'education_professional', + table: 'escola', + tableField: 'educacao_profissional', + resultField: 'education_professional_id', + where: { + relation: '=', + type: 'boolean', + field: 'educacao_profissional' + } +}).addValue({ + name: 'education_middle_school', + table: 'escola', + tableField: 'reg_medio_medio', + resultField: 'education_middle_school_id', + where: { + relation: '=', + type: 'boolean', + field: 'reg_medio_medio' + } +}).addValue({ + name: 'education_end_elementary_school', + table: 'escola', + tableField: 'reg_fund_af', + resultField: 'education_end_elementary_school_id', + where: { + relation: '=', + type: 'boolean', + field: 'reg_fund_af' + } +}).addValue({ + name: 'education_begin_elementary_school', + table: 'escola', + tableField: 'reg_fund_ai', + resultField: 'education_begin_elementary_school_id', + where: { + relation: '=', + type: 'boolean', + field: 'reg_fund_ai' + } +}).addValue({ + name: 'education_preschool_child', + table: 'escola', + tableField: 'reg_infantil_preescola', + resultField: 'education_preschool_child_id', + where: { + relation: '=', + type: 'boolean', + field: 'reg_infantil_preescola' + } +}).addValue({ + name: 'education_day_care_child', + table: 'escola', + tableField: 'reg_infantil_creche', + resultField: 'education_day_care_child_id', + where: { + relation: '=', + type: 'boolean', + field: 'reg_infantil_creche' + } +}).addValue({ + name: 'directors_room', + table: 'escola', + tableField: 'sala_diretoria', + resultField: 'directors_room_id', + where: { + relation: '=', + type: 'boolean', + field: 'sala_diretoria' + } +}).addValue({ + name: 'teacher_room', + table: 'escola', + tableField: 'sala_professor', + resultField: 'teacher_room_id', + where: { + relation: '=', + type: 'boolean', + field: 'sala_professor' + } +}).addValue({ + name: 'playground', + table: 'escola', + tableField: 'parque_infantil', + resultField: 'playground_id', + where: { + relation: '=', + type: 'boolean', + field: 'parque_infantil' + } +}).addValue({ + name: 'nusery', + table: 'escola', + tableField: 'bercario', + resultField: 'nusery_id', + where: { + relation: '=', + type: 'boolean', + field: 'bercario' + } +}).addValue({ + name: 'toilet_inside_building', + table: 'escola', + tableField: 'sanitario_dentro_predio', + resultField: 'toilet_inside_building_id', + where: { + relation: '=', + type: 'boolean', + field: 'sanitario_dentro_predio' + } +}).addValue({ + name: 'wastepipe', + table: 'escola', + tableField: 'esgoto_sanitario', + resultField: 'wastepipe_id', + where: { + relation: '=', + type: 'boolean', + field: 'esgoto_sanitario' + } +}).addValue({ + name: 'water', + table: 'escola', + tableField: 'fornecimento_agua', + resultField: 'water_id', + where: { + relation: '=', + type: 'boolean', + field: 'fornecimento_agua ' + } +}).addValue({ + name: 'energy', + table: 'escola', + tableField: 'fornecimento_energia', + resultField: 'energy_id', + where: { + relation: '=', + type: 'boolean', + field: 'fornecimento_energia ' + } +}).addValue({ + name: 'broadband', + table: 'escola', + tableField: 'internet_banda_larga', + resultField: 'broadband_id', + where: { + relation: '=', + type: 'boolean', + field: 'internet_banda_larga ' + } +}).addValue({ + name: 'restroom_pne', + table: 'escola', + tableField: 'sanitario_pne', + resultField: 'restroom_pne_id', + where: { + relation: '=', + type: 'boolean', + field: 'sanitario_pne ' + } +}).addValue({ + name: 'denpendency_pne', + table: 'escola', + tableField: 'dependencias_pne', + resultField: 'denpendency_pne_id', + where: { + relation: '=', + type: 'boolean', + field: 'dependencias_pne ' + } +}).addValue({ + name: 'agreement', + table: 'escola', + tableField: 'tipo_convenio_pp', + resultField: 'agreement_id', + where: { + relation: '=', + type: 'integer', + field: 'tipo_convenio_pp' + } +}).addValue({ + name: 'building_school', + table: 'escola', + tableField: 'local_func_predio_escolar', + resultField: 'building_school_id', + where: { + relation: '=', + type: 'boolean', + field: 'local_func_predio_escolar' + } +}).addValue({ + name: 'library', + table: 'escola', + tableField: 'biblioteca', + resultField: 'library_id', + where: { + relation: '=', + type: 'boolean', + field: 'biblioteca' + } +}).addValue({ + name: 'reading_room', + table: 'escola', + tableField: 'sala_leitura', + resultField: 'reading_room_id', + where: { + relation: '=', + type: 'boolean', + field: 'sala_leitura' + } +}).addValue({ + name: 'library_reading_room', + table: 'escola', + tableField: 'biblioteca_sala_leitura', + resultField: 'library_reading_room_id', + where: { + relation: '=', + type: 'boolean', + condition: 'or', + field: 'biblioteca_sala_leitura' + } +}).addValue({ + name: 'min_year', + table: 'escola', + tableField: 'ano_censo', + resultField: 'year', + where: { + relation: '>=', + type: 'integer', + field: 'ano_censo' + } +}).addValue({ + name: 'max_year', + table: 'escola', + tableField: 'ano_censo', + resultField: 'year', + where: { + relation: '<=', + type: 'integer', + field: 'ano_censo' + } +}); + +// .addValue({ //Using multiple_where +// name: 'library_reading_room', +// table: 'escola', +// tableField: ['biblioteca', 'sala_leitura', 'biblioteca_sala_leitura'], +// resultField: 'library_or_reading_room', +// where: { +// relation: '=', +// type: 'boolean', +// condition: 'or', +// field: ['biblioteca', 'sala_leitura', 'biblioteca_sala_leitura'] +// } + +// SELECT COUNT(escola.id) AS "total", 'Brasil' AS "name", escola.ano_censo AS "year" FROM escola WHERE (escola.biblioteca = ? OR escola.sala_leitura = ? OR escola.biblioteca_sala_leitura) AND (escola.situacao_de_funcionamento = 1 AND escola.ensino_regular = 1) GROUP BY escola.ano_censo ORDER BY escola.ano_censo ASC schoolApp.get('/', rqf.parse(), rqf.build(), (req, res, next) => { console.log(req.filter); if(typeof req.filter === 'undefined' || Object.keys(req.filter).length === 0) { @@ -90,4 +827,16 @@ schoolApp.get('/', rqf.parse(), rqf.build(), (req, res, next) => { next(); }, query, response('school')); +schoolApp.get('/count', rqfCount.parse(), rqfCount.build(), (req, res, next) => { + + req.sql.from('escola') + .field('COUNT(escola.id)', 'total') + .field("'Brasil'", 'name') + .field('escola.ano_censo', 'year') + .group('escola.ano_censo') + .order('escola.ano_censo') + .where('escola.situacao_de_funcionamento = 1 AND escola.ensino_regular = 1'); + next(); +}, query, id2str.transform(true), response('school')); + module.exports = schoolApp; diff --git a/src/test/schoolCount.js b/src/test/schoolCount.js new file mode 100644 index 0000000000000000000000000000000000000000..0a94f2d7a9b235cef2d2136f5d52f75ad6cfe12d --- /dev/null +++ b/src/test/schoolCount.js @@ -0,0 +1,640 @@ +process.env.NODE_ENV = 'test'; + +const chai = require('chai'); + +const dirtyChai = require('dirty-chai'); + +chai.use(dirtyChai); + +const chaiXml = require('chai-xml'); + +chai.use(chaiXml); + +const chaiHttp = require('chai-http'); + +const assert = chai.assert; + +const expect = chai.expect; + +const should = chai.should(); // actually call the function + +const libs = `${process.cwd()}/libs`; + +const server = require(`${libs}/app`); + +chai.use(chaiHttp); + +describe('request schools count', () => { + it('should list the locations', (done) => { + chai.request(server) + .get('/api/v1/school/location') + .end((err, res) => { + res.should.have.status(200); + res.should.be.json; + res.body.should.have.property('result'); + res.body.result.should.be.a('array'); + res.body.result[0].should.have.property('id'); + res.body.result[0].should.have.property('name'); + done(); + }); + }); + + it('should list the administrative dependencies', (done) => { + chai.request(server) + .get('/api/v1/school/adm_dependency') + .end((err, res) => { + res.should.have.status(200); + res.should.be.json; + res.body.should.have.property('result'); + res.body.result.should.be.a('array'); + res.body.result[0].should.have.property('id'); + res.body.result[0].should.have.property('name'); + done(); + }); + }); + + it('should list the administrative dependencies detailed', (done) => { + chai.request(server) + .get('/api/v1/school/adm_dependency_detailed') + .end((err, res) => { + res.should.have.status(200); + res.should.be.json; + res.body.should.have.property('result'); + res.body.result.should.be.a('array'); + res.body.result[0].should.have.property('id'); + res.body.result[0].should.have.property('name'); + done(); + }); + }); + + it('should list the government agreement', (done) => { + chai.request(server) + .get('/api/v1/school/government_agreement') + .end((err, res) => { + res.should.have.status(200); + res.should.be.json; + res.body.should.have.property('result'); + res.body.result.should.be.a('array'); + res.body.result[0].should.have.property('id'); + res.body.result[0].should.have.property('name'); + done(); + }); + }); + + it('should list the agreement', (done) => { + chai.request(server) + .get('/api/v1/school/agreement') + .end((err, res) => { + res.should.have.status(200); + res.should.be.json; + res.body.should.have.property('result'); + res.body.result.should.be.a('array'); + res.body.result[0].should.have.property('id'); + res.body.result[0].should.have.property('name'); + done(); + }); + }); + + it('should list the building school', (done) => { + chai.request(server) + .get('/api/v1/school/building_school') + .end((err, res) => { + res.should.have.status(200); + res.should.be.json; + res.body.should.have.property('result'); + res.body.result.should.be.a('array'); + res.body.result[0].should.have.property('id'); + res.body.result[0].should.have.property('name'); + done(); + }); + }); + + it('should list the informatics labs', (done) => { + chai.request(server) + .get('/api/v1/school/informatics_lab') + .end((err, res) => { + res.should.have.status(200); + res.should.be.json; + res.body.should.have.property('result'); + res.body.result.should.be.a('array'); + res.body.result[0].should.have.property('id'); + res.body.result[0].should.have.property('name'); + done(); + }); + }); + + it('should list the science labs', (done) => { + chai.request(server) + .get('/api/v1/school/science_lab') + .end((err, res) => { + res.should.have.status(200); + res.should.be.json; + res.body.should.have.property('result'); + res.body.result.should.be.a('array'); + res.body.result[0].should.have.property('id'); + res.body.result[0].should.have.property('name'); + done(); + }); + }); + + it('should list the directors room', (done) => { + chai.request(server) + .get('/api/v1/school/directors_room') + .end((err, res) => { + res.should.have.status(200); + res.should.be.json; + res.body.should.have.property('result'); + res.body.result.should.be.a('array'); + res.body.result[0].should.have.property('id'); + res.body.result[0].should.have.property('name'); + done(); + }); + }); + + it('should list the teacher room', (done) => { + chai.request(server) + .get('/api/v1/school/teacher_room') + .end((err, res) => { + res.should.have.status(200); + res.should.be.json; + res.body.should.have.property('result'); + res.body.result.should.be.a('array'); + res.body.result[0].should.have.property('id'); + res.body.result[0].should.have.property('name'); + done(); + }); + }); + + it('should list the cook room', (done) => { + chai.request(server) + .get('/api/v1/school/cook_room') + .end((err, res) => { + res.should.have.status(200); + res.should.be.json; + res.body.should.have.property('result'); + res.body.result.should.be.a('array'); + res.body.result[0].should.have.property('id'); + res.body.result[0].should.have.property('name'); + done(); + }); + }); + + it('should list the playgrounds', (done) => { + chai.request(server) + .get('/api/v1/school/playground') + .end((err, res) => { + res.should.have.status(200); + res.should.be.json; + res.body.should.have.property('result'); + res.body.result.should.be.a('array'); + res.body.result[0].should.have.property('id'); + res.body.result[0].should.have.property('name'); + done(); + }); + }); + + it('should list the indor sports court', (done) => { + chai.request(server) + .get('/api/v1/school/indor_sports_court') + .end((err, res) => { + res.should.have.status(200); + res.should.be.json; + res.body.should.have.property('result'); + res.body.result.should.be.a('array'); + res.body.result[0].should.have.property('id'); + res.body.result[0].should.have.property('name'); + done(); + }); + }); + + it('should list the nusery', (done) => { + chai.request(server) + .get('/api/v1/school/nusery') + .end((err, res) => { + res.should.have.status(200); + res.should.be.json; + res.body.should.have.property('result'); + res.body.result.should.be.a('array'); + res.body.result[0].should.have.property('id'); + res.body.result[0].should.have.property('name'); + done(); + }); + }); + + it('should list the special attendence room', (done) => { + chai.request(server) + .get('/api/v1/school/special_attendence_room') + .end((err, res) => { + res.should.have.status(200); + res.should.be.json; + res.body.should.have.property('result'); + res.body.result.should.be.a('array'); + res.body.result[0].should.have.property('id'); + res.body.result[0].should.have.property('name'); + done(); + }); + }); + + it('should list the toilets inside building', (done) => { + chai.request(server) + .get('/api/v1/school/toilet_inside_building') + .end((err, res) => { + res.should.have.status(200); + res.should.be.json; + res.body.should.have.property('result'); + res.body.result.should.be.a('array'); + res.body.result[0].should.have.property('id'); + res.body.result[0].should.have.property('name'); + done(); + }); + }); + + it('should list the denpendency pne', (done) => { + chai.request(server) + .get('/api/v1/school/denpendency_pne') + .end((err, res) => { + res.should.have.status(200); + res.should.be.json; + res.body.should.have.property('result'); + res.body.result.should.be.a('array'); + res.body.result[0].should.have.property('id'); + res.body.result[0].should.have.property('name'); + done(); + }); + }); + + it('should list the restroom pne', (done) => { + chai.request(server) + .get('/api/v1/school/restroom_pne') + .end((err, res) => { + res.should.have.status(200); + res.should.be.json; + res.body.should.have.property('result'); + res.body.result.should.be.a('array'); + res.body.result[0].should.have.property('id'); + res.body.result[0].should.have.property('name'); + done(); + }); + }); + + it('should list the broadband', (done) => { + chai.request(server) + .get('/api/v1/school/broadband') + .end((err, res) => { + res.should.have.status(200); + res.should.be.json; + res.body.should.have.property('result'); + res.body.result.should.be.a('array'); + res.body.result[0].should.have.property('id'); + res.body.result[0].should.have.property('name'); + done(); + }); + }); + + it('should list the energy', (done) => { + chai.request(server) + .get('/api/v1/school/energy') + .end((err, res) => { + res.should.have.status(200); + res.should.be.json; + res.body.should.have.property('result'); + res.body.result.should.be.a('array'); + res.body.result[0].should.have.property('id'); + res.body.result[0].should.have.property('name'); + done(); + }); + }); + + it('should list the water', (done) => { + chai.request(server) + .get('/api/v1/school/water') + .end((err, res) => { + res.should.have.status(200); + res.should.be.json; + res.body.should.have.property('result'); + res.body.result.should.be.a('array'); + res.body.result[0].should.have.property('id'); + res.body.result[0].should.have.property('name'); + done(); + }); + }); + + it('should list the wastepipe', (done) => { + chai.request(server) + .get('/api/v1/school/wastepipe') + .end((err, res) => { + res.should.have.status(200); + res.should.be.json; + res.body.should.have.property('result'); + res.body.result.should.be.a('array'); + res.body.result[0].should.have.property('id'); + res.body.result[0].should.have.property('name'); + done(); + }); + }); + + it('should list the education day care child', (done) => { + chai.request(server) + .get('/api/v1/school/education_day_care_child') + .end((err, res) => { + res.should.have.status(200); + res.should.be.json; + res.body.should.have.property('result'); + res.body.result.should.be.a('array'); + res.body.result[0].should.have.property('id'); + res.body.result[0].should.have.property('name'); + done(); + }); + }); + + it('should list the education preschool child', (done) => { + chai.request(server) + .get('/api/v1/school/education_preschool_child') + .end((err, res) => { + res.should.have.status(200); + res.should.be.json; + res.body.should.have.property('result'); + res.body.result.should.be.a('array'); + res.body.result[0].should.have.property('id'); + res.body.result[0].should.have.property('name'); + done(); + }); + }); + + it('should list the education begin elementary school', (done) => { + chai.request(server) + .get('/api/v1/school/education_begin_elementary_school') + .end((err, res) => { + res.should.have.status(200); + res.should.be.json; + res.body.should.have.property('result'); + res.body.result.should.be.a('array'); + res.body.result[0].should.have.property('id'); + res.body.result[0].should.have.property('name'); + done(); + }); + }); + + it('should list the education begin elementary school', (done) => { + chai.request(server) + .get('/api/v1/school/education_begin_elementary_school') + .end((err, res) => { + res.should.have.status(200); + res.should.be.json; + res.body.should.have.property('result'); + res.body.result.should.be.a('array'); + res.body.result[0].should.have.property('id'); + res.body.result[0].should.have.property('name'); + done(); + }); + }); + + it('should list the education end elementary school', (done) => { + chai.request(server) + .get('/api/v1/school/education_end_elementary_school') + .end((err, res) => { + res.should.have.status(200); + res.should.be.json; + res.body.should.have.property('result'); + res.body.result.should.be.a('array'); + res.body.result[0].should.have.property('id'); + res.body.result[0].should.have.property('name'); + done(); + }); + }); + + it('should list the education middle school', (done) => { + chai.request(server) + .get('/api/v1/school/education_middle_school') + .end((err, res) => { + res.should.have.status(200); + res.should.be.json; + res.body.should.have.property('result'); + res.body.result.should.be.a('array'); + res.body.result[0].should.have.property('id'); + res.body.result[0].should.have.property('name'); + done(); + }); + }); + + it('should list the education professional', (done) => { + chai.request(server) + .get('/api/v1/school/education_professional') + .end((err, res) => { + res.should.have.status(200); + res.should.be.json; + res.body.should.have.property('result'); + res.body.result.should.be.a('array'); + res.body.result[0].should.have.property('id'); + res.body.result[0].should.have.property('name'); + done(); + }); + }); + + it('should list the education eja', (done) => { + chai.request(server) + .get('/api/v1/school/education_eja') + .end((err, res) => { + res.should.have.status(200); + res.should.be.json; + res.body.should.have.property('result'); + res.body.result.should.be.a('array'); + res.body.result[0].should.have.property('id'); + res.body.result[0].should.have.property('name'); + done(); + }); + }); + + it('should list the reading room', (done) => { + chai.request(server) + .get('/api/v1/school/reading_room') + .end((err, res) => { + res.should.have.status(200); + res.should.be.json; + res.body.should.have.property('result'); + res.body.result.should.be.a('array'); + res.body.result[0].should.have.property('id'); + res.body.result[0].should.have.property('name'); + done(); + }); + }); + + it('should list the library and/or reading_room', (done) => { + chai.request(server) + .get('/api/v1/school/library_reading_room') + .end((err, res) => { + res.should.have.status(200); + res.should.be.json; + res.body.should.have.property('result'); + res.body.result.should.be.a('array'); + res.body.result[0].should.have.property('id'); + res.body.result[0].should.have.property('name'); + done(); + }); + }); + + it('should list school with valid dimensions and filters', (done) => { + chai.request(server) + .get('/api/v1/school/count?dims=location,adm_dependency,government_agreement,library,reading_room,library_reading_room') + .end((err, res) => { + res.should.have.status(200); + res.should.be.json; + res.body.should.have.property('result'); + res.body.result.should.be.a('array'); + res.body.result[0].should.have.property('location_name'); + res.body.result[0].should.have.property('adm_dependency_name'); + res.body.result[0].should.have.property('government_agreement_name'); + res.body.result[0].should.have.property('library_name'); + res.body.result[0].should.have.property('reading_room_name'); + res.body.result[0].should.have.property('library_reading_room_name'); + res.body.result[0].should.have.property('total'); + res.body.result[0].should.have.property('year'); + done(); + }); + }); + + it('should list school with valid dimensions and filters', (done) => { + chai.request(server) + .get('/api/v1/school/count?dims=region,state,cook_room&filter=min_year:2015,max_year:2016,city:4106902,indor_sports_court:1') + .end((err, res) => { + res.should.have.status(200); + res.should.be.json; + res.body.should.have.property('result'); + res.body.result.should.be.a('array'); + res.body.result[0].should.have.property('region_name'); + res.body.result[0].should.have.property('state_name'); + res.body.result[0].should.have.property('cook_room_name'); + res.body.result[0].should.have.property('total'); + res.body.result[0].should.have.property('year'); + done(); + }); + }); + + it('should list school with no argument dimensions and filters', (done) => { + chai.request(server) + .get('/api/v1/school/count') + .end((err, res) => { + res.should.have.status(200); + res.should.be.json; + res.body.should.have.property('result'); + res.body.result.should.be.a('array'); + res.body.result[0].should.have.property('name'); + res.body.result[0].should.have.property('total'); + res.body.result[0].should.have.property('year'); + done(); + }); + }); + + it('should list school with valid dimensions and filters of states', (done) => { + chai.request(server) + .get('/api/v1/school/count?dims=state&filter=min_year:2015,max_year:2016') + .end((err, res) => { + res.should.have.status(200); + res.should.be.json; + res.body.should.have.property('result'); + res.body.result.should.be.a('array'); + res.body.result[0].should.have.property('state_name'); + res.body.result[0].should.have.property('total'); + res.body.result[0].should.have.property('year'); + done(); + }); + }); + + it('should list school with valid dimensions and filters of states', (done) => { + chai.request(server) + .get('/api/v1/school/count?dims=state,education_professional,education_eja&filter=min_year:2015,max_year:2016') + .end((err, res) => { + res.should.have.status(200); + res.should.be.json; + res.body.should.have.property('result'); + res.body.result.should.be.a('array'); + res.body.result[0].should.have.property('state_name'); + res.body.result[0].should.have.property('education_professional_name'); + res.body.result[0].should.have.property('education_eja_name'); + res.body.result[0].should.have.property('total'); + res.body.result[0].should.have.property('year'); + done(); + }); + }); + + it('should list school with valid dimensions and filters of states', (done) => { + chai.request(server) + .get('/api/v1/school/count?dims=state&filter=min_year:2015,max_year:2016') + .end((err, res) => { + res.should.have.status(200); + res.should.be.json; + res.body.should.have.property('result'); + res.body.result.should.be.a('array'); + res.body.result[0].should.have.property('state_name'); + res.body.result[0].should.have.property('total'); + res.body.result[0].should.have.property('year'); + done(); + }); + }); + + it('should list school with valid dimensions and filters of states that have no toilet inside building', (done) => { + chai.request(server) + .get('/api/v1/school/count?dims=state&filter=min_year:2015,max_year:2016,toilet_inside_building:0') + .end((err, res) => { + res.should.have.status(200); + res.should.be.json; + res.body.should.have.property('result'); + res.body.result.should.be.a('array'); + res.body.result[0].should.have.property('state_name'); + res.body.result[0].should.have.property('total'); + res.body.result[0].should.have.property('year'); + done(); + }); + }); + + it('should list school with valid dimensions and filters of states with energy and water', (done) => { + chai.request(server) + .get('/api/v1/school/count?dims=state&filter=min_year:2015,max_year:2016,energy:1,water:1') + .end((err, res) => { + res.should.have.status(200); + res.should.be.json; + res.body.should.have.property('result'); + res.body.result.should.be.a('array'); + res.body.result[0].should.have.property('state_name'); + res.body.result[0].should.have.property('total'); + res.body.result[0].should.have.property('year'); + done(); + }); + }); + + it('should list school with valid dimensions and filters related to library and reading_room of Curitiba', (done) => { + chai.request(server) + .get('/api/v1/school/count?dims=city,library,reading_room,library_reading_room&filter=min_year:2015,max_year:2016,city:4106902') + .end((err, res) => { + res.should.have.status(200); + res.should.be.json; + res.body.should.have.property('result'); + res.body.result.should.be.a('array'); + res.body.result[0].should.have.property('city_name'); + res.body.result[0].should.have.property('library_name'); + res.body.result[0].should.have.property('reading_room_name'); + res.body.result[0].should.have.property('library_reading_room_name'); + res.body.result[0].should.have.property('total'); + res.body.result[0].should.have.property('year'); + done(); + }); + }); + + it('should list school with valid dimensions and filters related to library and reading_room of cities of Paraná', (done) => { + chai.request(server) + .get('/api/v1/school/count?dims=city,library,reading_room,library_reading_room&filter=min_year:2015,max_year:2016,state:41') + .end((err, res) => { + res.should.have.status(200); + res.should.be.json; + res.body.should.have.property('result'); + res.body.result.should.be.a('array'); + res.body.result[0].should.have.property('city_name'); + res.body.result[0].should.have.property('library_name'); + res.body.result[0].should.have.property('reading_room_name'); + res.body.result[0].should.have.property('library_reading_room_name'); + res.body.result[0].should.have.property('total'); + res.body.result[0].should.have.property('year'); + done(); + }); + }); +});