forked from floriansemm/SolrBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Solr.php
402 lines (326 loc) · 10.9 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
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
<?php
namespace FS\SolrBundle;
use FS\SolrBundle\Client\Solarium\SolariumClient;
use FS\SolrBundle\Doctrine\Mapper\MetaInformationInterface;
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\MetaInformationFactory;
use FS\SolrBundle\Event\ErrorEvent;
use FS\SolrBundle\Event\Event;
use FS\SolrBundle\Event\Events;
use FS\SolrBundle\Query\AbstractQuery;
use FS\SolrBundle\Query\SolrQuery;
use FS\SolrBundle\Repository\Repository;
use Solarium\Client;
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
/**
* Class allows to index doctrine entities
*/
class Solr implements SolrInterface
{
/**
* @var Client
*/
protected $solrClientCore = null;
/**
* @var EntityMapper
*/
protected $entityMapper = null;
/**
* @var CommandFactory
*/
protected $commandFactory = null;
/**
* @var EventDispatcherInterface
*/
protected $eventManager = null;
/**
* @var MetaInformationFactory
*/
protected $metaInformationFactory = null;
/**
* @var int numFound
*/
private $numberOfFoundDocuments = 0;
/**
* @param Client $client
* @param CommandFactory $commandFactory
* @param EventDispatcherInterface $manager
* @param MetaInformationFactory $metaInformationFactory
* @param EntityMapper $entityMapper
*/
public function __construct(
Client $client,
CommandFactory $commandFactory,
EventDispatcherInterface $manager,
MetaInformationFactory $metaInformationFactory,
EntityMapper $entityMapper
)
{
$this->solrClientCore = $client;
$this->commandFactory = $commandFactory;
$this->eventManager = $manager;
$this->metaInformationFactory = $metaInformationFactory;
$this->entityMapper = $entityMapper;
}
/**
* @return Client
*/
public function getClient()
{
return $this->solrClientCore;
}
/**
* @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->setIndex($metaInformation->getIndex());
$query->setMappedFields($metaInformation->getFieldMapping());
return $query;
}
/**
* {@inheritdoc}
*/
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);
}
/**
* {@inheritdoc}
*/
public function removeDocument($entity)
{
$command = $this->commandFactory->get('identifier');
$this->entityMapper->setMappingCommand($command);
$metaInformations = $this->metaInformationFactory->loadInformation($entity);
if ($document = $this->entityMapper->toDocument($metaInformations)) {
$event = new Event($this->solrClientCore, $metaInformations);
$this->eventManager->dispatch(Events::PRE_DELETE, $event);
try {
$indexName = $metaInformations->getIndex();
$client = new SolariumClient($this->solrClientCore);
$client->delete($document, $indexName);
} 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);
}
}
/**
* {@inheritdoc}
*/
public function addDocument($entity)
{
$metaInformation = $this->metaInformationFactory->loadInformation($entity);
if (!$this->addToIndex($metaInformation, $entity)) {
return false;
}
$doc = $this->toDocument($metaInformation);
$event = new Event($this->solrClientCore, $metaInformation);
$this->eventManager->dispatch(Events::PRE_INSERT, $event);
$this->addDocumentToIndex($doc, $metaInformation, $event);
$this->eventManager->dispatch(Events::POST_INSERT, $event);
}
/**
* @param MetaInformationInterface $metaInformation
* @param object $entity
*
* @return boolean
*
* @throws \BadMethodCallException if callback method not exists
*/
private function addToIndex(MetaInformationInterface $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();
}
/**
* {@inheritdoc}
*/
public function computeChangeSet(array $doctrineChangeSet, $entity)
{
/* If not set, act the same way as if there are changes */
if (empty($doctrineChangeSet)) {
return array();
}
$metaInformation = $this->metaInformationFactory->loadInformation($entity);
$documentChangeSet = array();
/* Check all Solr fields on this entity and check if this field is in the change set */
foreach ($metaInformation->getFields() as $field) {
if (array_key_exists($field->name, $doctrineChangeSet)) {
$documentChangeSet[] = $field->name;
}
}
return $documentChangeSet;
}
/**
* Get select query
*
* @param AbstractQuery $query
*
* @return \Solarium\QueryType\Select\Query\Query
*/
public function getSelectQuery(AbstractQuery $query)
{
$selectQuery = $this->solrClientCore->createSelect($query->getOptions());
$selectQuery->setQuery($query->getQuery());
$selectQuery->setFilterQueries($query->getFilterQueries());
$selectQuery->setSorts($query->getSorts());
$selectQuery->setFields($query->getFields());
return $selectQuery;
}
/**
* {@inheritdoc}
*/
public function query(AbstractQuery $query)
{
$entity = $query->getEntity();
$runQueryInIndex = $query->getIndex();
$selectQuery = $this->getSelectQuery($query);
try {
$response = $this->solrClientCore->select($selectQuery, $runQueryInIndex);
$entities = array();
foreach ($response as $document) {
$entities[] = $this->entityMapper->toEntity($document, $entity);
}
return $entities;
} catch (\Exception $e) {
$errorEvent = new ErrorEvent(null, null, 'query solr');
$errorEvent->setException($e);
$this->eventManager->dispatch(Events::ERROR, $errorEvent);
return array();
}
}
/**
* 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->solrClientCore));
try {
$client = new SolariumClient($this->solrClientCore);
$client->clearCores();
} 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->solrClientCore));
}
/**
* @param object $entity
*/
public function synchronizeIndex($entity)
{
$this->updateDocument($entity);
}
/**
* @param object $entity
*
* @return bool
*/
public function updateDocument($entity)
{
$metaInformations = $this->metaInformationFactory->loadInformation($entity);
if (!$this->addToIndex($metaInformations, $entity)) {
return false;
}
$doc = $this->toDocument($metaInformations);
$event = new Event($this->solrClientCore, $metaInformations);
$this->eventManager->dispatch(Events::PRE_UPDATE, $event);
$this->addDocumentToIndex($doc, $metaInformations, $event);
$this->eventManager->dispatch(Events::POST_UPDATE, $event);
return true;
}
/**
* @param MetaInformationInterface $metaInformation
*
* @return Document
*/
private function toDocument(MetaInformationInterface $metaInformation)
{
$command = $this->commandFactory->get('all');
$this->entityMapper->setMappingCommand($command);
$doc = $this->entityMapper->toDocument($metaInformation);
return $doc;
}
/**
* @param object $doc
* @param MetaInformationInterface $metaInformation
* @param Event $event
*/
private function addDocumentToIndex($doc, MetaInformationInterface $metaInformation, Event $event)
{
try {
$indexName = $metaInformation->getIndex();
$client = new SolariumClient($this->solrClientCore);
$client->update($doc, $indexName);
} catch (\Exception $e) {
$errorEvent = new ErrorEvent(null, $metaInformation, json_encode($this->solrClientCore->getOptions()), $event);
$errorEvent->setException($e);
$this->eventManager->dispatch(Events::ERROR, $errorEvent);
}
}
}