-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
54 lines (46 loc) · 1.27 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 bodyParser = require('body-parser');
const request = require('request');
const app = express()
const apiKey = '49b2f0de66bca1b85d63cc89607527a4';
app.use(express.static('public'));
app.use(bodyParser.urlencoded({
extended: true
}));
app.set('view engine', 'ejs')
app.get('/', function(req, res) {
res.render('index', {
weather: null,
error: null
});
})
app.post('/', function(req, res) {
let city = req.body.city;
let url = `http://api.openweathermap.org/data/2.5/weather?q=${city}&units=metric&appid=${apiKey}`
request(url, function(err, response, body) {
if (err) {
res.render('index', {
weather: null,
error: 'Dude, enter correct city naa!'
});
} else {
let weather = JSON.parse(body)
if (weather.main == undefined) {
res.render('index', {
weather: null,
error: 'Dude, enter correct city naa!'
});
} else {
let weatherText = `Woah! It's ${weather.main.temp} degrees celcius in ${weather.name}! `;
res.render('index', {
weather: weatherText,
error: null
});
}
}
});
})
app.listen(3000, function() {
console.log('Weather App is running on port 3000')
})
listen(process.env.PORT)