[UrlebirdBridge] Add bridge (#2163)

This commit is contained in:
dotter-ak 2021-06-25 22:55:13 +03:00 committed by GitHub
parent ecaae735d9
commit 606972dd3c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 63 additions and 0 deletions

View File

@ -0,0 +1,63 @@
<?php
class UrlebirdBridge extends BridgeAbstract {
const MAINTAINER = 'dotter-ak';
const NAME = 'urlebird.com';
const URI = 'https://urlebird.com/';
const DESCRIPTION = 'Bridge for urlebird.com';
const CACHE_TIMEOUT = 10;
const PARAMETERS = array(
array(
'query' => array(
'name' => '@username or #hashtag',
'type' => 'text',
'required' => true,
'title' => '@username or #hashtag'
)
)
);
private $title;
public function collectData() {
switch($this->getInput('query')[0]) {
default:
returnServerError('Please, enter valid username or hashtag!');
break;
case '@':
$url = 'https://urlebird.com/user/' . substr($this->getInput('query'), 1) . '/';
break;
case '#':
$url = 'https://urlebird.com/hash/' . substr($this->getInput('query'), 1) . '/';
break;
}
$html = getSimpleHTMLDOM($url);
$this->title = $html->find('title', 0)->innertext;
$articles = $html->find('div.thumb');
foreach ($articles as $article) {
$item = array();
$item['uri'] = $article->find('a', 2)->href;
$article_content = getSimpleHTMLDOM($item['uri']);
$item['author'] = $article->find('img', 0)->alt . ' (' .
$article_content->find('a.user-video', 1)->innertext . ')';
$item['title'] = $article_content->find('title', 0)->innertext;
$item['enclosures'][] = $article_content->find('video', 0)->poster;
$video = $article_content->find('video', 0);
$video->autoplay = null;
$item['content'] = $video->outertext . '<br>' .
$article_content->find('div.music', 0) . '<br>' .
$article_content->find('div.info2', 0)->innertext .
'<br><br><a href="' . $article_content->find('video', 0)->src . '">Video link</a>';
$this->items[] = $item;
}
}
public function getName() {
return $this->title ?: parent::getName();
}
public function getIcon() {
return 'https://urlebird.com/favicon.ico';
}
}