[RadioMelodieBridge] Add timestamp support and content fix (#2105)

This commit is contained in:
sysadminstory 2021-06-25 22:12:33 +02:00 committed by GitHub
parent 606972dd3c
commit 9399ebb2c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 31 additions and 2 deletions

View File

@ -13,6 +13,12 @@ class RadioMelodieBridge extends BridgeAbstract {
$html = getSimpleHTMLDOM(self::URI . '/actu/') $html = getSimpleHTMLDOM(self::URI . '/actu/')
or returnServerError('Could not request Radio Melodie.'); or returnServerError('Could not request Radio Melodie.');
$list = $html->find('div[class=displayList]', 0)->children(); $list = $html->find('div[class=displayList]', 0)->children();
$dateFormat = '%A %e %B %Y à %H:%M';
// Set locale and Timezone to parse the date
setlocale (LC_TIME, 'fr_FR.utf8');
date_default_timezone_set('Europe/Paris');
foreach($list as $element) { foreach($list as $element) {
if($element->tag == 'a') { if($element->tag == 'a') {
$articleURL = self::URI . $element->href; $articleURL = self::URI . $element->href;
@ -55,20 +61,43 @@ class RadioMelodieBridge extends BridgeAbstract {
$author = $article->find('p[class=AuthorName]', 0)->plaintext; $author = $article->find('p[class=AuthorName]', 0)->plaintext;
// Handle date to timestamp
$dateHTML = $article->find('p[class=date]', 0)->plaintext;
preg_match('/\| ([^-]*)( - .*|)$/', $dateHTML, $matches);
$dateText = $matches[1];
$dateArray = strptime($dateText, $dateFormat);
$timestamp = mktime(
$dateArray['tm_hour'],
$dateArray['tm_min'],
$dateArray['tm_sec'],
$dateArray['tm_mon'] + 1,
$dateArray['tm_mday'],
$dateArray['tm_year'] + 1900
);
$item['enclosures'] = array_merge($picture, $audio); $item['enclosures'] = array_merge($picture, $audio);
$item['author'] = $author; $item['author'] = $author;
$item['uri'] = $articleURL; $item['uri'] = $articleURL;
$item['title'] = $article->find('meta[property=og:title]', 0)->content; $item['title'] = $article->find('meta[property=og:title]', 0)->content;
$date = $article->find('p[class*=date]', 0)->plaintext; if($timestamp !== false) {
$item['timestamp'] = $timestamp;
}
// Header Image // Header Image
$header = '<img src="' . $picture[0] . '"/>'; $header = '<img src="' . $picture[0] . '"/>';
// Remove the Date and Author part // Remove the Date and Author part
$textDOM->find('div[class=AuthorDate]', 0)->outertext = ''; $textDOM->find('div[class=AuthorDate]', 0)->outertext = '';
// Remove Facebook javascript
$textDOM->find('script[src^=https://connect.facebook.net]', 0)->outertext = '';
// Rewrite relative Links
$textDOM = defaultLinkTo($textDOM, self::URI . '/');
$article->save(); $article->save();
$text = $textDOM->innertext; $text = $textDOM->innertext;
$item['content'] = '<h1>' . $item['title'] . '</h1>' . $date . '<br/>' . $header . $text; $item['content'] = '<h1>' . $item['title'] . '</h1>' . $dateHTML . '<br/>' . $header . $text;
$this->items[] = $item; $this->items[] = $item;
} }
} }