aboutsummaryrefslogtreecommitdiff
path: root/bridges/AlbionOnlineBridge.php
blob: 4b191b1817189f1d6c62d4317ed05d8cba32972a (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
<?php

class AlbionOnlineBridge extends BridgeAbstract
{
    const NAME = 'Albion Online Changelog';
    const MAINTAINER = 'otakuf';
    const URI = 'https://albiononline.com';
    const DESCRIPTION = 'Returns the changes made to the Albion Online';
    const CACHE_TIMEOUT = 3600; // 60min

    const PARAMETERS = [ [
        'postcount' => [
            'name' => 'Limit',
            'type' => 'number',
            'required' => true,
            'title' => 'Maximum number of items to return',
            'defaultValue' => 5,
        ],
        'language' => [
            'name' => 'Language',
            'type' => 'list',
            'values' => [
                'English' => 'en',
                'Deutsch' => 'de',
                'Polski' => 'pl',
                'Français' => 'fr',
                'Русский' => 'ru',
                'Português' => 'pt',
                'Español' => 'es',
             ],
            'title' => 'Language of changelog posts',
            'defaultValue' => 'en',
        ],
        'full' => [
            'name' => 'Full changelog',
            'type' => 'checkbox',
            'required' => false,
            'title' => 'Enable to receive the full changelog post for each item'
        ],
    ]];

    public function collectData()
    {
        $api = 'https://albiononline.com/';
        // Example: https://albiononline.com/en/changelog/1/5
        $url = $api . $this->getInput('language') . '/changelog/1/' . $this->getInput('postcount');

        $html = getSimpleHTMLDOM($url);

        foreach ($html->find('li') as $data) {
            $item = [];
            $item['uri'] = self::URI . $data->find('a', 0)->getAttribute('href');
            $item['title'] = trim(explode('|', $data->find('span', 0)->plaintext)[0]);
            // Time below work only with en lang. Need to think about solution. May be separate request like getFullChangelog, but to english list for all language
            //print_r( date_parse_from_format( 'M j, Y' , 'Sep 9, 2020') );
            //$item['timestamp'] = $this->extractDate($a->plaintext);
            $item['author'] = 'albiononline.com';
            if ($this->getInput('full')) {
                $item['content'] = $this->getFullChangelog($item['uri']);
            } else {
                //$item['content'] = trim(preg_replace('/\s+/', ' ', $data->find('span', 0)->plaintext));
                // Just use title, no info at all or use title and date, see above
                $item['content'] = $item['title'];
            }
            $item['uid'] = hash('sha256', $item['title']);
            $this->items[] = $item;
        }
    }

    private function getFullChangelog($url)
    {
        $html = getSimpleHTMLDOMCached($url);
        $html = defaultLinkTo($html, self::URI);
        return $html->find('div.small-12.columns', 1)->innertext;
    }
}