[UberNewsroomBridge] Add bridge (#2748)

This commit is contained in:
Joseph 2022-05-25 07:43:18 +00:00 committed by GitHub
parent 7afc577e97
commit 85e5ce2679
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 187 additions and 0 deletions

View File

@ -0,0 +1,187 @@
<?php
class UberNewsroomBridge extends BridgeAbstract {
const NAME = 'Uber Newsroom Bridge';
const URI = 'https://www.uber.com';
const URI_API_DATA = 'https://newsroomapi.uber.com/wp-json/newsroom/v1/data?locale=';
const URI_API_POST = 'https://newsroomapi.uber.com/wp-json/wp/v2/posts/';
const DESCRIPTION = 'Returns news posts';
const MAINTAINER = 'VerifiedJoseph';
const PARAMETERS = array(array(
'region' => array(
'name' => 'Region',
'type' => 'list',
'values' => array(
'Africa' => array(
'Egypt' => 'en-EG',
'Ghana' => 'en-GH',
'Kenya' => 'en-KE',
'Nigeria' => 'en-NG',
'South Africa' => 'en-ZA',
'Tanzania' => 'en-TZ',
'Uganda' => 'en-UG',
),
'Asia' => array(
'Bangladesh' => 'en-BD',
'Hong Kong' => 'en-HK',
'India' => 'en-IN',
'Japan' => 'ja-JP',
'Korea' => 'en-KR',
'Macau' => 'en-MO',
'Sri Lanka' => 'en-LK',
'Taiwan' => 'en-TW',
),
'Central America' => array(
'Costa Rica' => 'es-CR',
'Dominican Republic' => 'es-DO',
'El Salvador' => 'es-SV',
'Guatemala' => 'es-GT',
'Honduras' => 'en-HN',
'Mexico' => 'es-MX',
'Nicaragua' => 'es-NI',
'Panama' => 'es-PA',
'Puerto Rico' => 'en-PR',
),
'Europe' => array(
'Austria' => 'de-AT',
'Azerbaijan' => 'az',
'Belarus' => 'ru-BY',
'Belgium' => 'en-BE',
'Bulgaria' => 'en-BG',
'Croatia' => 'hr',
'Czech Republic' => 'cs-CZ',
'Denmark' => 'en-DK',
'Estonia' => 'en-EE',
'Finland' => 'en-FI',
'France' => 'en-FR',
'Germany' => 'en-DE',
'Greece' => 'en-GR',
'Hungary' => 'en-HU',
'Ireland' => 'en-IE',
'Italy' => 'en-IT',
'Kazakhstan' => 'ru-KZ',
'Lithuania' => 'en-LT',
'Netherlands' => 'en-NL',
'Norway' => 'en-NO',
'Poland' => 'pl',
'Portugal' => 'en-PT',
'Romania' => 'en-RO',
'Russia' => 'ru',
'Slovakia' => 'sk',
'Spain' => 'es-ES',
'Sweden' => 'en-SE',
'Switzerland' => 'en-CH',
'Turkey' => 'en-TR',
'Ukraine' => 'uk-UA',
'United Kingdom' => 'en-GB',
),
'Middle East' => array(
'Bahrain' => 'en-BH',
'Israel' => 'en-IL',
'Jordan' => 'en-JO',
'Lebanon' => 'en-LB',
'Pakistan' => 'en-PK',
'Qatar' => 'en-QA',
'Saudi Arabia' => 'en-SA',
'United Arab Emirates' => 'en-AE',
),
'North America' => array(
'Canada' => 'en-CA',
'United States' => 'en-US',
),
'Pacific' => array(
'Australia' => 'en-AU',
'New Zealand' => 'en-NZ',
),
'South America' => array(
'Argentina' => 'es-AR',
'Bolivia' => 'es-BO',
'Brazil' => 'pt-BR',
'Chile' => 'es-CL',
'Colombia' => 'es-CO',
'Ecuador' => 'es-EC',
'Paraguay' => 'en-PY',
'Peru' => 'es-PE',
'Trinidad & Tobago' => 'en-TT',
'Uruguay' => 'es-UY',
'Venezuela' => 'en-VE',
),
),
'defaultValue' => 'en-US',
)
));
const CACHE_TIMEOUT = 3600;
public function collectData() {
$json = getContents(self::URI_API_DATA . $this->getInput('region'));
$data = json_decode($json);
foreach ($data->articles as $article) {
$json = getContents(self::URI_API_POST . $article->id);
$post = json_decode($json);
$item = array();
$item['title'] = $post->title->rendered;
$item['timestamp'] = $post->date;
$item['uri'] = $post->link;
$item['content'] = $this->formatContent($post->content->rendered);
$item['enclosures'][] = $this->getImage($post->yoast_head);
$this->items[] = $item;
}
}
public function getURI() {
if (is_null($this->getInput('region')) === false && $this->getInput('region') !== 'all') {
return self::URI . '/' . $this->getInput('region') . '/newsroom';
}
return parent::getURI() . '/newsroom';
}
public function getName() {
if (is_null($this->getInput('region')) === false) {
return $this->getRegionName() . ' - Uber Newsroom';
}
return parent::getName();
}
private function getRegionName() {
$parameters = $this->getParameters();
foreach ($parameters[0]['region']['values'] as $values) {
foreach ($values as $name => $code) {
if ($code === $this->getInput('region')) {
return $name;
}
}
}
}
private function getImage($html) {
$html = str_get_html($html);
if ($html->find('meta[property="og:image"]', 0)) {
return $html->find('meta[property="og:image"]', 0)->content;
}
return '';
}
private function formatContent($html) {
$html = str_get_html($html);
foreach ($html->find('div.wp-video') as $div) {
$div->style = '';
}
foreach ($html->find('video') as $video) {
$video->width = '100%';
$video->height = '';
}
return $html;
}
}