diff --git a/src/libs/routes/idhme.js b/src/libs/routes/idhme.js index 5ce84d938532f66f30795071ccace15eaee5a91e..691f188c25f65eec4d43adf1a396f1c2d6e37044 100644 --- a/src/libs/routes/idhme.js +++ b/src/libs/routes/idhme.js @@ -123,13 +123,13 @@ rqf.addField({ idhmeApp.get('/', rqf.parse(), (req, res, next) => { - if(typeof req.filter === 'undefined' || Object.keys(req.filter).length === 0) { - res.status(400); - next({ - status: 400, - message: 'Wrong/No filter specified' - }); - } + // if(typeof req.filter === 'undefined' || Object.keys(req.filter).length === 0) { + // res.status(400); + // next({ + // status: 400, + // message: 'Wrong/No filter specified' + // }); + // } if (("city" in req.dims) || ("city" in req.filter)) { req.sql.from('adh_idh') @@ -139,7 +139,7 @@ idhmeApp.get('/', rqf.parse(), (req, res, next) => { .group('adh_idh.idhm_e') .group('adh_idh.ano_censo') .group('adh_idh.municipio_id'); - } else if (("state" in req.filter) || ("state" in req.dims) && !("city" in req.filter) && !("city" in req.dims)) { + } else if (("state" in req.filter) || ("state" in req.dims)) { req.sql.from('adh_idh_uf') .field('adh_idh_uf.idhm_e', 'total') .field('adh_idh_uf.ano_censo', 'year') diff --git a/src/libs/routes/idhml.js b/src/libs/routes/idhml.js index eb39779db0df0a47543266e013bd97bb3d4faf94..ddd7af6b2b18b05bd19d1909d78abb769edb65d4 100644 --- a/src/libs/routes/idhml.js +++ b/src/libs/routes/idhml.js @@ -122,13 +122,13 @@ rqf.addField({ }); idhmlApp.get('/', rqf.parse(), (req, res, next) => { - if(typeof req.filter === 'undefined' || Object.keys(req.filter).length === 0) { - res.status(400); - next({ - status: 400, - message: 'Wrong/No filter specified' - }); - } + // if(typeof req.filter === 'undefined' || Object.keys(req.filter).length === 0) { + // res.status(400); + // next({ + // status: 400, + // message: 'Wrong/No filter specified' + // }); + // } if (("city" in req.dims) || ("city" in req.filter)) { req.sql.from('adh_idh') @@ -138,7 +138,7 @@ idhmlApp.get('/', rqf.parse(), (req, res, next) => { .group('adh_idh.idhm_l') .group('adh_idh.ano_censo') .group('adh_idh.municipio_id'); - } else if (("state" in req.filter) || ("state" in req.dims) && !("city" in req.filter) && !("city" in req.dims)) { + } else if (("state" in req.filter) || ("state" in req.dims)) { req.sql.from('adh_idh_uf') .field('adh_idh_uf.idhm_l', 'total') .field('adh_idh_uf.ano_censo', 'year')