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

class AcrimedBridge extends FeedExpander
{
    const MAINTAINER = 'qwertygc';
    const NAME = 'Acrimed Bridge';
    const URI = 'https://www.acrimed.org/';
    const CACHE_TIMEOUT = 4800; //2hours
    const DESCRIPTION = 'Returns the newest articles';

    const PARAMETERS = [
        [
            'limit' => [
                'name' => 'limit',
                'type' => 'number',
                'defaultValue' => -1,
            ]
        ]
    ];

    public function collectData()
    {
        $url = 'https://www.acrimed.org/spip.php?page=backend';
        $limit = $this->getInput('limit');
        $this->collectExpandableDatas($url, $limit);
    }

    protected function parseItem(array $item)
    {
        $articlePage = getSimpleHTMLDOM($item['uri']);
        $article = sanitize($articlePage->find('article.article1', 0)->innertext);
        $article = defaultLinkTo($article, static::URI);
        $item['content'] = $article;

        return $item;
    }
}