aboutsummaryrefslogtreecommitdiff
path: root/bridges/BundesbankBridge.php
blob: 0c6b943f6788e5235f17069d73e5568ba458c77d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<?php

class BundesbankBridge extends BridgeAbstract
{
    const PARAM_LANG = 'lang';

    const LANG_EN = 'en';
    const LANG_DE = 'de';

    const NAME = 'Bundesbank Bridge';
    const URI = 'https://www.bundesbank.de/';
    const DESCRIPTION = 'Returns the latest studies of the Bundesbank (Germany)';
    const MAINTAINER = 'logmanoriginal';
    const CACHE_TIMEOUT = 86400; // 24 hours

    const PARAMETERS = [
        [
            self::PARAM_LANG => [
                'name' => 'Language',
                'type' => 'list',
                'defaultValue' => self::LANG_DE,
                'values' => [
                    'English' => self::LANG_EN,
                    'Deutsch' => self::LANG_DE
                ]
            ]
        ]
    ];

    public function getIcon()
    {
        return self::URI . 'resource/crblob/1890/a7f48ee0ae35348748121770ba3ca009/mL/favicon-ico-data.ico';
    }

    public function getURI()
    {
        switch ($this->getInput(self::PARAM_LANG)) {
            case self::LANG_EN:
                return self::URI . 'en/publications/reports/studies';
            case self::LANG_DE:
                return self::URI . 'de/publikationen/berichte/studien';
        }

        return parent::getURI();
    }

    public function collectData()
    {
        $html = getSimpleHTMLDOM($this->getURI());

        $html = defaultLinkTo($html, $this->getURI());

        foreach ($html->find('ul.resultlist li') as $study) {
            $item = [];

            $item['uri'] = $study->find('.teasable__link', 0)->href;

            // Get title without child elements (i.e. subtitle)
            $title = $study->find('.teasable__title div.h2', 0);

            foreach ($title->children as &$child) {
                $child->outertext = '';
            }

            $item['title'] = $title->innertext;

            // Add subtitle to the content if it exists
            $item['content'] = '';

            if ($subtitle = $study->find('.teasable__subtitle', 0)) {
                $item['content'] .= '<strong>' . $study->find('.teasable__subtitle', 0)->plaintext . '</strong>';
            }

            $teasable = $study->find('.teasable__text', 0);
            $teasableText = $teasable->plaintext ?? '';
            $item['content'] .= '<p>' . $teasableText . '</p>';

            $item['timestamp'] = strtotime($study->find('.teasable__date', 0)->plaintext);

            // Downloads and older studies don't have images
            if ($study->find('.teasable__image', 0)) {
                $item['enclosures'] = [
                    $study->find('.teasable__image img', 0)->src
                ];
            }

            $this->items[] = $item;
        }
    }
}