mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-23 15:06:53 +00:00
Updated RainbowSixSiegeBridge to use API to fetch articles
This commit is contained in:
parent
216899cfb7
commit
0a361a4c68
34
bridges/RainbowSixSiegeBridge.php
Normal file
34
bridges/RainbowSixSiegeBridge.php
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
<?php
|
||||||
|
class RainbowSixSiegeBridge extends BridgeAbstract {
|
||||||
|
|
||||||
|
const MAINTAINER = 'corenting';
|
||||||
|
const NAME = 'Rainbow Six Siege Blog';
|
||||||
|
const URI = 'https://rainbow6.ubisoft.com/siege/en-us/news/';
|
||||||
|
const CACHE_TIMEOUT = 7200; // 2h
|
||||||
|
const DESCRIPTION = 'Latest articles from the Rainbow Six Siege blog';
|
||||||
|
|
||||||
|
public function collectData(){
|
||||||
|
$jsonString = getContents("https://prod-tridionservice.ubisoft.com/live/v1/News/Latest?templateId=tcm%3A152-76778-32&pageIndex=0&pageSize=10&language=en-US&detailPageId=tcm%3A152-194572-64&keywordList=175426&siteId=undefined&useSeoFriendlyUrl=true")
|
||||||
|
or returnServerError('Error while downloading the website content');
|
||||||
|
|
||||||
|
$json = json_decode($jsonString, true);
|
||||||
|
$json = $json['items'];
|
||||||
|
|
||||||
|
// Start at index 2 to remove highlighted articles
|
||||||
|
for($i = 0; $i < count($json); $i++){
|
||||||
|
$jsonItem = $json[$i]['Content'];
|
||||||
|
$article = str_get_html($jsonItem);
|
||||||
|
|
||||||
|
$item = array();
|
||||||
|
|
||||||
|
$uri = $article->find('h3 a', 0)->href;
|
||||||
|
$uri = 'https://rainbow6.ubisoft.com' . $uri;
|
||||||
|
$item['uri'] = $uri;
|
||||||
|
$item['title'] = $article->find('h3', 0)->plaintext;
|
||||||
|
$item['content'] = $article->find('img', 0)->outertext . '<br />' . $article->find('strong', 0)->plaintext;
|
||||||
|
$item['timestamp'] = strtotime($article->find('p.news_date', 0)->plaintext);
|
||||||
|
|
||||||
|
$this->items[] = $item;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user