From bd88bc27d3113717caf28023bbeb39a02f58901f Mon Sep 17 00:00:00 2001 From: Tostiman <18124323+t0stiman@users.noreply.github.com> Date: Thu, 17 Oct 2024 14:14:51 +0200 Subject: [PATCH] [TheDrive] New bridge (#4304) --- bridges/TheDriveBridge.php | 45 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 bridges/TheDriveBridge.php diff --git a/bridges/TheDriveBridge.php b/bridges/TheDriveBridge.php new file mode 100644 index 00000000..f164dccd --- /dev/null +++ b/bridges/TheDriveBridge.php @@ -0,0 +1,45 @@ +collectExpandableDatas('https://www.thedrive.com/feed', 20); + } + + protected function parseItem($feedItem) + { + $item = parent::parseItem($feedItem); + + //remove warzone articles + if (str_contains($item['uri'], 'the-war-zone')) { + return null; + } + + //the first image in the article is an attachment for some reason + foreach ($item['enclosures'] as $attachment) { + $item['content'] = '' . $item['content']; + } + $item['enclosures'] = []; + + //make youtube videos clickable + $html = str_get_html($item['content']); + + foreach ($html->find('div.lazied-youtube-frame') as $youtubeVideoDiv) { + $videoID = $youtubeVideoDiv->getAttribute('data-video-id'); + + //place around the
+ $youtubeVideoDiv->outertext = '' . $youtubeVideoDiv->outertext . ''; + } + + $item['content'] = $html; + + return $item; + } +}