Update RainbowSixSiegeBridge (#548)
* Fix non-working RainbowSixSiegeBridge * Updated RainbowSixSiegeBridge to use API to fetch articles * Fix RainbowSixSiegeBridge coding style * RainbowSixSiegeBridge fix url coding style error
This commit is contained in:
parent
d7ff8b9ac7
commit
5caca62677
1 changed files with 12 additions and 8 deletions
|
@ -8,23 +8,27 @@ class RainbowSixSiegeBridge extends BridgeAbstract {
|
||||||
const DESCRIPTION = 'Latest articles from the Rainbow Six Siege blog';
|
const DESCRIPTION = 'Latest articles from the Rainbow Six Siege blog';
|
||||||
|
|
||||||
public function collectData(){
|
public function collectData(){
|
||||||
$html = getSimpleHTMLDOM(self::URI . 'index.aspx')
|
$dlUrl = "https://prod-tridionservice.ubisoft.com/live/v1/News/Latest?templateId=tcm%3A152-7677";
|
||||||
or returnServerError('Error while downloading the website content');
|
$dlUrl .= "8-32&pageIndex=0&pageSize=10&language=en-US&detailPageId=tcm%3A152-194572-64";
|
||||||
|
$dlUrl .= "&keywordList=175426&siteId=undefined&useSeoFriendlyUrl=true";
|
||||||
|
$jsonString = getContents($dlUrl) or returnServerError('Error while downloading the website content');
|
||||||
|
|
||||||
$list = $html->find('.comdev');
|
$json = json_decode($jsonString, true);
|
||||||
|
$json = $json['items'];
|
||||||
|
|
||||||
// Start at index 2 to remove highlighted articles
|
// Start at index 2 to remove highlighted articles
|
||||||
for($i = 2; $i < count($list); $i++){
|
for($i = 0; $i < count($json); $i++){
|
||||||
$article = $list[$i];
|
$jsonItem = $json[$i]['Content'];
|
||||||
|
$article = str_get_html($jsonItem);
|
||||||
|
|
||||||
$item = array();
|
$item = array();
|
||||||
|
|
||||||
$uri = $article->find('h3 a', 0)->href;
|
$uri = $article->find('h3 a', 0)->href;
|
||||||
$uri = 'https://rainbow6.ubisoft.com' . $uri;
|
$uri = 'https://rainbow6.ubisoft.com' . $uri;
|
||||||
$item['uri'] = $uri;
|
$item['uri'] = $uri;
|
||||||
$item['title'] = $article->find('h3 a', 0)->plaintext;
|
$item['title'] = $article->find('h3', 0)->plaintext;
|
||||||
$item['content'] = $article->find('a', 0)->innertext . '<br />' . $article->find('strong', 0)->plaintext;
|
$item['content'] = $article->find('img', 0)->outertext . '<br />' . $article->find('strong', 0)->plaintext;
|
||||||
$item['timestamp'] = strtotime($article->find('p', 0)->plaintext);
|
$item['timestamp'] = strtotime($article->find('p.news_date', 0)->plaintext);
|
||||||
|
|
||||||
$this->items[] = $item;
|
$this->items[] = $item;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue