aboutsummaryrefslogtreecommitdiff
path: root/bridges/BinanceBridge.php
blob: 73dbf0b9bc405abedb758686fdcb0cf7e8742adf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?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);

        foreach ($appDataJson->pageData->redux->blogList->blogList as $element) {
            $date = $element->postTime;
            $abstract = $element->brief;
            $uri = self::URI . '/' . $element->lang . '/blog/' . $element->idStr;
            $title = $element->title;
            $content = $element->content;

            $item = [];
            $item['title'] = $title;
            $item['uri'] = $uri;
            $item['timestamp'] = substr($date, 0, -3);
            $item['author'] = 'Binance';
            $item['content'] = $content;

            $this->items[] = $item;

            if (count($this->items) >= 10) {
                break;
            }
        }
    }
}