rss-bridge/bridges/BinanceBridge.php

42 lines
1.1 KiB
PHP
Raw Normal View History

2019-06-01 11:18:30 +02:00
<?php
class BinanceBridge extends BridgeAbstract {
const NAME = 'Binance Blog';
const URI = 'https://www.binance.com/en/blog';
const DESCRIPTION = 'Subscribe to the Binance blog.';
2019-06-01 11:18:30 +02:00
const MAINTAINER = 'thefranke';
const CACHE_TIMEOUT = 3600; // 1h
public function getIcon() {
return 'https://bin.bnbstatic.com/static/images/common/favicon.ico';
}
public function collectData() {
$html = getSimpleHTMLDOM(self::URI)
or returnServerError('Could not fetch Binance blog data.');
2019-06-01 11:18:30 +02:00
2021-07-29 18:55:36 +02:00
$appData = $html->find('script[id="__APP_DATA"]');
$appDataJson = json_decode($appData[0]->innertext);
2019-06-01 11:18:30 +02:00
2021-07-29 18:55:36 +02:00
foreach($appDataJson->pageData->redux->blogList->blogList as $element) {
2019-06-01 11:18:30 +02:00
2021-07-29 18:55:36 +02:00
$date = $element->postTime;
$abstract = $element->brief;
$uri = self::URI . '/' . $element->lang . '/blog/' . $element->idStr;
$title = $element->title;
$content = $element->content;
2019-06-01 11:18:30 +02:00
$item = array();
$item['title'] = $title;
$item['uri'] = $uri;
2021-07-29 18:55:36 +02:00
$item['timestamp'] = substr($date, 0, -3);
2019-06-01 11:18:30 +02:00
$item['author'] = 'Binance';
$item['content'] = $content;
$this->items[] = $item;
if (count($this->items) >= 10)
break;
}
}
}