aboutsummaryrefslogtreecommitdiff
path: root/bridges/VieDeMerdeBridge.php
blob: be3841577ac993c548e455d834fd3e25f9ce2129 (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
<?php

class VieDeMerdeBridge extends BridgeAbstract
{
    const MAINTAINER = 'floviolleau';
    const NAME = 'VieDeMerde Bridge';
    const URI = 'https://www.viedemerde.fr';
    const DESCRIPTION = 'Returns latest quotes from VieDeMerde.';
    const CACHE_TIMEOUT = 7200;

    const PARAMETERS = [[
            'item_limit' => [
            'name' => 'Limit number of returned items',
            'type' => 'number',
            'defaultValue' => 20
            ]
    ]];

    public function collectData()
    {
        $limit = $this->getInput('item_limit');

        if ($limit < 1) {
            $limit = 20;
        }

        $html = getSimpleHTMLDOM(self::URI, []);
        $quotes = $html->find('article.bg-white');
        if (count($quotes) === 0) {
            return;
        }

        foreach ($quotes as $quote) {
            $item = [];
            $item['uri'] = self::URI . $quote->find('a', 0)->href;
            $titleContent = $quote->find('h2', 0);

            if ($titleContent) {
                $item['title'] = html_entity_decode($titleContent->plaintext, ENT_QUOTES);
            } else {
                continue;
            }

            $quoteText = $quote->find('a', 1)->plaintext;
            $isAVDM = $quote->find('.vote-btn', 0)->plaintext;
            $isNotAVDM = $quote->find('.vote-btn', 1)->plaintext;
            $item['content'] = $quoteText . '<br>' . $isAVDM . '<br>' . $isNotAVDM;
            $item['author'] = $quote->find('p', 0)->plaintext;
            $item['uid'] = hash('sha256', $item['title']);

            $this->items[] = $item;

            if (count($this->items) >= $limit) {
                break;
            }
        }
    }
}