-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
85 lines (72 loc) · 2.58 KB
/
server.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
// Copyright 2024 Jeff Bush
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Local web server, which allows saving games from the web app.
const express = require('express');
const fs = require('fs');
const path = require('path');
const app = express();
app.use(express.json());
app.post('/save/:filename', (req, res) => {
let receivedData = '';
req.on('data', (chunk) => {
receivedData += chunk.toString(); // Concatenate received chunks
});
req.on('end', () => {
const filename = req.params.filename;
const filePath = path.join(__dirname, 'games', filename);
fs.writeFile(filePath, receivedData, (err) => {
if (err) {
console.error('Error saving file:', err);
res.status(500).send('Error saving file');
} else {
console.log('File saved successfully:', filename);
res.status(200).send('File saved successfully');
}
});
writeManifest();
});
});
/**
* Create a new manifest file on the local filesystem.
* The manifest file contains a list of all files that are in the games
* directory. While this could have been a REST call (e.g. list), that
* would preclude hosting files on a public server like github.
*/
function writeManifest() {
const directoryPath = path.join(__dirname, 'games');
fs.readdir(directoryPath, (err, files) => {
if (err) {
console.error('Error reading directory:', err);
return;
}
const fthFiles = files.filter((file) =>
path.extname(file).toLowerCase() === '.fth');
const fileNames = fthFiles.map((file) => path.parse(file).base);
const manifestFilePath = path.join(directoryPath, 'manifest.json');
fs.writeFile(manifestFilePath, JSON.stringify(fileNames, null, 2),
(err) => {
if (err) {
console.error('Error writing manifest file:', err);
return;
}
console.log('Manifest file written to ', manifestFilePath);
});
});
}
app.use(express.static(__dirname));
writeManifest();
const PORT = 3000;
app.listen(PORT, () => {
console.log(`Server is running on http://localhost:${PORT}`);
});