-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
53 lines (36 loc) · 1.22 KB
/
app.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
import fs from 'node:fs/promises';
import bodyParser from 'body-parser';
import express from 'express';
const app = express();
app.use(express.static('images'));
app.use(bodyParser.json());
// CORS
app.use((req, res, next) => {
res.setHeader('Access-Control-Allow-Origin', '*'); // allow all domains
res.setHeader('Access-Control-Allow-Methods', 'GET, PUT');
res.setHeader('Access-Control-Allow-Headers', 'Content-Type');
next();
});
app.get('/places', async (req, res) => {
const fileContent = await fs.readFile('./data/places.json');
const placesData = JSON.parse(fileContent);
res.status(200).json({ places: placesData });
});
app.get('/user-places', async (req, res) => {
const fileContent = await fs.readFile('./data/user-places.json');
const places = JSON.parse(fileContent);
res.status(200).json({ places });
});
app.put('/user-places', async (req, res) => {
const places = req.body.places;
await fs.writeFile('./data/user-places.json', JSON.stringify(places));
res.status(200).json({ message: 'User places updated!' });
});
// 404
app.use((req, res, next) => {
if (req.method === 'OPTIONS') {
return next();
}
res.status(404).json({ message: '404 - Not Found' });
});
app.listen(3000);