-
Notifications
You must be signed in to change notification settings - Fork 0
/
LoaderCanale.js
61 lines (53 loc) · 1.78 KB
/
LoaderCanale.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
/* global $ Utils XMLHttpRequest Canale */
/**
* Classe che si occupa di recuperare il contenuto dal sito della RAI e di compattarlo
* in un oggetto Canale in maniera asincrona.
* @typedef LoaderCanale
* @property {string} idCanale - Identifica il canale. Deve essere una delle chiavi
* di Canale.canaliValidi().
* @property {number} timestamp - Il timestamp della mezzanotte del giorno di programmazione
* considerato.
*/
class LoaderCanale {
/**
* Inizializza il loader.
* @param {string} idCanale - Identifica il canale. Deve essere una delle chiavi
* di Canale.canaliValidi().
* @param {number} timestamp - Il timestamp della mezzanotte del giorno di programmazione
*/
constructor (idCanale, timestamp) {
this.idCanale = idCanale;
this.timestamp = timestamp;
}
/**
* Ottieni le informazioni relative al canale dal sito della RAI.
*/
load () {
var baseUrl = 'http://www.rai.it/dl/portale/html/palinsesti/guidatv/static/';
var fetchUrl = baseUrl + this.idCanale + '_' + this.dataFormattata + '.html';
// Ogni canale è caricato in maniera asincrona: vengono creati degli
// oggetti Deferred che quando vengono risolti restituiscono l'oggetto
// Canale.
var def = $.Deferred();
var xhr = new XMLHttpRequest();
xhr.open('GET', fetchUrl);
xhr.onload = () => {
if (xhr.status === 200) {
let canale = new Canale($(xhr.response), this.idCanale, this.timestamp);
def.resolve(canale);
}
};
xhr.onerror = () => {
def.reject('Errore sconosciuto!');
};
xhr.send();
// Restituisci l'oggetto Deferred.
return def;
}
/**
* Ottieni la data relativa al timestamp formattata come HH:MM.
*/
get dataFormattata () {
return Utils.formatDate(new Date(this.timestamp));
}
}