From 07228a07aac9f2604468a80b104784ca7246a4f7 Mon Sep 17 00:00:00 2001 From: tillcash Date: Thu, 12 Sep 2024 21:17:28 +0530 Subject: [PATCH] [InternetDownloadManagerBridge] add bridge --- bridges/InternetDownloadManagerBridge.php | 39 +++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 bridges/InternetDownloadManagerBridge.php diff --git a/bridges/InternetDownloadManagerBridge.php b/bridges/InternetDownloadManagerBridge.php new file mode 100644 index 00000000..aea33512 --- /dev/null +++ b/bridges/InternetDownloadManagerBridge.php @@ -0,0 +1,39 @@ +find('.col-center.with__nav > h3'); + $count = 0; + + foreach ($elements as $element) { + if ($count >= self::MAX_ITEMS) { + break; + } + + // Extract the release date information + $dateInfo = $element->next_sibling()->plaintext; + preg_match('/\(Released: (.*?)\)/', $dateInfo, $matches); + $date = $matches[1] ?? time(); + + // Extract the content of the changelog + $content = $element->next_sibling()->next_sibling()->outertext; + + $this->items[] = [ + 'title' => $element->plaintext, + 'timestamp' => $date, + 'content' => $content, + ]; + + $count++; + } + } +}