1 | <?php |
||
32 | class Reader |
||
33 | { |
||
34 | /** |
||
35 | * @var \FeedIo\Adapter\ClientInterface; |
||
36 | */ |
||
37 | protected $client; |
||
38 | |||
39 | /** |
||
40 | * @var \Psr\Log\LoggerInterface |
||
41 | */ |
||
42 | protected $logger; |
||
43 | |||
44 | /** |
||
45 | * @var array |
||
46 | */ |
||
47 | protected $parsers = array(); |
||
48 | |||
49 | /** |
||
50 | * @param ClientInterface $client |
||
51 | * @param LoggerInterface $logger |
||
52 | */ |
||
53 | 12 | public function __construct(ClientInterface $client, LoggerInterface $logger) |
|
58 | |||
59 | /** |
||
60 | * @param Parser $parser |
||
61 | * @return $this |
||
62 | */ |
||
63 | 11 | public function addParser(ParserAbstract $parser) |
|
70 | |||
71 | /** |
||
72 | * adds a filter to every parsers |
||
73 | * |
||
74 | * @param \FeedIo\FilterInterface $filter |
||
75 | * @return $this |
||
76 | */ |
||
77 | public function addFilter(FilterInterface $filter) |
||
78 | { |
||
79 | foreach ($this->parsers as $parser) { |
||
80 | $parser->addFilter($filter); |
||
81 | } |
||
82 | |||
83 | return $this; |
||
84 | } |
||
85 | |||
86 | /** |
||
87 | * Reset filters on every parsers |
||
88 | * @return $this |
||
89 | */ |
||
90 | public function resetFilters() |
||
91 | { |
||
92 | foreach ($this->parsers as $parser) { |
||
93 | $parser->resetFilters(); |
||
94 | } |
||
95 | |||
96 | return $this; |
||
97 | } |
||
98 | |||
99 | /** |
||
100 | * @param $url |
||
101 | * @param FeedInterface $feed |
||
102 | * @param \DateTime $modifiedSince |
||
103 | * @return \FeedIo\Reader\Result |
||
104 | * @throws ReadErrorException |
||
105 | */ |
||
106 | 3 | public function read($url, FeedInterface $feed, \DateTime $modifiedSince = null) |
|
107 | { |
||
108 | 3 | $this->logger->debug("start reading {$url}"); |
|
109 | 3 | if (is_null($modifiedSince)) { |
|
110 | 2 | $this->logger->notice("no 'modifiedSince' parameter given, setting it to 01/01/1970"); |
|
111 | 2 | $modifiedSince = new \DateTime('@0'); |
|
112 | } |
||
113 | |||
114 | try { |
||
115 | 3 | $this->logger->info("hitting {$url}"); |
|
116 | 3 | $response = $this->client->getResponse($url, $modifiedSince); |
|
117 | 2 | $document = $this->handleResponse($response, $feed); |
|
118 | |||
119 | 2 | return new Result($document, $feed, $modifiedSince, $response, $url); |
|
120 | 1 | } catch (\Exception $e) { |
|
121 | 1 | $this->logger->warning("{$url} read error : {$e->getMessage()}"); |
|
122 | 1 | throw new ReadErrorException($e); |
|
123 | } |
||
124 | } |
||
125 | |||
126 | /** |
||
127 | * @param ResponseInterface $response |
||
128 | * @param FeedInterface $feed |
||
129 | * @return Document |
||
130 | */ |
||
131 | 2 | public function handleResponse(ResponseInterface $response, FeedInterface $feed) |
|
132 | { |
||
133 | 2 | $this->logger->debug("response ok, now turning it into a document"); |
|
134 | 2 | $document = new Document($response->getBody()); |
|
135 | |||
136 | 2 | if ($response->isModified()) { |
|
137 | 1 | $this->logger->info("the stream is modified, parsing it"); |
|
138 | 1 | $this->parseDocument($document, $feed); |
|
139 | } |
||
140 | |||
141 | 2 | return $document; |
|
142 | } |
||
143 | |||
144 | /** |
||
145 | * @param Document $document |
||
146 | * @param FeedInterface $feed |
||
147 | * @return FeedInterface |
||
148 | * @throws Parser\UnsupportedFormatException |
||
149 | * @throws Reader\NoAccurateParserException |
||
150 | */ |
||
151 | 2 | public function parseDocument(Document $document, FeedInterface $feed) |
|
158 | |||
159 | /** |
||
160 | * @param Document $document |
||
161 | * @return ParserAbstract |
||
162 | * @throws Reader\NoAccurateParserException |
||
163 | */ |
||
164 | 4 | public function getAccurateParser(Document $document) |
|
176 | } |
||
177 |