forked from floriansemm/SolrBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolr.php
299 lines (251 loc) · 7.87 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
<?php
namespace FS\SolrBundle;
use Doctrine\ORM\Query;
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\Query\AbstractQuery;
use FS\SolrBundle\Query\SolrQuery;
use FS\SolrBundle\Repository\Exception\RepositoryNotFoundException;
use FS\SolrBundle\Repository\Repository;
use FS\SolrBundle\Repository\RepositoryInterface;
use Solarium\Client;
use Solarium\QueryType\Select\Result\Result;
use Solarium\QueryType\Update\Query\Document\Document;
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
class Solr
{
/**
* @var Client
*/
private $solrClient = null;
/**
* @var EntityMapper
*/
private $entityMapper = null;
/**
* @var CommandFactory
*/
private $commandFactory = null;
/**
* @var EventDispatcherInterface
*/
private $eventManager = null;
/**
* @var MetaInformationFactory
*/
private $metaInformationFactory = null;
/**
* @var int numFound
*/
private $numberOfFoundDocuments = 0;
/**
* @param Client $client
* @param CommandFactory $commandFactory
* @param EventDispatcherInterface $manager
* @param MetaInformationFactory $metaInformationFactory
* @param Doctrine\Mapper\EntityMapper $entityMapper
*/
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 EntityMapper
*/
public function getMapper()
{
return $this->entityMapper;
}
/**
* @return CommandFactory
*/
public function getCommandFactory()
{
return $this->commandFactory;
}
/**
* @return MetaInformationFactory
*/
public function getMetaFactory()
{
return $this->metaInformationFactory;
}
/**
* @param string $entityAlias
*
* @throws \RuntimeException
* @return RepositoryInterface
*/
public function getRepository($entityAlias)
{
try
{
$metaInformation = $this->metaInformationFactory->loadInformation($entityAlias);
}
catch(\RuntimeException $e)
{
throw new RepositoryNotFoundException(get_class($entityAlias), $e);
}
$repositoryClass = $metaInformation->getRepository();
if(class_exists($repositoryClass))
{
$repositoryInstance = new $repositoryClass($this, $metaInformation);
if($repositoryInstance instanceof Repository)
{
return $repositoryInstance;
}
throw new \RuntimeException(sprintf(
'%s must extends the FS\SolrBundle\Repository\Repository',
$repositoryClass
));
}
return new Repository($this, $metaInformation);
}
/**
* Run a query on Solr
*
* @param AbstractQuery $query
*
* @return Result
*/
public function query(AbstractQuery $query)
{
$queryString = $query->getQuery();
$solrQuery = $this->solrClient->createSelect($query->getOptions());
$solrQuery->setQuery($queryString);
try
{
$response = $this->solrClient->select($solrQuery);
}
catch(\Exception $e)
{
$errorEvent = new ErrorEvent(null, 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();
}
return $response;
}
/**
* @param object $document
* @param MetaInformation $meta
*/
public function removeDocument($document, MetaInformation $meta)
{
$command = $this->commandFactory->get('all');
$this->entityMapper->setMappingCommand($command);
$deleteQuery = $meta->getIdentifier()->name.':'.$document->id;
$event = new Event($this->solrClient, $document, $meta);
$this->eventManager->dispatch(Events::PRE_DELETE, $event);
try
{
$delete = $this->solrClient->createUpdate();
$delete->addDeleteQuery($deleteQuery);
$delete->addCommit();
$this->solrClient->update($delete);
}
catch(\Exception $e)
{
$errorEvent = new ErrorEvent(null, $document, $meta, 'delete-document', $event);
$errorEvent->setException($e);
$this->eventManager->dispatch(Events::ERROR, $errorEvent);
}
$this->eventManager->dispatch(Events::POST_DELETE, $event);
}
/**
* @param object $document
* @param MetaInformation $meta
*/
public function addDocument($document, MetaInformation $meta)
{
$event = new Event($this->solrClient, $document, $meta);
$this->eventManager->dispatch(Events::PRE_INSERT, $event);
$this->addDocumentToIndex($document, $meta, $event);
$this->eventManager->dispatch(Events::POST_INSERT, $event);
}
/**
* 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, 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 $document
* @param MetaInformation $meta
*
* @return bool
*/
public function updateDocument($document, MetaInformation $meta = null)
{
$event = new Event($this->solrClient, $document, $meta);
$this->eventManager->dispatch(Events::PRE_UPDATE, $event);
$this->addDocumentToIndex($document, $meta, $event);
$this->eventManager->dispatch(Events::POST_UPDATE, $event);
return true;
}
/**
* @param Document $doc
* @param MetaInformation $meta
* @param Event $event
*/
private function addDocumentToIndex($doc, MetaInformation $meta, Event $event)
{
try
{
$update = $this->solrClient->createUpdate();
$update->addDocument($doc);
$update->addCommit();
$this->solrClient->update($update);
}
catch(\Exception $e)
{
$errorEvent = new ErrorEvent(null, $doc, $meta, json_encode($this->solrClient->getOptions()), $event);
$errorEvent->setException($e);
$this->eventManager->dispatch(Events::ERROR, $errorEvent);
}
}
}