-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
229 lines (210 loc) · 5.62 KB
/
Copy pathindex.js
File metadata and controls
229 lines (210 loc) · 5.62 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
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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
const express = require('express');
const cors = require('cors');
const swaggerJsdoc = require('swagger-jsdoc');
const swaggerUi = require('swagger-ui-express');
require('dotenv').config();
// Initialize Firebase
require('./config/firebase');
const app = express();
const PORT = process.env.PORT || 3000;
// Middleware
app.use(cors());
app.use(express.json());
app.use(express.urlencoded({ extended: true }));
// Swagger configuration
const swaggerOptions = {
definition: {
openapi: '3.0.0',
info: {
title: 'Node API for Vercel',
version: '1.0.0',
description: 'A simple API with hello and palindrome endpoints',
contact: {
name: 'API Support',
email: 'support@example.com'
}
},
servers: [
{
url: process.env.VERCEL_URL ? `https://${process.env.VERCEL_URL}` : `http://localhost:${PORT}`,
description: 'Development server'
}
]
},
apis: ['./index.js', './routes/*.js'], // Files containing annotations
tags: [
{
name: 'Authentication',
description: 'User authentication and management endpoints'
},
{
name: 'Greetings',
description: 'Greeting endpoints'
},
{
name: 'String Operations',
description: 'String manipulation endpoints'
}
]
};
const swaggerDocs = swaggerJsdoc(swaggerOptions);
// Swagger UI route
app.use('/api-docs', swaggerUi.serve, swaggerUi.setup(swaggerDocs));
// Import routes
const authRoutes = require('./routes/auth');
// Use routes
app.use('/auth', authRoutes);
/**
* @swagger
* /:
* get:
* summary: Root endpoint
* description: Returns a welcome message
* responses:
* 200:
* description: Successful response
* content:
* application/json:
* schema:
* type: object
* properties:
* message:
* type: string
* example: "Welcome to the API"
*/
app.get('/', (req, res) => {
res.json({ message: 'Welcome to the API' });
});
/**
* @swagger
* /hello:
* get:
* summary: Hello from Vercel
* description: Returns a greeting message from Vercel
* tags:
* - Greetings
* responses:
* 200:
* description: Successful response
* content:
* application/json:
* schema:
* type: object
* properties:
* message:
* type: string
* example: "Hello from Vercel"
*/
app.get('/hello', (req, res) => {
res.json({ message: 'Hello from Vercel' });
});
/**
* @swagger
* /palindrome:
* post:
* summary: Get palindrome of a word
* description: Returns the palindrome (reverse) of the provided word
* tags:
* - String Operations
* requestBody:
* required: true
* content:
* application/json:
* schema:
* type: object
* required:
* - word
* properties:
* word:
* type: string
* description: The word to reverse
* example: "hello"
* responses:
* 200:
* description: Successful response
* content:
* application/json:
* schema:
* type: object
* properties:
* original:
* type: string
* example: "hello"
* palindrome:
* type: string
* example: "olleh"
* 400:
* description: Bad request - word not provided
* content:
* application/json:
* schema:
* type: object
* properties:
* error:
* type: string
* example: "Please provide a word"
*/
app.post('/palindrome', (req, res) => {
const { word } = req.body;
if (!word) {
return res.status(400).json({ error: 'Please provide a word' });
}
const palindrome = word.split('').reverse().join('');
res.json({
original: word,
palindrome: palindrome
});
});
/**
* @swagger
* /palindrome/{word}:
* get:
* summary: Get palindrome of a word (GET method)
* description: Returns the palindrome (reverse) of the provided word via URL parameter
* tags:
* - String Operations
* parameters:
* - in: path
* name: word
* required: true
* description: The word to reverse
* schema:
* type: string
* example: "hello"
* responses:
* 200:
* description: Successful response
* content:
* application/json:
* schema:
* type: object
* properties:
* original:
* type: string
* example: "hello"
* palindrome:
* type: string
* example: "olleh"
*/
app.get('/palindrome/:word', (req, res) => {
const { word } = req.params;
const palindrome = word.split('').reverse().join('');
res.json({
original: word,
palindrome: palindrome
});
});
// Error handling middleware
app.use((err, req, res, next) => {
console.error(err.stack);
res.status(500).json({ error: 'Something went wrong!' });
});
// Start server only if not in Vercel environment
if (process.env.VERCEL !== '1') {
app.listen(PORT, () => {
console.log(`Server is running on port ${PORT}`);
console.log(`Swagger documentation available at http://localhost:${PORT}/api-docs`);
});
}
// Export for Vercel
module.exports = app;