forked from zombieFox/nightTab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings-api.js
36 lines (30 loc) · 1.07 KB
/
settings-api.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
const express = require('express');
const fs = require('fs');
const path = require('path');
const app = express();
const PORT = 3100; // oder der Port, den Sie festgelegt haben
const DATA_PATH = path.join(__dirname, 'data/settings.json');
const cors = require('cors');
app.use(cors());
app.use(express.json());
// Prüfen, ob settings.json existiert und initialisieren, falls nicht
if (!fs.existsSync(DATA_PATH)) {
fs.writeFileSync(DATA_PATH, JSON.stringify({}), 'utf8');
}
// Endpunkt zum Abrufen der Einstellungen
app.get('/settings', (req, res) => {
if (fs.existsSync(DATA_PATH)) {
const settings = JSON.parse(fs.readFileSync(DATA_PATH, 'utf8'));
res.json(settings);
} else {
res.json({}); // Rückgabe leerer Einstellungen, falls keine Datei vorhanden ist
}
});
// Endpunkt zum Speichern der Einstellungen
app.post('/settings', (req, res) => {
fs.writeFileSync(DATA_PATH, JSON.stringify(req.body, null, 2));
res.status(200).send('Settings saved.');
});
app.listen(PORT, () => {
console.log(`Settings API listening on port ${PORT}`);
});