-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
server.js
89 lines (67 loc) · 2.76 KB
/
server.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
const port = process.env.PORT || 10000;
const express = require('express');
const bodyParser = require('body-parser');
const path = require('path');
const knex = require('knex')({
client: 'sqlite3',
connection: { filename: './cep.db3' },
useNullAsDefault: true,
});
var swaggerUi = require('swagger-ui-express'),
swaggerDocument = require('./swagger.json');
var cors = require('cors');
const app = express();
app.use(cors());
app.use(bodyParser.urlencoded({ extended: false }));
app.get('/api/v1/cep/:filter', (req, res) => {
filter = req.params.filter;
if (filter != '') {
list = () => knex('cep').select('ID','txt_cep as cep','txt_cidade_uf as cidadeUf','txt_bairro as bairro','txt_localidade as localidade')
.orWhere('txt_cep', filter)
.limit(10);
} else {
list = () => knex('cep').select('ID','txt_cep as cep','txt_cidade_uf as cidadeUf','txt_bairro as bairro','txt_localidade as localidade').limit(10)
}
list()
.then(data => res.json(data))
})
app.get('/api/v1/bairro/:filter', (req, res) => {
filter = req.params.filter;
if (filter != '') {
list = () => knex('cep').select('ID','txt_cep as cep','txt_cidade_uf as cidadeUf','txt_bairro as bairro','txt_localidade as localidade')
.orWhere('txt_bairro', 'like', '%'+filter+'%')
.limit(10);
} else {
list = () => knex('cep').select('ID','txt_cep as cep','txt_cidade_uf as cidadeUf','txt_bairro as bairro','txt_localidade as localidade').limit(10)
}
list()
.then(data => res.json(data))
})
app.get('/api/v1/cidade/:filter', (req, res) => {
filter = req.params.filter;
if (filter != '') {
list = () => knex('cep').select('ID','txt_cep as cep','txt_cidade_uf as cidadeUf','txt_bairro as bairro','txt_localidade as localidade')
.orWhere('txt_cidade_uf', 'like', '%'+filter+'%')
.limit(10);
} else {
list = () => knex('cep').select('ID','txt_cep as cep','txt_cidade_uf as cidadeUf','txt_bairro as bairro','txt_localidade as localidade').limit(10)
}
list()
.then(data => res.json(data))
})
app.get('/api/v1/localidade/:filter', (req, res) => {
filter = req.params.filter;
if (filter != '') {
list = () => knex('cep').select('ID','txt_cep as cep','txt_cidade_uf as cidadeUf','txt_bairro as bairro','txt_localidade as localidade')
.orWhere('txt_localidade', 'like', '%'+filter+'%')
.limit(10);
} else {
list = () => knex('cep').select('ID','txt_cep as cep','txt_cidade_uf as cidadeUf','txt_bairro as bairro','txt_localidade as localidade').limit(10)
}
list()
.then(data => res.json(data))
})
app.use('/', swaggerUi.serve, swaggerUi.setup(swaggerDocument));
app.listen(port, () => {
console.log(`CEP REST API started on http://localhost:${port}\nPress Ctrl+C to terminate.`)
})