-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
53 lines (31 loc) · 1.09 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
const axios = require('axios');
var express = require('express');
let cheerio = require('cheerio');
let fs = require('fs');
var app = express();
app.set('port', process.env.PORT || 5000);
app.use(express.json());
app.use(express.urlencoded({ extended: false }));
app.listen(process.env.PORT || 5000, () => {
console.log("server is running");
});
app.use(function (req, res, next) {
res.header("Access-Control-Allow-Origin", "*");
res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept");
res.header('Content-Type', 'application/json');
next();
});
app.get('/covid-19', function(req, res) {
axios.get('https://covid19.saglik.gov.tr/')
.then((response) => {
if(response.status === 200) {
let html = response.data;
let headIndex = html.indexOf("sondurumjson =");
let lastIndex = html.indexOf("}];//]]>");
var tablo = html.substring( headIndex+14 , lastIndex+2 );
let json = JSON.parse(tablo);
res.json(json);
}
}, (error) => console.log(err) );
});
module.exports = app;