Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
simcaq-node
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Harbor Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
simcaq
simcaq-node
Commits
1cd65b8b
Commit
1cd65b8b
authored
2 years ago
by
Leon A. Okida Gonçalves
Browse files
Options
Downloads
Patches
Plain Diff
Add simcaq classroom size route
parent
87974191
No related branches found
Branches containing commit
No related tags found
Tags containing commit
4 merge requests
!377
prd_version of simcaq
,
!368
update filter in v2 school
,
!362
Development
,
!361
Add workload and number of employees routes
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/libs/routes_v2/api.js
+3
-0
3 additions, 0 deletions
src/libs/routes_v2/api.js
src/libs/routes_v2/simcaqClassroomSize.js
+147
-0
147 additions, 0 deletions
src/libs/routes_v2/simcaqClassroomSize.js
with
150 additions
and
0 deletions
src/libs/routes_v2/api.js
+
3
−
0
View file @
1cd65b8b
...
...
@@ -142,6 +142,8 @@ const simcaqSecondReport = require(`${libs}/routes_v2/simcaqSecondReport`);
const
simcaqDivisionOfResponsibility
=
require
(
`
${
libs
}
/routes_v2/simcaqDivisionOfResponsibility`
);
const
simcaqClassroomSize
=
require
(
`
${
libs
}
/routes_v2/simcaqClassroomSize`
);
api
.
get
(
'
/
'
,
(
req
,
res
)
=>
{
res
.
json
({
msg
:
'
SimCAQ API v2 is running
'
});
});
...
...
@@ -204,5 +206,6 @@ api.use('/simcaq_first_report', simcaqFirstReport);
api
.
use
(
'
/simcaq_enrollment_diagnosis
'
,
simcaqEnrollmentDiagnosis
);
api
.
use
(
'
/simcaq_second_report
'
,
simcaqSecondReport
);
api
.
use
(
'
/simcaq_division_of_responsibility
'
,
simcaqDivisionOfResponsibility
);
api
.
use
(
'
/simcaq_classroom_size
'
,
simcaqClassroomSize
);
module
.
exports
=
api
;
This diff is collapsed.
Click to expand it.
src/libs/routes_v2/simcaqClassroomSize.js
0 → 100644
+
147
−
0
View file @
1cd65b8b
/*
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
simcaqClassroomSizeApp
=
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`
);
simcaqClassroomSizeApp
.
use
(
cache
(
'
15 day
'
));
rqf
.
addField
({
name
:
'
filter
'
,
field
:
false
,
where
:
true
}).
addField
({
name
:
'
dims
'
,
field
:
true
,
where
:
false
}).
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_tamanho_das_turmas
'
}
},
'
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_tamanho_das_turmas
'
}
},
'
dims
'
).
addValue
({
name
:
'
school
'
,
table
:
'
escola_agregada
'
,
tableField
:
'
id
'
,
where
:
{
relation
:
'
=
'
,
type
:
'
integer
'
,
field
:
'
id
'
},
join
:
{
primary
:
'
id
'
,
foreign
:
'
escola_id
'
,
foreignTable
:
'
simcaq_tamanho_das_turmas
'
}
},
'
dims
'
).
addValue
({
name
:
'
education_level_short_id
'
,
table
:
'
simcaq_tamanho_das_turmas
'
,
tableField
:
'
etapa
'
,
where
:
{
relation
:
'
=
'
,
type
:
'
integer
'
,
field
:
'
etapa
'
}
}).
addValue
({
name
:
'
location
'
,
table
:
'
simcaq_tamanho_das_turmas
'
,
tableField
:
'
localizacao_id
'
,
where
:
{
relation
:
'
=
'
,
type
:
'
integer
'
,
field
:
'
localizacao_id
'
}
}).
addValue
({
name
:
'
adm_dependency_public_id
'
,
table
:
'
simcaq_tamanho_das_turmas
'
,
tableField
:
'
rede
'
,
where
:
{
relation
:
'
=
'
,
type
:
'
integer
'
,
field
:
'
rede
'
}
}).
addValue
({
name
:
'
year
'
,
table
:
'
simcaq_tamanho_das_turmas
'
,
tableField
:
'
ano_censo
'
,
where
:
{
relation
:
'
=
'
,
type
:
'
integer
'
,
field
:
'
ano_censo
'
}
});
simcaqClassroomSizeApp
.
get
(
'
/
'
,
rqf
.
parse
(),
rqf
.
build
(),
(
req
,
res
,
next
)
=>
{
req
.
sql
.
from
(
'
simcaq_tamanho_das_turmas
'
)
.
field
(
'
AVG(simcaq_tamanho_das_turmas.num_matricula)
'
,
'
average_classroom_size
'
)
.
field
(
'
simcaq_tamanho_das_turmas.etapa
'
,
'
education_level_short_id
'
)
.
field
(
'
simcaq_tamanho_das_turmas.ano_censo
'
,
'
year
'
)
.
group
(
'
simcaq_tamanho_das_turmas.ano_censo
'
)
.
group
(
'
simcaq_tamanho_das_turmas.etapa
'
);
next
();
},
query
,
id2str
.
transform
(),
response
(
'
classroomSize
'
));
module
.
exports
=
simcaqClassroomSizeApp
;
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment