From 87ab1e45132aadb4ff00c58d1ccb9f3cda438077 Mon Sep 17 00:00:00 2001 From: Tomasz Molski <41341072+KappaPrajd@users.noreply.github.com> Date: Sun, 23 Mar 2025 19:50:11 +0100 Subject: [PATCH] [BruegelBridge] Initial commit (#4470) --- bridges/BruegelBridge.php | 63 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 bridges/BruegelBridge.php diff --git a/bridges/BruegelBridge.php b/bridges/BruegelBridge.php new file mode 100644 index 00000000..b7813dbc --- /dev/null +++ b/bridges/BruegelBridge.php @@ -0,0 +1,63 @@ + [ + 'name' => 'Category', + 'type' => 'list', + 'defaultValue' => '/publications', + 'values' => [ + 'Publications' => '/publications', + 'Commentary' => '/commentary' + ] + ] + ] + ]; + + public function getIcon() + { + return self::URI . '/themes/custom/bruegel/assets/favicon/android-icon-72x72.png'; + } + + public function collectData() + { + $url = self::URI . $this->getInput('category'); + $html = getSimpleHTMLDOM($url); + + $articles = $html->find('.c-listing__content article'); + + foreach ($articles as $article) { + $title = $article->find('.c-list-item__title a span', 0)->plaintext; + $content = trim($article->find('.c-list-item__description', 0)->plaintext); + $publishDate = $article->find('.c-list-item__date', 0)->plaintext; + $href = $article->find('.c-list-item__title a', 0)->getAttribute('href'); + + $item = [ + 'title' => $title, + 'content' => $content, + 'timestamp' => strtotime($publishDate), + 'uri' => self::URI . $href, + 'author' => $this->getAuthor($article), + ]; + + $this->items[] = $item; + } + } + + private function getAuthor($article) + { + $authorsElements = $article->find('.c-list-item__authors a'); + + $authors = array_map(function ($author) { + return $author->plaintext; + }, $authorsElements); + + return join(', ', $authors); + } +} \ No newline at end of file