blob: 02031ad97b6ed0179d6720a2bc9363093bd8db7a (
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
55
56
57
58
|
<?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);
abstract protected function _sortContent($content);
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 $this->_sortContent($items);
}
public function cacheTime() {
return $this->_cacheTime;
}
abstract public function title();
}
?>
|