-
Notifications
You must be signed in to change notification settings - Fork 1k
/
Rue89Bridge.php
46 lines (40 loc) · 1.37 KB
/
Rue89Bridge.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
<?php
class Rue89Bridge extends BridgeAbstract
{
const MAINTAINER = 'teromene';
const NAME = 'Rue89';
const URI = 'https://www.nouvelobs.com/rue89/';
const DESCRIPTION = 'Returns the newest posts from Rue89';
public function collectData()
{
$jsonArticles = getContents('https://appdata.nouvelobs.com/rue89/feed.json');
$articles = json_decode($jsonArticles)->items;
foreach ($articles as $article) {
$this->items[] = $this->getArticle($article);
}
}
private function getArticle($articleInfo)
{
$articleJson = getContents($articleInfo->json_url);
$article = json_decode($articleJson);
$item = [];
$item['title'] = $article->title;
$item['uri'] = $article->url;
if ($article->content_premium !== null) {
$item['content'] = $article->content_premium;
} else {
$item['content'] = $article->content;
}
$item['timestamp'] = $article->date_publi;
$item['author'] = $article->author->show_name;
$item['enclosures'] = [];
foreach ($article->images as $image) {
$item['enclosures'][] = $image->url;
}
$item['categories'] = [];
foreach ($article->categories as $category) {
$item['categories'][] = $category->title;
}
return $item;
}
}