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

class DansTonChatBridge extends BridgeAbstract
{
    const MAINTAINER = 'Astalaseven';
    const NAME = 'DansTonChat Bridge';
    const URI = 'https://danstonchat.com/';
    const CACHE_TIMEOUT = 21600; //6h
    const DESCRIPTION = 'Returns latest quotes from DansTonChat.';

    public function collectData()
    {
        $url = self::URI . 'latest.html';
        $dom = getSimpleHTMLDOM($url);

        $items = $dom->find('div.item');
        foreach ($items as $element) {
            $item = [];
            $item['uri'] = $element->find('a', 0)->href;
            $titleContent = $element->find('h3 a', 0);
            if ($titleContent) {
                $item['title'] = 'DansTonChat ' . html_entity_decode($titleContent->plaintext, ENT_QUOTES);
            } else {
                $item['title'] = 'DansTonChat';
            }
            $item['content'] = $element->find('div.item-content a', 0)->innertext;
            $this->items[] = $item;
        }
    }
}