-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.js
56 lines (44 loc) · 1.3 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
54
55
56
const express = require('express');
const app = express();
var path = require('path');
var port = process.env.PORT || 8080;
//TimeStamp Function
const getTimestamp = date => ({
unix: date.getTime(),
utc: date.toUTCString()
});
app.use('/assets', express.static('assets'));
app.get('/', (req, res) => {
res.sendFile(path.join(__dirname + '/views/index.html'));
});
app.get('/api/timestamp',(req,res)=>{
let timestamp = getTimestamp(new Date());
res.end(JSON.stringify(timestamp));
});
app.get('/api/timestamp/:dateString',(req,res)=>{
const dateString = req.url.split("/api/timestamp/")[1];
if (dateString === undefined || dateString.trim() === "") {
timestamp = getTimestamp(new Date());
} else {
const date = !isNaN(dateString) ?
new Date(parseInt(dateString)) :
new Date(dateString);
if (!isNaN(date.getTime())) {
timestamp = getTimestamp(date);
} else {
timestamp = {
error: "invalid date"
};
}
}
res.end(JSON.stringify(timestamp));
});
app.use((req,res,next)=>{
res.status(400);
if(req.accepts('html')){
res.sendFile(path.join(__dirname + '/views/404.html'));
}
});
app.listen(port, () => {
console.log("Server Up → PORT " + port);
});