mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-22 09:35:28 +03:00
faf63269a1
* [BinanceBridge] Add new bridge * [BinanceBridge] TravisCI fixes * [BinanceBridge] PR fixes * [BinanceBridge] Fix for Binance blog: Pull JSON data instead of HTML * [BinanceBridge] Fix double quotes * [BinanceBridge] Remove announcements category (because of Cloudflare) * [BinanceBridge] Simplify code to bare minimum * [BinanceBridge] Adapt code to new JSON structure and fetch full article * [BinanceBridge] Fix linting issues
55 lines
1.8 KiB
PHP
55 lines
1.8 KiB
PHP
<?php
|
|
|
|
class BinanceBridge extends BridgeAbstract
|
|
{
|
|
const NAME = 'Binance Blog';
|
|
const URI = 'https://www.binance.com/en/blog';
|
|
const DESCRIPTION = 'Subscribe to the Binance blog.';
|
|
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.');
|
|
|
|
$appData = $html->find('script[id="__APP_DATA"]');
|
|
$appDataJson = json_decode($appData[0]->innertext);
|
|
$allposts = $appDataJson->routeProps->f3ac->blogListRes->list;
|
|
|
|
foreach ($allposts as $element) {
|
|
$date = $element->releasedTime;
|
|
$title = $element->title;
|
|
$category = $element->category->name;
|
|
|
|
$suburl = strtolower($category);
|
|
$suburl = str_replace(' ', '_', $suburl);
|
|
|
|
$uri = self::URI . '/' . $suburl . '/' . $element->idStr;
|
|
|
|
$contentHTML = getSimpleHTMLDOMCached($uri);
|
|
$contentAppData = $contentHTML->find('script[id="__APP_DATA"]');
|
|
$contentAppDataJson = json_decode($contentAppData[0]->innertext);
|
|
$content = $contentAppDataJson->routeProps->a106->blogDetail->content;
|
|
|
|
$item = [];
|
|
$item['title'] = $title;
|
|
$item['uri'] = $uri;
|
|
$item['timestamp'] = substr($date, 0, -3);
|
|
$item['author'] = 'Binance';
|
|
$item['content'] = $content;
|
|
$item['categories'] = $category;
|
|
|
|
$this->items[] = $item;
|
|
|
|
if (count($this->items) >= 10) {
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|