2018-06-15 21:05:31 +02:00
|
|
|
<?php
|
|
|
|
class SuperSmashBlogBridge extends BridgeAbstract {
|
|
|
|
|
|
|
|
const MAINTAINER = 'corenting';
|
|
|
|
const NAME = 'Super Smash Blog';
|
|
|
|
const URI = 'https://www.smashbros.com/en_US/blog/index.html';
|
|
|
|
const CACHE_TIMEOUT = 7200; // 2h
|
|
|
|
const DESCRIPTION = 'Latest articles from the Super Smash Blog blog';
|
|
|
|
|
|
|
|
public function collectData(){
|
2018-06-29 23:55:33 +02:00
|
|
|
$dlUrl = 'https://www.smashbros.com/data/bs/en_US/json/en_US.json';
|
2018-06-15 21:05:31 +02:00
|
|
|
|
|
|
|
$jsonString = getContents($dlUrl) or returnServerError('Error while downloading the website content');
|
|
|
|
$json = json_decode($jsonString, true);
|
|
|
|
|
|
|
|
foreach($json as $article) {
|
|
|
|
|
|
|
|
// Build content
|
|
|
|
$picture = $article['acf']['image1']['url'];
|
|
|
|
if (strlen($picture) != 0) {
|
|
|
|
$picture = str_get_html('<img src="https://www.smashbros.com/' . substr($picture, 8) . '"/>');
|
|
|
|
} else {
|
|
|
|
$picture = '';
|
|
|
|
}
|
|
|
|
|
|
|
|
$video = $article['acf']['link_url'];
|
|
|
|
if (strlen($video) != 0) {
|
2018-11-05 12:55:58 +01:00
|
|
|
$video = str_get_html('<a href="' . $video . '">Youtube video</a>');
|
2018-06-15 21:05:31 +02:00
|
|
|
} else {
|
|
|
|
$video = '';
|
|
|
|
}
|
|
|
|
$text = str_get_html($article['acf']['editor']);
|
|
|
|
$content = $picture . $video . $text;
|
|
|
|
|
|
|
|
// Build final item
|
|
|
|
$item = array();
|
|
|
|
$item['title'] = $article['title']['rendered'];
|
|
|
|
$item['timestamp'] = strtotime($article['date']);
|
|
|
|
$item['content'] = $content;
|
|
|
|
$item['uri'] = self::URI . '?post=' . $article['id'];
|
|
|
|
|
|
|
|
$this->items[] = $item;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|