2017-03-20 21:32:31 +01:00
|
|
|
<?php
|
|
|
|
class RainbowSixSiegeBridge extends BridgeAbstract {
|
|
|
|
|
|
|
|
const MAINTAINER = 'corenting';
|
2020-01-31 14:51:59 +01:00
|
|
|
const NAME = 'Rainbow Six Siege News';
|
|
|
|
const URI = 'https://www.ubisoft.com/en-us/game/rainbow-six/siege/news-updates';
|
2017-03-20 21:32:31 +01:00
|
|
|
const CACHE_TIMEOUT = 7200; // 2h
|
2020-01-31 14:51:59 +01:00
|
|
|
const DESCRIPTION = 'Latest news about Rainbow Six Siege';
|
2017-03-20 21:32:31 +01:00
|
|
|
|
2018-10-26 18:07:34 +02:00
|
|
|
public function getIcon() {
|
2020-01-31 14:51:59 +01:00
|
|
|
return 'https://static-dm.akamaized.net/siege/prod/favicon-144x144.png';
|
2018-10-26 18:07:34 +02:00
|
|
|
}
|
|
|
|
|
2017-03-20 21:32:31 +01:00
|
|
|
public function collectData(){
|
2020-07-24 09:56:41 +02:00
|
|
|
$dlUrl = 'https://www.ubisoft.com/api/updates/items?locale=en-us&categoriesFilter=all';
|
|
|
|
$dlUrl = $dlUrl . '&limit=6&mediaFilter=news&skip=0&startIndex=undefined&tags=BR-rainbow-six%20GA-siege';
|
2017-07-14 22:05:51 +02:00
|
|
|
$jsonString = getContents($dlUrl) or returnServerError('Error while downloading the website content');
|
2017-03-20 21:32:31 +01:00
|
|
|
|
2017-07-14 22:05:51 +02:00
|
|
|
$json = json_decode($jsonString, true);
|
|
|
|
$json = $json['items'];
|
2017-03-20 21:32:31 +01:00
|
|
|
|
|
|
|
// Start at index 2 to remove highlighted articles
|
2017-07-29 19:28:00 +02:00
|
|
|
for($i = 0; $i < count($json); $i++) {
|
2020-01-31 14:51:59 +01:00
|
|
|
$jsonItem = $json[$i];
|
2017-03-20 21:32:31 +01:00
|
|
|
|
2020-01-31 14:51:59 +01:00
|
|
|
$uri = 'https://www.ubisoft.com/en-us/game/rainbow-six/siege';
|
|
|
|
$uri = $uri . $jsonItem['button']['buttonUrl'];
|
|
|
|
|
|
|
|
$thumbnail = '<img src="' . $jsonItem['thumbnail']['url'] . '" alt="Thumbnail">';
|
|
|
|
$content = $thumbnail . '<br />' . $jsonItem['content'];
|
|
|
|
|
|
|
|
// Line breaks
|
|
|
|
$content = preg_replace("/\r\n|\r|\n/", '<br/>', $content);
|
|
|
|
|
|
|
|
$item = array();
|
2017-03-20 21:32:31 +01:00
|
|
|
$item['uri'] = $uri;
|
2020-01-31 14:51:59 +01:00
|
|
|
$item['id'] = $jsonItem['id'];
|
|
|
|
$item['title'] = $jsonItem['title'];
|
2020-07-24 09:56:41 +02:00
|
|
|
$item['content'] = markdownToHtml($content);
|
2020-01-31 14:51:59 +01:00
|
|
|
$item['timestamp'] = strtotime($jsonItem['date']);
|
2017-03-20 21:32:31 +01:00
|
|
|
|
|
|
|
$this->items[] = $item;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|