forked from floriansemm/SolrBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Solr.php
387 lines (309 loc) · 10.3 KB
/
Solr.php
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
<?php
namespace FS\SolrBundle;
use Solarium\QueryType\Update\Query\Document\Document;
use FS\SolrBundle\Doctrine\Mapper\EntityMapper;
use FS\SolrBundle\Doctrine\Mapper\Mapping\CommandFactory;
use FS\SolrBundle\Doctrine\Mapper\MetaInformation;
use FS\SolrBundle\Doctrine\Mapper\MetaInformationFactory;
use FS\SolrBundle\Event\ErrorEvent;
use FS\SolrBundle\Event\Event;
use FS\SolrBundle\Event\Events;
use FS\SolrBundle\Event\EventManager;
use FS\SolrBundle\Query\AbstractQuery;
use FS\SolrBundle\Query\FindByIdentifierQuery;
use FS\SolrBundle\Query\SolrQuery;
use FS\SolrBundle\Repository\Repository;
use Solarium\Client;
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
class Solr
{
/**
* @var Client
*/
private $solrClient = null;
/**
* @var EntityMapper
*/
private $entityMapper = null;
/**
* @var CommandFactory
*/
private $commandFactory = null;
/**
* @var EventDispatcher
*/
private $eventManager = null;
/**
* @var MetaInformationFactory
*/
private $metaInformationFactory = null;
/**
* @var int numFound
*/
private $numberOfFoundDocuments = 0;
/**
* @param Client $client
* @param CommandFactory $commandFactory
* @param EventManager $manager
* @param MetaInformationFactory $metaInformationFactory
*/
public function __construct(
Client $client,
CommandFactory $commandFactory,
EventDispatcherInterface $manager,
MetaInformationFactory $metaInformationFactory,
EntityMapper $entityMapper
) {
$this->solrClient = $client;
$this->commandFactory = $commandFactory;
$this->eventManager = $manager;
$this->metaInformationFactory = $metaInformationFactory;
$this->entityMapper = $entityMapper;
}
/**
* @return Solarium\Client
*/
public function getSolrClient()
{
return $this->solrClient;
}
/**
* @return EntityMapper
*/
public function getMapper()
{
return $this->entityMapper;
}
/**
* @return CommandFactory
*/
public function getCommandFactory()
{
return $this->commandFactory;
}
/**
* @return MetaInformationFactory
*/
public function getMetaFactory()
{
return $this->metaInformationFactory;
}
/**
* @param object $entity
* @return SolrQuery
*/
public function createQuery($entity)
{
$metaInformation = $this->metaInformationFactory->loadInformation($entity);
$class = $metaInformation->getClassName();
$entity = new $class;
$query = new SolrQuery();
$query->setSolr($this);
$query->setEntity($entity);
$query->setMappedFields($metaInformation->getFieldMapping());
return $query;
}
/**
* @param string repositoryClassity
* @return RepositoryInterface
*/
public function getRepository($entityAlias)
{
$metaInformation = $this->metaInformationFactory->loadInformation($entityAlias);
$class = $metaInformation->getClassName();
$entity = new $class;
$repositoryClass = $metaInformation->getRepository();
if (class_exists($repositoryClass)) {
$repositoryInstance = new $repositoryClass($this, $entity);
if ($repositoryInstance instanceof Repository) {
return $repositoryInstance;
}
throw new \RuntimeException(sprintf(
'%s must extends the FS\SolrBundle\Repository\Repository',
$repositoryClass
));
}
return new Repository($this, $entity);
}
/**
* @param object $entity
*/
public function removeDocument($entity)
{
$command = $this->commandFactory->get('identifier');
$this->entityMapper->setMappingCommand($command);
$metaInformations = $this->metaInformationFactory->loadInformation($entity);
if ($document = $this->entityMapper->toDocument($metaInformations)) {
$deleteQuery = new FindByIdentifierQuery();
$deleteQuery->setDocument($document);
$event = new Event($this->solrClient, $metaInformations);
$this->eventManager->dispatch(Events::PRE_DELETE, $event);
try {
$delete = $this->solrClient->createUpdate();
$delete->addDeleteQuery($deleteQuery->getQuery());
$delete->addCommit();
$this->solrClient->update($delete);
} catch (\Exception $e) {
$errorEvent = new ErrorEvent(null, $metaInformations, 'delete-document', $event);
$errorEvent->setException($e);
$this->eventManager->dispatch(Events::ERROR, $errorEvent);
}
$this->eventManager->dispatch(Events::POST_DELETE, $event);
}
}
/**
* @param object $entity
*/
public function addDocument($entity)
{
$metaInformation = $this->metaInformationFactory->loadInformation($entity);
if (!$this->addToIndex($metaInformation, $entity)) {
return;
}
$doc = $this->toDocument($metaInformation);
$event = new Event($this->solrClient, $metaInformation);
$this->eventManager->dispatch(Events::PRE_INSERT, $event);
$this->addDocumentToIndex($doc, $metaInformation, $event);
$this->eventManager->dispatch(Events::POST_INSERT, $event);
}
/**
* @param MetaInformation $metaInformation
* @param object $entity
* @throws \BadMethodCallException if callback method not exists
* @return boolean
*/
private function addToIndex(MetaInformation $metaInformation, $entity)
{
if (!$metaInformation->hasSynchronizationFilter()) {
return true;
}
$callback = $metaInformation->getSynchronizationCallback();
if (!method_exists($entity, $callback)) {
throw new \BadMethodCallException(sprintf('unknown method %s in entity %s', $callback, get_class($entity)));
}
return $entity->$callback();
}
/**
* @param AbstractQuery $query
* @return array of found documents
*/
public function createSelectQuery(AbstractQuery $query)
{
$solrQuery = $query;
$query = $this->solrClient->createSelect($query->getOptions());
$solrQuery->setClientQuery($query);
return $query;
}
/**
* @param AbstractQuery $query
* @return array of found documents
*/
public function query(AbstractQuery $query, $mapToEntity = true )
{
$solrQuery = $query;
$sorts = $query->getSorts();
$entity = $query->getEntity();
$queryString = $query->getQuery();
$query = $solrQuery->getClientQuery();
$query->setQuery($queryString);
$query->setSorts($sorts);
try {
$response = $this->solrClient->select($query);
$solrQuery->setResponse($response);
} catch (\Exception $e) {
$errorEvent = new ErrorEvent(null, null, 'query solr');
$errorEvent->setException($e);
$this->eventManager->dispatch(Events::ERROR, $errorEvent);
return array();
}
$this->numberOfFoundDocuments = $response->getNumFound();
if ($this->numberOfFoundDocuments == 0) {
return array();
}
$targetEntity = $entity;
$mappedEntities = array();
if($mapToEntity){
foreach ($response as $document) {
$mappedEntities[] = $this->entityMapper->toEntity($document, $targetEntity);
}
return $mappedEntities;
}else{
return $response;
}
}
/**
* Number of results found by query
* @return integer
*/
public function getNumFound()
{
return $this->numberOfFoundDocuments;
}
/**
* clears the whole index by using the query *:*
*/
public function clearIndex()
{
$this->eventManager->dispatch(Events::PRE_CLEAR_INDEX, new Event($this->solrClient));
try {
$delete = $this->solrClient->createUpdate();
$delete->addDeleteQuery('*:*');
$delete->addCommit();
$this->solrClient->update($delete);
} catch (\Exception $e) {
$errorEvent = new ErrorEvent(null, null, 'clear-index');
$errorEvent->setException($e);
$this->eventManager->dispatch(Events::ERROR, $errorEvent);
}
$this->eventManager->dispatch(Events::POST_CLEAR_INDEX, new Event($this->solrClient));
}
/**
* @param object $entity
*/
public function synchronizeIndex($entity)
{
$this->updateDocument($entity);
}
/**
* @param object $entity
*/
public function updateDocument($entity)
{
$metaInformations = $this->metaInformationFactory->loadInformation($entity);
$doc = $this->toDocument($metaInformations);
$event = new Event($this->solrClient, $metaInformations);
$this->eventManager->dispatch(Events::PRE_UPDATE, $event);
$this->addDocumentToIndex($doc, $metaInformations, $event);
$this->eventManager->dispatch(Events::POST_UPDATE, $event);
return true;
}
/**
* @param MetaInformation metaInformationsy
* @return Document|null
*/
private function toDocument(MetaInformation $metaInformation)
{
$command = $this->commandFactory->get('all');
$this->entityMapper->setMappingCommand($command);
$doc = $this->entityMapper->toDocument($metaInformation);
return $doc;
}
/**
* @param Document $doc
* @param MetaInformation $metaInformation
*/
private function addDocumentToIndex($doc, MetaInformation $metaInformation, Event $event)
{
try {
$update = $this->solrClient->createUpdate();
$update->addDocument($doc);
$update->addCommit();
$this->solrClient->update($update);
} catch (\Exception $e) {
$errorEvent = new ErrorEvent(null, $metaInformation, json_encode($this->solrClient->getOptions()), $event);
$errorEvent->setException($e);
echo $e->getMessage();
$this->eventManager->dispatch(Events::ERROR, $errorEvent);
}
}
}