1 | <?php |
||
37 | class AlgoliaManager |
||
38 | { |
||
39 | /** |
||
40 | * @var AlgoliaFactory |
||
41 | */ |
||
42 | protected $factory; |
||
43 | |||
44 | /** |
||
45 | * @var AlgoliaConfig |
||
46 | */ |
||
47 | protected $config; |
||
48 | |||
49 | /** |
||
50 | * @var null|Client |
||
51 | */ |
||
52 | protected $client; |
||
53 | |||
54 | /** |
||
55 | * @var ActiveRecordFactory |
||
56 | */ |
||
57 | protected $activeRecordFactory; |
||
58 | |||
59 | /** |
||
60 | * @var null|string |
||
61 | */ |
||
62 | protected $env; |
||
63 | |||
64 | /** |
||
65 | * Initiates a new AlgoliaManager. |
||
66 | * |
||
67 | * @param Client $client |
||
68 | * @param ActiveRecordFactory $activeRecordFactory |
||
69 | * |
||
70 | */ |
||
71 | 39 | public function __construct(Client $client, ActiveRecordFactory $activeRecordFactory) |
|
76 | |||
77 | /** |
||
78 | * Returns the Algolia Client. |
||
79 | * |
||
80 | * @return Client |
||
|
|||
81 | */ |
||
82 | 19 | public function getClient() |
|
86 | |||
87 | /** |
||
88 | * Sets the environment for the manager. |
||
89 | * |
||
90 | * @param string $env |
||
91 | */ |
||
92 | 39 | public function setEnv($env) |
|
93 | { |
||
94 | 39 | $this->env = $env; |
|
95 | 39 | } |
|
96 | |||
97 | /** |
||
98 | * Returns the environment for the manager. |
||
99 | * |
||
100 | * @return null|string |
||
101 | */ |
||
102 | 1 | public function getEnv() |
|
103 | { |
||
104 | 1 | return $this->env; |
|
105 | } |
||
106 | |||
107 | /** |
||
108 | * Indexes a searchable model to all indices. |
||
109 | * |
||
110 | * @param SearchableInterface $searchableModel |
||
111 | * |
||
112 | * @return array |
||
113 | */ |
||
114 | 5 | public function pushToIndices(SearchableInterface $searchableModel) |
|
115 | { |
||
116 | 5 | $indices = $this->initIndices($searchableModel); |
|
117 | 5 | $response = []; |
|
118 | |||
119 | 5 | foreach ($indices as $index) { |
|
120 | 5 | $record = $searchableModel->getAlgoliaRecord(); |
|
121 | 5 | $response[$index->indexName] = $index->addObject($record, $searchableModel->getObjectID()); |
|
122 | 5 | } |
|
123 | |||
124 | 5 | return $response; |
|
125 | } |
||
126 | |||
127 | /** |
||
128 | * Indexes multiple searchable models in a batch. The given searchable models must be of the same class. |
||
129 | * |
||
130 | * @param SearchableInterface[] $searchableModels |
||
131 | * |
||
132 | * @return array |
||
133 | */ |
||
134 | 3 | public function pushMultipleToIndices(array $searchableModels) |
|
135 | { |
||
136 | 3 | list($indices, $algoliaRecords) = $this->getIndicesAndAlgoliaRecordsFromSearchableModelArray($searchableModels); |
|
137 | 2 | $response = []; |
|
138 | |||
139 | 2 | foreach ($indices as $index) { |
|
140 | /* @var Index $index */ |
||
141 | 2 | $response[$index->indexName] = $index->addObjects($algoliaRecords); |
|
142 | 2 | } |
|
143 | |||
144 | 2 | return $response; |
|
145 | } |
||
146 | |||
147 | /** |
||
148 | * Updates the models data in all indices. |
||
149 | * |
||
150 | * @param SearchableInterface $searchableModel |
||
151 | * |
||
152 | * @return array |
||
153 | */ |
||
154 | 3 | public function updateInIndices(SearchableInterface $searchableModel) |
|
155 | { |
||
156 | 3 | $indices = $this->initIndices($searchableModel); |
|
157 | 3 | $response = []; |
|
158 | |||
159 | 3 | foreach ($indices as $index) { |
|
160 | 3 | $record = $searchableModel->getAlgoliaRecord(); |
|
161 | 3 | $record['objectID'] = $searchableModel->getObjectID(); |
|
162 | 3 | $response[$index->indexName] = $index->saveObject($record); |
|
163 | 3 | } |
|
164 | |||
165 | 3 | return $response; |
|
166 | } |
||
167 | |||
168 | /** |
||
169 | * Updates multiple models data in all indices. The given searchable models must be of the same class. |
||
170 | * |
||
171 | * @param SearchableInterface[] $searchableModels |
||
172 | * |
||
173 | * @return array |
||
174 | */ |
||
175 | 2 | public function updateMultipleInIndices(array $searchableModels) |
|
176 | { |
||
177 | 2 | list($indices, $algoliaRecords) = $this->getIndicesAndAlgoliaRecordsFromSearchableModelArray($searchableModels); |
|
178 | 1 | $response = []; |
|
179 | |||
180 | 1 | foreach ($indices as $index) { |
|
181 | /* @var Index $index */ |
||
182 | 1 | $response[$index->indexName] = $index->saveObjects($algoliaRecords); |
|
183 | 1 | } |
|
184 | |||
185 | 1 | return $response; |
|
186 | } |
||
187 | |||
188 | /** |
||
189 | * Removes a searchable model from indices. |
||
190 | * |
||
191 | * @param SearchableInterface $searchableModel |
||
192 | * |
||
193 | * @return array |
||
194 | * @throws \Exception |
||
195 | */ |
||
196 | 2 | public function removeFromIndices(SearchableInterface $searchableModel) |
|
197 | { |
||
198 | 2 | $indices = $indices = $this->initIndices($searchableModel); |
|
199 | 2 | $response = []; |
|
200 | |||
201 | 2 | foreach ($indices as $index) { |
|
202 | 2 | $objectID = $searchableModel->getObjectID(); |
|
203 | 2 | $response[$index->indexName] = $index->deleteObject($objectID); |
|
204 | 2 | } |
|
205 | |||
206 | 2 | return $response; |
|
207 | } |
||
208 | |||
209 | /** |
||
210 | * Re-indexes the indices safely for the given ActiveRecord Class. |
||
211 | * |
||
212 | * @param string $className The name of the ActiveRecord to be indexed. |
||
213 | * |
||
214 | * @return array |
||
215 | */ |
||
216 | 3 | public function reindex($className) |
|
217 | { |
||
218 | 3 | $this->checkImplementsSearchableInterface($className); |
|
219 | 2 | $activeRecord = $this->activeRecordFactory->make($className); |
|
220 | 2 | $response = []; |
|
221 | |||
222 | /** @var SearchableInterface[] $activeRecordEntities */ |
||
223 | 2 | $activeRecordEntities = $activeRecord->find()->all(); |
|
224 | |||
225 | /* @var SearchableInterface $activeRecord */ |
||
226 | 2 | $indices = $indices = $this->initIndices($activeRecord); |
|
227 | 2 | $records = []; |
|
228 | |||
229 | 2 | foreach ($activeRecordEntities as $activeRecordEntity) { |
|
230 | 2 | $record = $activeRecordEntity->getAlgoliaRecord(); |
|
231 | 2 | $record['objectID'] = $activeRecordEntity->getObjectID(); |
|
232 | 2 | $records[] = $record; |
|
233 | 2 | } |
|
234 | |||
235 | 2 | foreach ($indices as $index) { |
|
236 | 2 | $temporaryIndexName = 'tmp_' . $index->indexName; |
|
237 | |||
238 | /** @var Index $temporaryIndex */ |
||
239 | 2 | $temporaryIndex = $this->initIndex($temporaryIndexName); |
|
240 | 2 | $temporaryIndex->addObjects($records); |
|
241 | |||
242 | 2 | $settings = $index->getSettings(); |
|
243 | |||
244 | // Temporary index overrides all the settings on the main one. |
||
245 | // So let's set the original settings on the temporary one before atomically moving the index. |
||
246 | 2 | $temporaryIndex->setSettings($settings); |
|
247 | |||
248 | 2 | $response[$index->indexName] = $this->moveIndex($temporaryIndexName, $index->indexName); |
|
249 | 2 | } |
|
250 | |||
251 | 2 | return $response; |
|
252 | } |
||
253 | |||
254 | /** |
||
255 | * Clears the indices for the given Class that implements SearchableInterface. |
||
256 | * |
||
257 | * @param string $className The name of the Class which indices are to be cleared. |
||
258 | * |
||
259 | * @return array |
||
260 | */ |
||
261 | 2 | public function clearIndices($className) |
|
262 | { |
||
263 | 2 | $this->checkImplementsSearchableInterface($className); |
|
264 | 1 | $activeRecord = $this->activeRecordFactory->make($className); |
|
265 | 1 | $response = []; |
|
266 | |||
267 | /* @var SearchableInterface $activeRecord */ |
||
268 | 1 | $indices = $indices = $this->initIndices($activeRecord); |
|
269 | |||
270 | 1 | foreach ($indices as $index) { |
|
271 | 1 | $response[$index->indexName] = $index->clearIndex(); |
|
272 | 1 | } |
|
273 | |||
274 | 1 | return $response; |
|
275 | } |
||
276 | |||
277 | /** |
||
278 | * Dynamically pass methods to the Algolia Client. |
||
279 | * |
||
280 | * @param string $method |
||
281 | * @param array $parameters |
||
282 | * |
||
283 | * @return mixed |
||
284 | */ |
||
285 | 16 | public function __call($method, $parameters) |
|
286 | { |
||
287 | 16 | return call_user_func_array([$this->getClient(), $method], $parameters); |
|
288 | } |
||
289 | |||
290 | /** |
||
291 | * Checks if the given class implements SearchableInterface. |
||
292 | * |
||
293 | * @param string $class Either name or instance of the class to be checked. |
||
294 | */ |
||
295 | 5 | private function checkImplementsSearchableInterface($class) |
|
296 | { |
||
297 | 5 | $reflectionClass = new \ReflectionClass($class); |
|
298 | |||
299 | 5 | if (! $reflectionClass->implementsInterface(SearchableInterface::class)) { |
|
300 | 2 | throw new \InvalidArgumentException("The class: {$reflectionClass->name} doesn't implement leinonen\\Yii2Algolia\\SearchableInterface"); |
|
301 | } |
||
302 | 3 | } |
|
303 | |||
304 | /** |
||
305 | * Returns the name of the class for given object. |
||
306 | * |
||
307 | * @param $class |
||
308 | * |
||
309 | * @return string |
||
310 | */ |
||
311 | 5 | private function getClassName($class) |
|
317 | |||
318 | /** |
||
319 | * Initializes indices for the given SearchableModel. |
||
320 | * |
||
321 | * @param SearchableInterface $searchableModel |
||
322 | * |
||
323 | * @return Index[] |
||
324 | */ |
||
325 | 15 | private function initIndices(SearchableInterface $searchableModel) |
|
326 | { |
||
327 | 15 | $indexNames = $searchableModel->getIndices(); |
|
328 | |||
339 | |||
340 | /** |
||
341 | * Maps an array of searchable models into an Algolia friendly array. Returns also indices for the searchable model |
||
342 | * which the array consists of. |
||
343 | * |
||
344 | * @param SearchableInterface[] $searchableModels |
||
345 | * |
||
346 | * @return array |
||
347 | */ |
||
348 | 5 | private function getIndicesAndAlgoliaRecordsFromSearchableModelArray(array $searchableModels) |
|
367 | } |
||
368 |
This check compares the return type specified in the
@return
annotation of a function or method doc comment with the types returned by the function and raises an issue if they mismatch.