-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rdjreloaded.php
328 lines (296 loc) · 13.4 KB
/
rdjreloaded.php
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
<?php
/**
* Radio Deejay RELOADED podcaster
* @author Lorenzo Milesi <lorenzo@mile.si>
* @copyright 2016 Lorenzo Milesi
* @license GNU GPL v3
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
require_once("simple_html_dom.php");
date_default_timezone_set("Europe/Rome");
class RDJReloaded {
private $baseUrl = "https://www.deejay.it/reloaded/radio/";
private $baseUrlArchivio = "https://www.deejay.it/audio/?reloaded=";
private $nextPageClass = "nextpostslink";
const CACHE_PREFIX = "rdjreloaded";
/* @var PDO */
private $conn;
/**
* Scansiona la homepage di Deejay Reloaded e crea la lista dei programmi disponibili, raccogliendo
* titolo, nome, URL immagine e lo slug.
* Inserisce i risultati nella tabella `programma`.
* Si chiama ricorsivamente per la paginazione.
* @param string $url Path della prima pagina
* @return null
*/
public function scanList ($url = NULL)
{
if (is_null($url)) {
self::log("INIZIO SCANSIONE ELENCO PROGRAMMI\n");
$url = $this->baseUrl;
}
$reloaded_home = file_get_html($url);
$db = $this->getDbConnection();
$insProgr = $db->prepare("REPLACE INTO `programma` (slug, nome, url_immagine) "
. "VALUES (:slug, :nome, :urlImg)");
// Per ogni li della pagina apro il link e prelevo i dati del programma
foreach ($reloaded_home->find('ul[class="block-grid"]',0)->find("li") as $programma) {
$link_programma = $programma->find("a",0);
if (is_null($link_programma)) {
// Capita (2018.01.29 - Il Rosario della sera) che pubblichino un "placeholder" al programma senza link
continue;
}
$url_puntata = $link_programma->href;
$dom_programma = file_get_html($url_puntata);
// Immagine programma dall'elenco, perché quello della pagina della puntata si riferisce all'episodio stesso
$img = $programma->find("img",0)->src;
// Titolo da hgroup > h2.xlarge-title > a
$nome = $dom_programma->find('hgroup h2[class="xlarge-title"] a',0)->title;
// Slug dal link ad "Archivio +"
$slug_url = $dom_programma->find('hgroup span[class="small-title"] a',0)->href;
list(, $slug) = explode("=", $slug_url);
unset($dom_programma);
// Verifico se ho già il programma
$cntProgr = current($db->query("SELECT COUNT(*) FROM `programma` WHERE `slug` = '$slug' ")->fetch());
if ($cntProgr > 0) { // Programma già presente
self::log("Programma '$slug' già presente\n");
continue;
}
// Altrimenti inserisco
$insProgr->execute([
':slug' => $slug,
':nome' => $nome,
':urlImg' => $img,
]);
self::log("Programma '$slug' inserito\n");
}
// Cerco se c'è una pagina successiva
$next = $reloaded_home->find('a[class="'.$this->nextPageClass.'"]', 0);
unset($reloaded_home);
if (!is_null($next)) {
return $this->scanList($next->href);
}
self::log("FINE SCANSIONE ELENCO PROGRAMMI\n");
return;
}
/**
* Aggiorna gli episodi di uno o più programmi
* @param string $programma SLUG del programma, % per tutti.
* @param boolean $noStop Se TRUE non si ferma quando incontra il primo episodio già presente. Predefinito FALSE
*/
public function aggiornaPodcast ($programma = '%', $noStop = FALSE) {
self::log("INIZIO AGGIORNAMENTO PROGRAMMA\n");
$db = $this->getDbConnection();
$qrPodcast = $db->query("SELECT * FROM `programma` WHERE `slug` LIKE '$programma'")->fetchAll();
foreach ($qrPodcast as $riga) {
self::log("Elaborazione programma '{$riga['slug']}' \n");
$urlArchivio = $this->baseUrlArchivio.$riga['slug'];
$this->leggiPaginaProgramma($urlArchivio, $riga['id'], $noStop);
}
self::log("FINE AGGIORNAMENTO PROGRAMMA\n");
}
/**
* Legge una pagina dell'archvio programma
* @param string $url Pagina da leggere
* @param integer $id_programma Id del programma
* @param boolean $tutto Se TRUE non si ferma quando trova un episodio già presente ma va avanti
* fino a che ci sono pagine. Predefinito FALSE
*/
private function leggiPaginaProgramma($url, $id_programma, $tutto = false)
{
self::log("Apertura pagina archivio '$url' \n");
$pagArchivio = file_get_html($url);
$elencoEpisodi = $pagArchivio->find('ul[class="lista"]',0);
if (empty($elencoEpisodi)) {
self::log("ATTENZIONE: nessun link trovato!\n");
return;
}
$db = $this->getDbConnection();
foreach ($elencoEpisodi->find("li a[1]") as $link) {
self::log("Rilevato episodio '{$link->title}' con url '{$link->href}' \n");
$titolo = $link->title;
$qrFind = current($db->query("SELECT COUNT(*) FROM `episodio` WHERE "
. "`id_programma` = '$id_programma' AND `href` = '{$link->href}' ")->fetch());
if ($qrFind > 0 && $tutto === false) {
// Se ho già questo link il programma è aggiornato
self::log("Episodio già presente, programma aggiornato\n");
return;
}
$this->leggiProgramma($titolo, $id_programma, $link->href);
}
// Vediamo se c'è una seconda pagina
$nuovaPagina = $pagArchivio->find('a[class="nextpostslink"]', 0);
unset($pagArchivio);
if (!empty($nuovaPagina)) {
$this->leggiPaginaProgramma($nuovaPagina->href, $id_programma, $tutto);
}
}
/**
* Scansiona la pagina del programma con il player popolando la tabella `episodi`
* @param string $titolo Titolo dell'episodio
* @param integer $id_programma id del programma nel db
* @param string $url URL dell'episodio
*/
private function leggiProgramma ($titolo, $id_programma, $url) {
self::log("Lettura url '$url' per programma $id_programma \n");
$db = $this->getDbConnection();
$qAddPodcast = $db->prepare("INSERT OR IGNORE INTO `episodio` "
. "(`id_programma`, `titolo`, `url_file`, `href`, `data_inserimento`) "
. "VALUES ('$id_programma', '$titolo', :file, '$url', :pubdate)");
$doc = file_get_html($url);
$iframe = $doc->find("iframe",0)->src;
$iframe_query = parse_url($iframe, PHP_URL_QUERY);
// rimuovere la prima parte
foreach (explode("&", $iframe_query) as $p) {
$kv = explode("=", $p);
$val [$kv[0]] = $kv[1];
}
// Data inserimento da og:published
$dt = DateTime::createFromFormat("Y-m-d\TH:i:s", $doc->find('meta[property="og:published_time"]',0)->content);
if ($dt === FALSE) // Se la data non è valida
$dt = new DateTime();
// A questo punto ho le chiavi 'file' e 'image'
$qAddPodcast->execute([':file' => $val['file'], ':pubdate' => $dt->getTimestamp()]);
unset($doc);
}
/**
* Genera l'XML del podcast e lo emette su stdout
* @param string $prog SLUG programma
*/
public function generaXmlProgramma($prog) {
$cache_key = self::CACHE_PREFIX."-xml-".$prog;
$cached = $this->cache_get($cache_key);
if ($cached !== FALSE) {
print $cached;
return;
}
$db = $this->getDbConnection();
$programma = $db->query("SELECT * FROM `programma` WHERE `slug` LIKE '$prog'")->fetch();
if (empty($programma))
return;
// Contatore visite
$updCnt = $db->exec("UPDATE `programma_visite` SET `visite` = `visite` + 1 "
. "WHERE `id_programma` = '{$programma['id']}' ");
if ($updCnt == 0) {
$db->exec("INSERT INTO `programma_visite` (`id_programma`, `visite`) "
. "VALUES ('{$programma['id']}', 1) ");
}
$xml = new DOMDocument();
$root = $xml->appendChild($xml->createElement('rss'));
$root->setAttribute('xmlns:itunes', 'http://www.itunes.com/dtds/podcast-1.0.dtd');
$root->setAttribute('xmlns:media', 'http://search.yahoo.com/mrss/');
$root->setAttribute('xmlns:feedburner', 'http://rssnamespace.org/feedburner/ext/1.0');
$root->setAttribute('version', '2.0');
$chan = $root->appendChild($xml->createElement('channel'));
$chan->appendChild($xml->createElement('title', $programma['nome']." NON AGGIORNATO"));
$chan->appendChild($xml->createElement('link', $this->baseUrlArchivio.$programma['slug']));
$chan->appendChild($xml->createElement('generator', 'deejayreloadedpodcast.maxxer.it'));
$chan->appendChild($xml->createElement('language', 'it'));
$chan_img = $chan->appendChild($xml->createElement('itunes:image'));
$chan_img->setAttribute('href', $programma['url_immagine']);
// Query elenco episodi
$q_episodi = "SELECT * FROM `episodio` WHERE `id_programma` = '{$programma['id']}' ORDER BY `data_inserimento` DESC ";
foreach ($db->query($q_episodi)->fetchAll() as $episodio) {
$item = $chan->appendChild($xml->createElement('item'));
$item->appendChild($xml->createElement('title', $episodio['titolo']));
$item->appendChild($xml->createElement('link', $episodio['href']));
$item->appendChild($xml->createElement('itunes:author', $programma['nome']));
$item->appendChild($xml->createElement('itunes:summary', $episodio['titolo']));
$item->appendChild($xml->createElement('guid', $episodio['url_file']));
$finfo = finfo_open(FILEINFO_MIME_TYPE);
$enclosure = $item->appendChild($xml->createElement('enclosure'));
$enclosure->setAttribute('url', $episodio['url_file']);
// $enclosure->setAttribute('length', filesize($episode['audio_file']));
// $enclosure->setAttribute('type', finfo_file($finfo, $episode['audio_file']));
$item->appendChild($xml->createElement('pubDate', date('D, d M Y H:i:s O', $episodio['data_inserimento'])));
// $getID3 = new getID3();
// $fileinfo = $getID3->analyze($episode['audio_file']);
// $item->appendChild($xml->createElement('itunes:duration', $fileinfo['playtime_string']));
}
$xml->formatOutput = true;
$outXml = $xml->saveXML();
// Cache dell'XML per un'oretta
$this->cache_add($cache_key, $outXml, 1800);
print $outXml;
}
/**
* Torna l'elenco dei programmi, da usare nel frontend
* @return array
*/
public function generaElencoProgrammi () {
$cache_key = self::CACHE_PREFIX."-elencoprogrammi";
$cached = $this->cache_get($cache_key);
if ($cached !== FALSE) {
return $cached;
}
$db = $this->getDbConnection();
$q_programmi = "SELECT *, "
. "COUNT(*) AS conteggio, "
. "'{$this->baseUrlArchivio}' || `slug` AS url_archivio "
. "FROM `programma` "
. "JOIN `episodio` ON `id_programma` = `programma`.`id` "
. "GROUP BY `programma`.`slug` "
. "ORDER BY `programma`.`slug` ";
$programmi = $db->query($q_programmi)->fetchAll();
if (empty($programmi))
return;
$this->cache_add($cache_key, $programmi, 1800);
return $programmi;
}
/**
* Genera l'oggetto della connessione SQLite
* @return PDO
*/
public function getDbConnection () {
if (empty($this->conn)) {
try {
$this->conn = new PDO("sqlite:".__DIR__."/radiodeejayreloaded.sqldb","","",array(PDO::ATTR_PERSISTENT => true));
} catch (PDOException $e) {
die ("Errore apertura DB: ".$e->getMessage());
}
}
return $this->conn;
}
/**
* Reperisce il contenuto di una chiave dalla cache
* @param string $key Chiave
* @return boolean|mixed FALSE se non c'è niente nella cache, altrimenti il contenuto della chiave
*/
private function cache_get($key)
{
if (!extension_loaded('apc') || ini_get('apc.enabled') == 0)
return FALSE;
return apcu_fetch($key);
}
/**
* Aggiunge una variabile alla cache
* @param string $key Chiave
* @param mixed $what Variabile da aggiungere
* @param integer $ttl Tempo di durata della cache
*/
private function cache_add($key, $what, $ttl = 3600)
{
if (!extension_loaded('apc') || ini_get('apc.enabled') == 0)
return;
apcu_add($key, $what, $ttl);
}
/**
* Emette un messaggio su stdout
*/
private static function log($message)
{
echo date("Y-m-d H:i:s")." ".$message;
}
}