rss-bridge/bridges/TebeoBridge.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
1.5 KiB
PHP
Raw Normal View History

2018-02-11 16:56:34 +01:00
<?php
class TebeoBridge extends FeedExpander
{
2018-02-11 16:56:34 +01:00
const NAME = 'Tébéo Bridge';
const URI = 'http://www.tebeo.bzh/';
const CACHE_TIMEOUT = 21600; //6h
const DESCRIPTION = 'Returns the newest Tébéo videos by category';
2018-02-11 19:08:19 +01:00
const MAINTAINER = 'Mitsukarenai';
2018-02-11 16:56:34 +01:00
const PARAMETERS = [ [
'cat' => [
'name' => 'Catégorie',
2018-02-11 16:56:34 +01:00
'type' => 'list',
'values' => [
'Toutes les vidéos' => '/',
2018-02-11 16:56:34 +01:00
'Actualité' => '/14-actualite',
2018-02-11 19:08:19 +01:00
'Sport' => '/3-sport',
'Culture-Loisirs' => '/5-culture-loisirs',
2018-02-11 19:08:19 +01:00
'Société' => '/15-societe',
'Langue Bretonne' => '/9-langue-bretonne'
]
]
]];
2018-02-11 16:56:34 +01:00
public function getIcon()
{
return self::URI . 'images/header_logo.png';
}
2018-02-11 16:56:34 +01:00
public function collectData()
{
2018-02-11 16:56:34 +01:00
$url = self::URI . '/le-replay/' . $this->getInput('cat');
$html = getSimpleHTMLDOM($url);
2018-02-11 16:56:34 +01:00
foreach ($html->find('div[id=items_replay] div.replay') as $element) {
$item = [];
$item['uri'] = $element->find('a', 0)->href;
$item['title'] = $element->find('h3', 0)->plaintext;
$item['timestamp'] = strtotime($element->find('p.moment-format-day', 0)->plaintext);
2018-11-05 12:55:58 +01:00
$item['content'] = '<a href="' . $item['uri'] . '"><img alt="" src="' . $element->find('img', 0)->src . '"></a>';
2018-02-11 19:08:19 +01:00
$this->items[] = $item;
}
}
2018-02-11 16:56:34 +01:00
}