From f957eea3003a734acd8f9fa72ef13661cee277ed Mon Sep 17 00:00:00 2001
From: User123698745
Date: Mon, 31 Jul 2023 01:05:38 +0200
Subject: [PATCH] [FallGuysBridge] new bridge (#3584)
---
bridges/FallGuysBridge.php | 134 +++++++++++++++++++++++++++++++++++++
1 file changed, 134 insertions(+)
create mode 100644 bridges/FallGuysBridge.php
diff --git a/bridges/FallGuysBridge.php b/bridges/FallGuysBridge.php
new file mode 100644
index 00000000..dbb34792
--- /dev/null
+++ b/bridges/FallGuysBridge.php
@@ -0,0 +1,134 @@
+ [
+ 'name' => 'Language',
+ 'type' => 'list',
+ 'values' => [
+ 'English' => 'en-US',
+ 'لعربية' => 'ar',
+ 'Deutsch' => 'de',
+ 'Español (Spain)' => 'es-ES',
+ 'Español (LA)' => 'es-MX',
+ 'Français' => 'fr',
+ 'Italiano' => 'it',
+ '日本語' => 'ja',
+ '한국어' => 'ko',
+ 'Polski' => 'pl',
+ 'Português (Brasil)' => 'pt-BR',
+ 'Русский' => 'ru',
+ 'Türkçe' => 'tr',
+ '简体中文' => 'zh-CN',
+ ],
+ 'defaultValue' => self::DEFAULT_LOCALE,
+ ]
+ ]
+ ];
+
+ public function collectData()
+ {
+ $html = getSimpleHTMLDOM(self::getURI());
+
+ $data = json_decode($html->find('#__NEXT_DATA__', 0)->innertext);
+
+ foreach ($data->props->pageProps->newsList as $newsItem) {
+ $headerDescription = property_exists($newsItem->header, 'description') ? $newsItem->header->description : '';
+ $headerImage = $newsItem->header->image->src;
+
+ $contentImages = [$headerImage];
+
+ $content = <<{$headerDescription}
+ 
+ HTML;
+
+ foreach ($newsItem->content->items as $contentItem) {
+ if (property_exists($contentItem, 'articleCopy')) {
+ if (property_exists($contentItem->articleCopy, 'title')) {
+ $title = $contentItem->articleCopy->title;
+
+ $content .= <<{$title}
+ HTML;
+ }
+
+ $text = $contentItem->articleCopy->copy;
+
+ $content .= <<{$text}
+ HTML;
+ } elseif (property_exists($contentItem, 'articleImage')) {
+ $image = $contentItem->articleImage->imageSrc;
+
+ if ($image != $headerImage) {
+ $contentImages[] = $image;
+
+ $content .= <<
+ HTML;
+ }
+ } elseif (property_exists($contentItem, 'embeddedVideo')) {
+ $mediaOptions = $contentItem->embeddedVideo->mediaOptions;
+ $mainContentOptions = $contentItem->embeddedVideo->mainContentOptions;
+
+ if (count($mediaOptions) == count($mainContentOptions)) {
+ for ($i = 0; $i < count($mediaOptions); $i++) {
+ if (property_exists($mediaOptions[$i], 'youtubeVideo')) {
+ $videoUrl = 'https://youtu.be/' . $mediaOptions[$i]->youtubeVideo->contentId;
+ $image = $mainContentOptions[$i]->image->src;
+
+ $content .= '';
+
+ if ($image != $headerImage) {
+ $contentImages[] = $image;
+
+ $content .= <<
+ HTML;
+ }
+
+ $content .= <<(Video: {$videoUrl})
+ HTML;
+
+ $content .= '
';
+ }
+ }
+ }
+ }
+ }
+
+ $item = [
+ 'uid' => $newsItem->_id,
+ 'uri' => self::getURI() . '/' . $newsItem->_slug,
+ 'title' => $newsItem->_title,
+ 'timestamp' => $newsItem->lastModified,
+ 'content' => $content,
+ 'enclosures' => $contentImages,
+ ];
+
+ $this->items[] = $item;
+ }
+ }
+
+ public function getURI()
+ {
+ $locale = $this->getInput('locale') ?? self::DEFAULT_LOCALE;
+ return self::BASE_URI . '/' . $locale . '/news';
+ }
+
+ public function getIcon()
+ {
+ return self::BASE_URI . '/favicon.ico';
+ }
+}