-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.js
205 lines (191 loc) · 4.87 KB
/
index.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
const http = require('http')
const express = require('express')
const app = express()
const bodyParser = require('body-parser')
const swaggerJSDoc = require('swagger-jsdoc')
const swaggerUi = require('swagger-ui-express')
const correios = require('correios-lib')
const ibge = require('municipios-ibge')
const config = {
port: process.env.PORT || process.env.OPENSHIFT_NODEJS_PORT || 8080,
ip: process.env.IP || process.env.HOST || process.env.OPENSHIFT_NODEJS_IP || '0.0.0.0'
}
app.use(bodyParser.json())
app.use(require('express-status-monitor')())
const swaggerSpec = swaggerJSDoc({
swaggerDefinition: {
info: {
title: 'API de Microserviços dos Correios',
version: '1.0.0',
description: 'Catálogo dos métodos presentes na API de microserviços dos correios',
contact: {
name: 'Jhony Alceu Pereira',
url: 'https://jhonystein.github.io',
email: '[email protected]'
},
license: {
name: 'MIT',
url: 'https://raw.githubusercontent.com/jhonystein/correios/master/LICENSE'
}
},
authAction: false,
basePath: '/api',
host: 'apicorreios.herokuapp.com',
externalDocs: {
description: 'Status do Serviço',
url: 'http://apicorreios.herokuapp.com/status'
}
},
apis: ['./index.js']
})
app.use((req, res, next) => {
res.header('Access-Control-Allow-Origin', '*')
next();
});
app.get('/swagger.json', function(req, res) {
res.setHeader('Content-Type', 'application/json')
res.send(swaggerSpec)
})
app.use('/api-docs', swaggerUi.serve, swaggerUi.setup(swaggerSpec))
/**
* @swagger
* definitions:
* DadosFrete:
* type: object
* required:
* - servico
* - cepOrigem
* - cepDestino
* - peso
* - altura
* - largura
* - comprimento
* - diametro
* - formato
* properties:
* servico:
* type: array
* items:
* type: string
* cepOrigem:
* type: string
* cepDestino:
* type: string
* peso:
* type: float
* altura:
* type: float
* largura:
* type: float
* comprimento:
* type: float
* diametro:
* type: float
* formato:
* type: string
* maoPropria:
* type: string
* avisoRecebimento:
* type: string
* valor:
* type: float
*/
/**
* @swagger
* /cep/{codigo}:
* get:
* description: Consulta um determinado CEP
* produces:
* - application/json
* parameters:
* - name: codigo
* description: Código do CEP a ser consultado
* in: path
* required: true
* type: string
* responses:
* 200:
* description: Dados do CEP consultado
* 404:
* description: CEP consultado não encontrado
*/
app.get('/api/cep/:codigo', function(req, resp) {
correios.cep(req.params.codigo)
.then(function(data) {
if (data.cep) {
data.codigoIbge = ibge(data.uf, data.cidade)
resp.json(data)
} else {
resp.sendStatus(404)
}
}, function(error) {
resp.status(500).json(error)
})
})
/**
* @swagger
* /rastreio/{codigo}:
* get:
* description: Consulta um código de Rastreio
* produces:
* - application/json
* parameters:
* - name: codigo
* description: Código do Rastreio a ser consultado
* in: path
* required: true
* type: string
* responses:
* 200:
* description: Conjunto dos dados do rastreio
* 404:
* description: Código de Rastreio não encontrado
*/
app.get('/api/rastreio/:codigo', function(req, resp) {
correios.rastreio(req.params.codigo)
.then(function(data) {
if (data.length) {
resp.json(data)
} else {
resp.sendStatus(404)
}
}, function(error) {
resp.status(500).json(error)
})
})
/**
* @swagger
* /frete:
* post:
* description: Realiza uma consulta de valores de frete com suas características
* produces:
* - application/json
* parameters:
* - name: dados
* description: Dados do Frete
* in: body
* required: true
* type: string
* schema:
* $ref: '#/definitions/DadosFrete'
* responses:
* 200:
* description: Dados do frete consultado
* 400:
* description: Dados inválidos para a consulta de frete
*/
app.post('/api/frete', function(req, resp) {
correios.frete(req.body)
.then(function(data){
resp.json(data)
}, function(error) {
resp.status(400).json(error)
})
})
app.get('/', function(req, resp) {
resp.redirect('/api-docs')
})
http.createServer(app)
.listen(config.port, config.ip, function(){
console.log('Micro serviço dos correios iniciado na porta', config.port)
})