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

class LesJoiesDuCodeBridge extends BridgeAbstract
{
    const MAINTAINER = 'superbaillot.net';
    const NAME = 'Les Joies Du Code';
    const URI = 'https://lesjoiesducode.fr/';
    const CACHE_TIMEOUT = 7200; // 2h
    const DESCRIPTION = 'LesJoiesDuCode';

    public function collectData()
    {
        $html = getSimpleHTMLDOM(self::URI);

        foreach ($html->find('article.blog-post') as $element) {
            $item = [];
            $temp = $element->find('h1 a', 0);
            $titre = html_entity_decode($temp->innertext);
            $url = $temp->href;

            $temp = $element->find('div.blog-post-content', 0);

            // retrieve .gif instead of static .jpg
            $images = $temp->find('p img');
            foreach ($images as $image) {
                $img_src = str_replace('.jpg', '.gif', $image->src);
                $image->src = $img_src;
            }
            $content = $temp->innertext;

            $item['content'] = trim($content);
            $item['uri'] = $url;
            $item['title'] = trim($titre);

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