summaryrefslogtreecommitdiff
path: root/providers/Provider.php
blob: 0c3f344195fcae3029af72a188f7c2e4fa53a6b7 (plain)
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
<?php

namespace Providers;

abstract class Provider {

    protected $_options = [];
    protected $_feed = NULL;
    protected $_cacheTimeout = '15 minutes';
    protected $_cacheTime;

    public function __construct($feed, $options=[]) {
        $this->_feed = $feed;
        $this->_options = $options;
    }

    abstract protected function _getCachePath();

    protected function _getCache($path) {
        return file_get_contents($path);
    }

    abstract protected function _fetchItems();

    abstract protected function _spamFilter($items);

    protected function _getItems() {
        $cacheFile = sprintf($this->_getCachePath(), $this->_feed);
        $this->_cacheTime = file_exists($cacheFile) ? filemtime($cacheFile) : 0;
        if ($this->_cacheTime > strtotime('-' . $this->_cacheTimeout)) {
            return json_decode($this->_getCache($cacheFile));
        } else {
            $content = $this->_fetchItems();
            file_put_contents($cacheFile, json_encode($content));
            $this->_cacheTime = time();
            return $content;
        }
    }

    public function get() {
        $items = $this->_getItems();
        if (isset($this->_options['spamfilter'])) {
            $items = $this->_spamFilter($items);
        }
        return $items;
    }

    public function cacheTime() {
        return $this->_cacheTime;
    }

}

?>