-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
54 lines (45 loc) · 1.25 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
const express = require('express');
const app = express();
const path = require('path');
const IP = process.env.PORT || 8080;
var answer = {
"unix": "unixdate",
"natural": "naturaldate"
};
var month = [
'January', 'February', 'March',
'April', 'May', 'June',
'July', 'August', 'September',
'October', 'November', 'December'];
function parseNaturalDate(date) {
var unixDate = Date.parse(date);
if (isNaN(unixDate)) {
answer.unix = null;
answer.natural = null;
} else {
answer.unix = unixDate;
answer.natural = date;
}
}
function parseUnixDate(date) {
if (date < 0) {
answer.unix = null;
answer.natural = null;
} else {
var tmp = new Date(date);
answer.unix = date;
answer.natural = `${month[tmp.getMonth()]} ${tmp.getDate()}, ${tmp.getFullYear()}`;
}
}
app.get('/', function (req, res) {
res.sendFile(path.join(__dirname, './index.html'));
});
app.get('/:date', function(req, res) {
var date = req.params.date;
if ( isNaN( parseInt(date, 10))) parseNaturalDate(date);
else parseUnixDate(parseInt(date, 10));
res.send(answer);
});
app.listen(IP, function () {
console.log('Example app listening on port ' + IP);
});