forked from G3R74W/1A-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scrp.js
100 lines (71 loc) · 2.44 KB
/
scrp.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
//utilisation de la librairie puppeteer (peut néecessiter une installation via 'npm install puppeteer')
//const puppeteer = require('puppeteer');
import puppeteer from 'puppeteer';
import fs from 'fs';
import express from 'express';
import { finished } from 'stream';
import { strict } from 'assert';
const app = express();
//fonction sleep
function sleep(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
var data = {
altidude: "",
speed: "",
coordinates: ""
}
//on va enregistrer nos donnees dans un json pour pouvoir y avoir accès depuis notre html
const SaveData = (data) => {
//on gère les erreurs pour éviter d'enregistrer les donnees sous un mauvais format dans le json
const finished = (error) => {
if(error) {
console.error(error);
return;
}
}
const jsonData = JSON.stringify(data, null, 2);
console.log("data => ",data);
fs.writeFile('data.json', jsonData, finished);
}
(async () => {
const browser = await puppeteer.launch({headless: true});
const page = await browser.newPage();
await page.goto('https://www.astroviewer.net/iss/en/');
//on laisse le temps à la page de se charger correctement
await sleep(5000);
var alt = await page.evaluate(()=> {
let altitude = document.querySelector("#cockpit > div:nth-child(3) > p ").textContent;
return altitude;
});
var speed = await page.evaluate(()=> {
let sp = document.querySelector("#speed").textContent;
return sp;
});
var coordinates = await page.evaluate(()=> {
let coo = document.querySelector("#gpt").textContent;
return coo;
});
data = {
dateSource:
[{
altidude: alt,
speed: speed,
coordinates: coordinates
}]
}
app.get('/', async function(req, res) {
res.send(data);
});
/*
console.log(alt);
console.log(speed);
console.log(coordinates);*/
await browser.close();
SaveData(data);
})();
app.use(express.json());
app.disable('x-powered-by');
app.listen(8081, () => {
console.log('Bonjour sur ton nouveaux cite web')
});