-
Notifications
You must be signed in to change notification settings - Fork 2
/
fetchStagesService.js
147 lines (133 loc) · 4.56 KB
/
fetchStagesService.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
var jsdom = require("jsdom");
var http = require('http');
var username = "XXXX";
var password = "XXXXXXXX";
var urlCas = 'https://login.insa-lyon.fr/'
var urlStage = 'http://intranet-if.insa-lyon.fr/stages/Listestage.php'
var serverPort = 6789;
http.createServer(function(request, response) {
if(request.url == '/fetchStages') {
RetrieveStages(function(jsonStages) {
response.writeHead(200, {
'Content-Type': 'application/json'
});
response.end(JSON.stringify(jsonStages));
response.close();
});
}
}).listen(serverPort);
/**
* URI-encode un objet
* Param :
* - obj : Objet à serialiser
* - prefix : Préfixe optionnel
* Retour : String uri-encodée
*/
function EncodeURIObject(obj, prefix) {
var str = [];
for(var p in obj) {
var k = prefix ? prefix + "[" + encodeURIComponent(p) + "]" : encodeURIComponent(p), v = obj[p];
str.push(typeof v == "object" ?
UrlEncodeObject(v, k) :
encodeURIComponent(k) + "=" + encodeURIComponent(v));
}
return str.join("&");
}
/**
* Permet de s'authentifier avec le cas de l'insa de Lyon.
* Param :
* - username : Username valide
* - password : MdP correspondant
* - url : URL du CAS à utiliser
* - callback : Callback une fois la procédure finie
* Retour : /
*/
function CasAuthentification( username, password, url, callback) {
var formulaire = [ 'username' : username,
'password' : password,
'_eventId' : 'submit',
'lt' : ''
];
jsdom.env(
url,
function (errors, window) {
// On recupère les valeurs manquantes pour notre formulaire :
formulaire['lt'] = window.document.querySelector('input[name="lt"]').value;
url = window.document.getElementById('#login_form').action;
if (url.indexOf("?") != -1) { url += "&"; }
else { url += "?"; }
url += EncodeURIObject(formulaire);
// On peut maintenant effectuer la connexion :
jsdom.env(
url,
callback
);
}
);
}
/**
* Parse la page des stages pour stocker les informations dans un JSON.
* Param :
* - dom : DOM de la page à parser
* - url : URL de la page, pour traiter les chemins relatifs
* Retour : JSON contenant les données des stages
*/
function ParseStage( dom, url ) {
var arrayLien = url.split('/');
arrayLien.pop();
var lienDossier = arrayLien.join("/")+"/";
// On commence par recuperer le lien relatif vers le dossier contenant les docs de description. Pour cela on recupere le 1er lien qui vient et ne garde que le chemin vers le dossier en question:
lienDocRegex = new RegExp( 'Description</i> : <a href="(.*)"' );
arrayLien = lienDocRegex.exec(dom.innerHTML)[1].split('/');
arrayLien.pop();
lienDossier += arrayLien.join("/")+"/";
var jsonStages = {
dossierDescriptions : lienDossier,
stages : []};
var titres = dom.getElementsByTagName('h3');
for (var i = titres.length; i--;) {
// Le DOM est immonde, donc la recuperation aussi:
var contactNode = titres[i].nextSibling.nextSibling.nextSibling;
var sujetNode = contactNode.nextSibling.nextSibling.nextSibling.nextSibling.nextSibling.nextSibling;
var descriptionNode = sujetNode.nextSibling.nextSibling.nextSibling.nextSibling;
if (sujetNode.nodeName == '#text') { descriptionNode = descriptionNode.nextSibling; } // S'il y a un sujet, ca fait un noeud de plus.
var noteNode = null;
if (descriptionNode.nextSibling.nextSibling.nextSibling.nodeName == 'I') {
noteNode = descriptionNode.nextSibling.nextSibling.nextSibling.nextSibling.nextSibling.nextSibling;
}
var entrEtLieu = titres[i].innerText.split('Entreprise : ')[1].split(/[^\w]{3}/);
jsonStages.stages.push({
annee: titres[i].innerText.split('IF')[0],
entreprise: entrEtLieu[0],
lieu: entrEtLieu[1],
contact: contactNode.nodeValue.length > 3? contactNode.nodeValue.split(': ')[1] : null,
sujet: (sujetNode.nodeName == '#text')? sujetNode.nodeValue : null,
description: descriptionNode.innerText,
notes: noteNode? noteNode.nodeValue : null
});
}
return jsonStages;
}
/**
* Service asynchrone récupérant les données de stages sur l'intranet IF au format JSON.
* Param :
* - callback : Callback recevant en paramètre le JSON des stages.
* Retour : /
*/
function RetrieveStages(callback) {
CasAuthentification(username, password, urlCas, function() {
// Une fois connecté, on recupere la page des stages :
jsdom.env(
urlStage,
function (errors, window) {
if (errors) {
callback(errors);
}
else {
// Et on la parse avant de retourner le tout :
callback(ParseStage( window.document.getElementsByTagName('body')[0], urlStage ));
}
}
);
})
}