forked from hapi-swagger/hapi-swagger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdot-grouping.js
99 lines (87 loc) · 2 KB
/
dot-grouping.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
// `dot-grouping.js`
// This file also shows the use of `pathReplacements` to group endpoints by replacing `.` with '/`
// in the group naming
const Hapi = require('@hapi/hapi');
const Blipp = require('blipp');
const Inert = require('@hapi/inert');
const Vision = require('@hapi/vision');
const HapiSwagger = require('../');
const swaggerOptions = {
pathPrefixSize: 2,
basePath: '/api/',
info: {
title: 'Test API Documentation',
description: 'This is a sample example of API documentation.'
},
pathReplacements: [
{
replaceIn: 'groups',
pattern: /[.].*$/,
replacement: '/'
}
]
};
const ser = async () => {
const server = Hapi.Server({
host: 'localhost',
port: 3000
});
await server.register([
Inert,
Vision,
Blipp,
{
plugin: HapiSwagger,
options: swaggerOptions
}
]);
// Add a route - handler and route definition is the same for all versions
server.route({
method: 'GET',
path: '/version',
handler: function(request, reply) {
// Return the api-version which was requested
return reply({
version: request.pre.apiVersion
});
}
});
const users = [
{
firstname: 'Peter',
lastname: 'Miller'
}
];
// Add a versioned route - which is actually two routes with prefix '/v1' and '/v2'. Not only the
// handlers are different, but also the route definition itself (like here with response validation).
server.route({
method: 'GET',
path: '/api/user.get',
handler: function(request, h) {
return h.response(users);
},
options: {
tags: ['api']
}
});
server.route({
method: 'GET',
path: '/api/user.search',
handler: function(request, h) {
return h.response(users);
},
options: {
tags: ['api']
}
});
await server.start();
return server;
};
ser()
.then(server => {
console.log(`Server listening on ${server.info.uri}`);
})
.catch(err => {
console.error(err);
process.exit(1);
});