-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver-example.js
More file actions
174 lines (165 loc) · 3.5 KB
/
Copy pathserver-example.js
File metadata and controls
174 lines (165 loc) · 3.5 KB
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
const express = require('express');
const app = express();
const port = 3000;
const InternalExpressSwagger = require('./index');
require('dotenv').config();
const apiDoc = new InternalExpressSwagger({
// See Swagger 2.0 specifications https://swagger.io/specification/v2/#info-object for 'info' field
info: {
title: 'Pet Store',
description: 'API for my Pet Store',
},
googleOauthConfig: {
cookieSecret: process.env.COOKIE_SECRET,
googleClientId: process.env.GOOGLE_CLIENT_ID,
googleClientSecret: process.env.GOOGLE_CLIENT_SECRET,
allowedDomains: process.env.ALLOWED_DOMAINS.split(','),
sessionDuration: 60 * 60 * 1000
},
});
/**
* Here are a few examples of adding Swagger documentation for routes
*
* See Swagger 2.0 specifications https://swagger.io/specification/v2/#paths-object for the 'path' field
*/
apiDoc.post('/pet', {
description: 'Add a pet to the store',
parameters: [
{
name: 'body',
in: 'body',
required: true,
schema: {
type: 'object',
properties: {
name: {
type: 'string',
example: 'Medor',
},
},
},
},
],
consumers: ['application/json'],
produces: ['application/json'],
responses: {
200: {
examples: {
'application/json': {
id: 1,
name: 'Medor',
},
},
},
},
});
app.post('/pet', (req, res) => {
res.status(201).send();
});
apiDoc.get('/pet/{id}', {
description: 'Retrieve a pet by ID',
parameters: [
{
name: 'id',
in: 'path',
description: 'ID of your pet',
required: true,
type: 'string',
example: '1',
},
],
produces: ['application/json'],
responses: {
200: {
examples: {
'application/json': {
id: 1,
name: 'Medor',
},
},
},
},
});
app.get('/pet:id', (req, res) => {
res.json({
id,
name: 'Metor',
});
});
/**
* Its also possible to use Swagger definitions
*/
const petDefinition = apiDoc.definition('Pet', {
type: 'object',
properties: {
id: {
type: 'number',
example: 1,
},
name: {
type: 'string',
example: 'Medor',
},
},
});
apiDoc.get('/pet', {
description: 'Retrieve all the pets',
produces: ['application/json'],
responses: {
200: {
schema: {
type: 'array',
items: {
$ref: petDefinition,
},
},
},
},
});
app.get('/pet', (req, res) => {
res.json([
{
id: 1,
name: 'Metor',
},
]);
});
app.use('/api-docs', apiDoc.expressHandler());
/**
* You can also use the ApiDocs internal authorization to by-pass the regular authorization
* required by your API.
* That way it makes it easy to "Try out" the requests directly in Swagger UI.
*/
app.use(apiDoc.apiDocsAuthorizationMiddleware());
app.use('/private', (req, res, next) => {
if (req.internalApiDocsAuthorized || req.headers.authorization === 'xxxxx') {
next();
} else {
res.status(401).send('Unauthorized');
}
});
apiDoc.get('/private/pet', {
description: 'Retrieve all the pets, but this route is private',
produces: ['application/json'],
responses: {
200: {
schema: {
type: 'array',
items: {
$ref: petDefinition,
},
},
},
},
});
app.get('/private/pet', (req, res) => {
res.json([
{
id: 1,
name: 'secret-Metor',
},
]);
});
app.listen(port, () => {
console.log(`API Docs are live at http://localhost:${port}/api-docs`);
});