[WallmineNewsBridge] Add bridge (#2035)

This commit is contained in:
Joseph 2021-04-02 13:01:51 +00:00 committed by GitHub
parent d61871a45e
commit 579bfa669c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 50 additions and 0 deletions

View File

@ -0,0 +1,50 @@
<?php
class WallmineNewsBridge extends BridgeAbstract {
const NAME = 'Wallmine News Bridge';
const URI = 'https://wallmine.com';
const DESCRIPTION = 'Returns financial news';
const MAINTAINER = 'VerifiedJoseph';
const PARAMETERS = array();
const CACHE_TIMEOUT = 900; // 15 mins
public function collectData() {
$html = getSimpleHTMLDOM($this->getURI() . '/news/')
or returnServerError('Could not request: ' . $this->getURI() . '/news/');
$html = defaultLinkTo($html, self::URI);
foreach($html->find('div.container.news-card') as $div) {
$item = array();
$item['uri'] = $div->find('a', 0)->href;
$image = $div->find('img.img-fluid', 0)->src;
$page = getSimpleHTMLDOMCached($item['uri'], 7200)
or returnServerError('Could not request: ' . $item['uri']);
$article = $page->find('div.container.article-container', 0);
$item['title'] = $article->find('h1', 0)->plaintext;
$article->find('p.published-on', 0)->children(0)->outertext = '';
$article->find('p.published-on', 0)->children(1)->outertext = '';
$date = str_replace('at', '', $article->find('p.published-on', 0)->innertext);
$item['timestamp'] = $date;
$article->find('h1', 0)->outertext = '';
$article->find('p.published-on', 0)->outertext = '';
$item['content'] = $article->innertext;
$item['enclosures'][] = $image;
$this->items[] = $item;
if (count($this->items) >= 10) {
break;
}
}
}
}