-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathserver.js
58 lines (48 loc) · 1.7 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
// Illustrates how to connect the Infinite Jukebox algorithm to audio and a
// visualizer. See ./README.md for details.
//
import express from 'express';
import fetch from 'node-fetch';
import path, { dirname } from 'path';
import { fileURLToPath } from 'url';
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
const port = 2012;
const repoRoot = path.join(__dirname, '../../../');
const algorithmDir = path.join(repoRoot, 'js', 'algorithm');
function serveLocalOrRemotePath(app, sourcePath, targetPath) {
if (targetPath.startsWith('http://') || targetPath.startsWith('https://')) {
app.get(sourcePath, async (req, resp) => {
try {
const fetchResult = await fetch(targetPath);
if (fetchResult.ok) {
resp.set('Content-Type', fetchResult.headers.get('Content-Type'));
fetchResult.body.pipe(resp);
} else {
resp.status(fetchResult.status).send();
}
} catch (error) {
console.error('Error fetching data:', error);
resp.status(500).send();
}
});
} else {
app.use(sourcePath, express.static(targetPath));
}
}
function main(args) {
if (args.length !== 2) {
console.log('Usage: node server.js <spotify-analysis.json> <song.wav>');
return;
}
const [spotifyAnalysisPath, songPath] = args;
const app = express();
serveLocalOrRemotePath(app, '/data/analysis.json', spotifyAnalysisPath);
serveLocalOrRemotePath(app, '/data/song.wav', songPath);
app.use('/algorithm', express.static(algorithmDir));
app.use('/', express.static('./web'));
app.listen(port, () => {
console.log(`Server is running on http://localhost:${port}`);
});
}
main(process.argv.slice(2));