-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswagger.js
105 lines (100 loc) · 2.73 KB
/
swagger.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
const express = require("express");
const swaggerUi = require("swagger-ui-express");
const swaggerAutogen = require("swagger-autogen")();
const outputFile = "./swagger-output.json";
const endpointsFiles = ["./index.js"];
const doc = {
info: {
version: "1.0.0",
title: "Timestamp Microservice",
description:
"Documenting API's from the first freeCodeCamp project. (study purposes)",
},
host: "timestamp-microservice-production-ee2f.up.railway.app",
basePath: "/",
schemes: ["http", "https"],
consumes: ["application/json"],
produces: ["application/json"],
tags: [
{
name: "Default",
description: "Default endpoints",
},
],
paths: {
"/": {
get: {
summary: "Get the current time",
responses: {
200: {
description: "Successful response",
schema: {
type: "object",
properties: {
unix: { type: "number", description: "Unix timestamp" },
utc: { type: "string", description: "UTC string" },
},
},
},
},
},
},
"/api/{date}": {
get: {
summary: "Get time based on provided date",
parameters: [
{
name: "date",
in: "path",
required: true,
type: "string",
description:
"Date parameter in the format YYYY-MM-DD or Unix timestamp",
},
],
responses: {
200: {
description: "Successful response",
schema: {
type: "object",
properties: {
unix: { type: "number", description: "Unix timestamp" },
utc: { type: "string", description: "UTC string" },
},
},
},
400: {
description: "Invalid Date",
},
},
},
},
"/api/hello": {
get: {
summary: "Get a greeting message",
responses: {
200: {
description: "Successful response",
schema: {
type: "object",
properties: {
greeting: { type: "string", description: "Greeting message" },
},
},
},
},
},
},
},
};
swaggerAutogen(outputFile, endpointsFiles, doc).then(() => {
const app = express();
app.use(
"/api-docs",
swaggerUi.serve,
swaggerUi.setup(require("./swagger-output.json"))
);
const listener = app.listen(process.env.PORT || 3001, function () {
console.log("Your app is listening on port " + listener.address().port);
});
});