Add WorldbankBridge and OglafBridge (#3862)

* Add WorldbankBridge and OglafBridge

* Update OglafBridge.php

Remove redundant parent call to parseItem and rename formal argument to improve code clarity.

* Update WorldbankBridge.php

fix lint
This commit is contained in:
tillcash 2023-12-28 18:20:34 +05:30 committed by GitHub
parent c8178e1fc4
commit 5ab1924c4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 87 additions and 0 deletions

35
bridges/OglafBridge.php Normal file
View File

@ -0,0 +1,35 @@
<?php
class OglafBridge extends FeedExpander
{
const NAME = 'Oglaf';
const URI = 'https://www.oglaf.com/';
const DESCRIPTION = 'Fetch the entire comic image';
const MAINTAINER = 'tillcash';
const PARAMETERS = [
[
'limit' => [
'name' => 'limit (max 20)',
'type' => 'number',
'defaultValue' => 10,
'required' => true,
]
]
];
public function collectData()
{
$url = self::URI . 'feeds/rss/';
$limit = min(20, $this->getInput('limit'));
$this->collectExpandableDatas($url, $limit);
}
protected function parseItem($item)
{
$html = getSimpleHTMLDOMCached($item['uri']);
$comicImage = $html->find('img[id="strip"]', 0);
$item['content'] = $comicImage;
return $item;
}
}

View File

@ -0,0 +1,52 @@
<?php
class WorldbankBridge extends BridgeAbstract
{
const NAME = 'World Bank Group';
const URI = 'https://www.worldbank.org/en/news/all';
const DESCRIPTION = 'Return articles from The World Bank Group All News';
const MAINTAINER = 'tillcash';
const PARAMETERS = [
[
'lang' => [
'name' => 'Language',
'type' => 'list',
'defaultValue' => 'English',
'values' => [
'English' => 'English',
'French' => 'French',
]
],
'limit' => [
'name' => 'limit (max 100)',
'type' => 'number',
'defaultValue' => 5,
'required' => true,
]
]
];
public function collectData()
{
$apiUrl = 'https://search.worldbank.org/api/v2/news?format=json&rows='
. min(100, $this->getInput('limit'))
. '&lang_exact=' . $this->getInput('lang');
$jsonData = json_decode(getContents($apiUrl));
// Remove unnecessary data from the original object
if (isset($jsonData->documents->facets)) {
unset($jsonData->documents->facets);
}
foreach ($jsonData->documents as $element) {
$this->items[] = [
'uid' => $element->id,
'timestamp' => $element->lnchdt,
'title' => $element->title->{'cdata!'},
'uri' => $element->url,
'content' => $element->descr->{'cdata!'},
];
}
}
}