forked from rekkyrosso/ampcast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
48 lines (44 loc) · 2.06 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
const {resolve} = require('path');
const express = require('express');
const dotenv = require('dotenv').config();
const host = dotenv.parsed.DEV_HOST ||'localhost';
const port = dotenv.parsed.DEV_PORT || 8000;
const app = express();
const wwwDir = resolve(__dirname, './app/www');
const devDir = resolve(__dirname, './www-dev');
const runtimeDir = process.argv[2] === '--pwa' ? wwwDir : devDir;
const webIndex = resolve(runtimeDir, './index.html');
express.static.mime.define({
'application/javascript': ['js'],
'application/json': ['json'],
'image/vnd.microsoft.icon': ['ico'],
'image/png': ['png'],
'image/svg+xml': ['svg'],
'text/css': ['css'],
'text/html': ['html'],
});
app.get('/', (_, res) => res.sendFile(webIndex));
app.get('/privacy-policy.html', (_, res) => res.sendFile(resolve(wwwDir, './privacy-policy.html')));
app.use('/apple-touch-icon.png', express.static(resolve(wwwDir, './apple-touch-icon.png')));
app.use('/favicon.ico', express.static(resolve(wwwDir, './favicon.ico')));
app.use('/favicon.svg', express.static(resolve(wwwDir, './favicon.svg')));
app.use('/icon-192.png', express.static(resolve(wwwDir, './icon-192.png')));
app.use('/icon-512.png', express.static(resolve(wwwDir, './icon-512.png')));
app.use('/manifest.json', express.static(resolve(wwwDir, './manifest.json')));
app.use('/auth', express.static(resolve(wwwDir, './auth')));
app.get('/:version/:id.css', async (req, res) =>
res.sendFile(resolve(runtimeDir, `./${req.params.version}/${req.params.id}.css`))
);
app.get('/:version/:id.js', async (req, res) =>
res.sendFile(resolve(runtimeDir, `./${req.params.version}/${req.params.id}.js`))
);
app.get('/:version/lib/:id.js', async (req, res) =>
res.sendFile(resolve(runtimeDir, `./${req.params.version}/lib/${req.params.id}.js`))
);
app.get('*', (_, res) => res.redirect('/'));
app.listen(port, host, () => {
const timestamp = new Date().toLocaleString();
console.info(`Serving from: http://${host}:${port}`);
console.info(`Using files from: ${runtimeDir}`);
console.info(`Server started at: ${timestamp}`);
});