forked from RSS-Bridge/rss-bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[BinanceBridge] Add new bridge (RSS-Bridge#1135)
- Loading branch information
1 parent
a1596e3
commit c695666
Showing
1 changed file
with
103 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
<?php | ||
class BinanceBridge extends BridgeAbstract { | ||
const NAME = 'Binance'; | ||
const URI = 'https://www.binance.com'; | ||
const DESCRIPTION = 'Subscribe to the Binance blog or the Binance Zendesk announcements.'; | ||
const MAINTAINER = 'thefranke'; | ||
const CACHE_TIMEOUT = 3600; // 1h | ||
|
||
const PARAMETERS = array( array( | ||
'category' => array( | ||
'name' => 'category', | ||
'type' => 'list', | ||
'exampleValue' => 'Blog', | ||
'title' => 'Select a category', | ||
'values' => array( | ||
'Blog' => 'Blog', | ||
'Announcements' => 'Announcements' | ||
) | ||
) | ||
)); | ||
|
||
public function getIcon() { | ||
return 'https://bin.bnbstatic.com/static/images/common/favicon.ico'; | ||
} | ||
|
||
public function getName() { | ||
return self::NAME . ' ' . $this->getInput('category'); | ||
} | ||
|
||
public function getURI() { | ||
if ($this->getInput('category') == 'Blog') | ||
return self::URI . '/en/blog'; | ||
else | ||
return 'https://binance.zendesk.com/hc/en-us/categories/115000056351-Announcements'; | ||
} | ||
|
||
protected function collectBlogData() { | ||
$html = getSimpleHTMLDOM($this->getURI()) | ||
or returnServerError('Could not fetch Binance blog data.'); | ||
|
||
foreach($html->find('div[direction="row"]') as $element) { | ||
|
||
$date = $element->find('div[direction="column"]', 0); | ||
$day = $date->find('div', 0)->innertext; | ||
$month = $date->find('div', 1)->innertext; | ||
$extractedDate = $day . ' ' . $month; | ||
|
||
$abstract = $element->find('div[direction="column"]', 1); | ||
$a = $abstract->find('a', 0); | ||
$uri = self::URI . $a->href; | ||
$title = $a->innertext; | ||
|
||
$full = getSimpleHTMLDOMCached($uri); | ||
$content = $full->find('div.desc', 1); | ||
|
||
$item = array(); | ||
$item['title'] = $title; | ||
$item['uri'] = $uri; | ||
$item['timestamp'] = strtotime($extractedDate); | ||
$item['author'] = 'Binance'; | ||
$item['content'] = $content; | ||
|
||
$this->items[] = $item; | ||
|
||
if (count($this->items) >= 10) | ||
break; | ||
} | ||
} | ||
|
||
protected function collectAnnouncementData() { | ||
$html = getSimpleHTMLDOM($this->getURI()) | ||
or returnServerError('Could not fetch Zendesk announcement data.'); | ||
|
||
foreach($html->find('a.article-list-link') as $a) { | ||
$title = $a->innertext; | ||
$uri = 'https://binance.zendesk.com' . $a->href; | ||
|
||
$full = getSimpleHTMLDOMCached($uri); | ||
$content = $full->find('div.article-body', 0); | ||
$date = $full->find('time', 0)->getAttribute('datetime'); | ||
|
||
$item = array(); | ||
|
||
$item['title'] = $title; | ||
$item['uri'] = $uri; | ||
$item['timestamp'] = strtotime($date); | ||
$item['author'] = 'Binance'; | ||
$item['content'] = $content; | ||
|
||
$this->items[] = $item; | ||
|
||
if (count($this->items) >= 10) | ||
break; | ||
} | ||
} | ||
|
||
public function collectData() { | ||
if ($this->getInput('category') == 'Blog') | ||
$this->collectBlogData(); | ||
else | ||
$this->collectAnnouncementData(); | ||
} | ||
} |