forked from meilisearch/meilisearch-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.java
More file actions
1296 lines (1195 loc) · 50.6 KB
/
Copy pathIndex.java
File metadata and controls
1296 lines (1195 loc) · 50.6 KB
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
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package com.meilisearch.sdk;
import com.meilisearch.sdk.exceptions.MeilisearchException;
import com.meilisearch.sdk.http.URLBuilder;
import com.meilisearch.sdk.model.*;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Map;
import lombok.Getter;
import lombok.ToString;
import org.json.JSONArray;
/** Meilisearch index */
@ToString
public class Index implements Serializable {
@Getter protected String uid;
@Getter protected String primaryKey;
@Getter protected String createdAt;
@Getter protected Pagination pagination;
@Getter protected Faceting faceting;
@Getter @ToString.Exclude protected String updatedAt;
@Getter @ToString.Exclude protected transient Config config;
@ToString.Exclude protected transient Documents documents;
@ToString.Exclude protected transient TasksHandler tasksHandler;
@ToString.Exclude protected transient Search search;
@ToString.Exclude protected transient FacetSearch facetSearch;
@ToString.Exclude protected transient SettingsHandler settingsHandler;
@ToString.Exclude protected transient InstanceHandler instanceHandler;
/**
* Sets the Meilisearch configuration for the index
*
* @param config Meilisearch configuration to use
*/
void setConfig(Config config) {
this.config = config;
this.documents = new Documents(config);
this.tasksHandler = new TasksHandler(config);
this.search = new Search(config);
this.facetSearch = new FacetSearch(config);
this.settingsHandler = new SettingsHandler(config);
this.instanceHandler = new InstanceHandler(config);
}
/**
* Gets a documents with the specified uid
*
* @param <T> Type of documents returned
* @param identifier Identifier of the document to get
* @param targetClass Class of the document returned
* @return Object containing the requested document
* @throws MeilisearchException if an error occurs
* @see <a href="https://www.meilisearch.com/docs/reference/api/documents#get-one-document">API
* specification</a>
*/
public <T> T getDocument(String identifier, Class<T> targetClass) throws MeilisearchException {
return this.documents.<T>getDocument(this.uid, identifier, targetClass);
}
/**
* Gets a documents with the specified uid
*
* @param <T> Type of documents returned
* @param identifier Identifier of the document to get
* @param param accepted by the get document route
* @param targetClass Class of documents returned
* @return Object containing the requested document
* @throws MeilisearchException if an error occurs
* @see <a href="https://www.meilisearch.com/docs/reference/api/documents#get-one-document">API
* specification</a>
*/
public <T> T getDocument(String identifier, DocumentQuery param, Class<T> targetClass)
throws MeilisearchException {
return this.documents.<T>getDocument(this.uid, identifier, param, targetClass);
}
/**
* Gets a documents with the specified uid
*
* @param identifier Identifier of the document to get
* @return String containing the requested document
* @throws MeilisearchException if an error occurs
* @see <a href="https://www.meilisearch.com/docs/reference/api/documents#get-one-document">API
* specification</a>
*/
public String getRawDocument(String identifier) throws MeilisearchException {
return this.documents.getRawDocument(this.uid, identifier);
}
/**
* Gets a document with the specified uid and parameters
*
* @param identifier Identifier of the document to get
* @param param accept by the documents route
* @return String containing the requested document
* @throws MeilisearchException if an error occurs
* @see <a href="https://www.meilisearch.com/docs/reference/api/documents#get-one-document">API
* specification</a>
*/
public String getRawDocument(String identifier, DocumentQuery param)
throws MeilisearchException {
return this.documents.getRawDocument(this.uid, identifier, param);
}
/**
* Gets documents at the specified index
*
* @param <T> Type of documents returned
* @param targetClass Class of documents returned
* @return Results containing a list of Object containing the requested document
* @throws MeilisearchException if an error occurs
* @see <a href="https://www.meilisearch.com/docs/reference/api/documents#get-documents">API
* specification</a>
*/
public <T> Results<T> getDocuments(Class<T> targetClass) throws MeilisearchException {
return this.documents.getDocuments(this.uid, targetClass);
}
/**
* Gets documents at the specified index
*
* @param <T> Type of documents returned
* @param param accept by the documents route
* @param targetClass Class of documents returned
* @return Results containing a list of Object containing the requested document
* @throws MeilisearchException if an error occurs
* @see <a href="https://www.meilisearch.com/docs/reference/api/documents#get-documents">API
* specification</a>
*/
public <T> Results<T> getDocuments(DocumentsQuery param, Class<T> targetClass)
throws MeilisearchException {
return this.documents.getDocuments(this.uid, param, targetClass);
}
/**
* Gets documents as String at the specified index
*
* @return String containing a list of documents
* @throws MeilisearchException if an error occurs
* @see <a href="https://www.meilisearch.com/docs/reference/api/documents#get-documents">API
* specification</a>
*/
public String getRawDocuments() throws MeilisearchException {
return this.documents.getRawDocuments(this.uid);
}
/**
* Gets documents as String at the specified index
*
* @param param accept by the documents route
* @return String containing a list of documents
* @throws MeilisearchException if an error occurs
* @see <a href="https://www.meilisearch.com/docs/reference/api/documents#get-documents">API
* specification</a>
*/
public String getRawDocuments(DocumentsQuery param) throws MeilisearchException {
return this.documents.getRawDocuments(this.uid, param);
}
/**
* Adds/Replaces documents in the index
*
* @param document Document to add in JSON string format
* @return TaskInfo Meilisearch API response
* @throws MeilisearchException if an error occurs
* @see <a
* href="https://www.meilisearch.com/docs/reference/api/documents#add-or-replace-documents">API
* specification</a>
*/
public TaskInfo addDocuments(String document) throws MeilisearchException {
return this.documents.addDocuments(this.uid, document, null, null);
}
/**
* Adds/Replaces documents in the index
*
* @param document Document to add in JSON string format
* @param primaryKey PrimaryKey of the document to add
* @return TaskInfo Meilisearch API response
* @throws MeilisearchException if an error occurs
* @see <a
* href="https://www.meilisearch.com/docs/reference/api/documents#add-or-replace-documents">API
* specification</a>
*/
public TaskInfo addDocuments(String document, String primaryKey) throws MeilisearchException {
return this.documents.addDocuments(this.uid, document, primaryKey, null);
}
/**
* Adds/Replaces documents in the index
*
* @param document Document to add in CSV string format
* @param primaryKey PrimaryKey of the document to add
* @param csvDelimiter Custom delimiter to use for the document being added
* @return TaskInfo Meilisearch API response
* @throws MeilisearchException if an error occurs
* @see <a
* href="https://www.meilisearch.com/docs/reference/api/documents#add-or-replace-documents">API
* specification</a>
*/
public TaskInfo addDocuments(String document, String primaryKey, String csvDelimiter)
throws MeilisearchException {
return this.documents.addDocuments(this.uid, document, primaryKey, csvDelimiter);
}
/**
* Adds/Replaces documents in the index in batches
*
* @param batchSize size of the batch of documents
* @param document Document to add in JSON string format
* @param primaryKey PrimaryKey of the document to add
* @return TaskInfo Meilisearch API response
* @throws MeilisearchException if an error occurs
* @see <a
* href="https://www.meilisearch.com/docs/reference/api/documents#add-or-replace-documents">API
* specification</a>
*/
public TaskInfo[] addDocumentsInBatches(String document, Integer batchSize, String primaryKey)
throws MeilisearchException {
JSONArray jsonDocumentsArray = new JSONArray(document);
JSONArray jsonSubArray = new JSONArray();
List<TaskInfo> arrayResponses = new ArrayList<TaskInfo>();
batchSize =
jsonDocumentsArray.length() < batchSize ? jsonDocumentsArray.length() : batchSize;
for (int i = 0; i < jsonDocumentsArray.length(); i += batchSize) {
for (int j = 0; j < batchSize && j + i < jsonDocumentsArray.length(); j++) {
jsonSubArray.put(j, jsonDocumentsArray.get(i + j));
}
arrayResponses.add(
this.documents.addDocuments(
this.uid, jsonSubArray.toString(), primaryKey, null));
}
return arrayResponses.toArray(new TaskInfo[arrayResponses.size()]);
}
/**
* Adds/Replaces documents in index in batches
*
* @param document Document to add in JSON string format
* @return TaskInfo Meilisearch API response
* @throws MeilisearchException if an error occurs
* @see <a
* href="https://www.meilisearch.com/docs/reference/api/documents#add-or-replace-documents">API
* specification</a>
*/
public TaskInfo[] addDocumentsInBatches(String document) throws MeilisearchException {
return this.addDocumentsInBatches(document, 1000, null);
}
/**
* Updates documents in the index
*
* @param document Document to update in JSON string format
* @return TaskInfo Meilisearch API response
* @throws MeilisearchException if an error occurs
* @see <a
* href="https://www.meilisearch.com/docs/reference/api/documents#add-or-replace-documents">API
* specification</a>
*/
public TaskInfo updateDocuments(String document) throws MeilisearchException {
return this.documents.updateDocuments(this.uid, document, null, null);
}
/**
* Updates documents in the index
*
* @param document Document to update in JSON string format
* @param primaryKey PrimaryKey of the document
* @return TaskInfo Meilisearch API response
* @throws MeilisearchException if an error occurs
* @see <a
* href="https://www.meilisearch.com/docs/reference/api/documents#add-or-replace-documents">API
* specification</a>
*/
public TaskInfo updateDocuments(String document, String primaryKey)
throws MeilisearchException {
return this.documents.updateDocuments(this.uid, document, primaryKey, null);
}
/**
* Updates documents in the index
*
* @param document Document to update in CSV string format
* @param primaryKey PrimaryKey of the document
* @param csvDelimiter Custom delimiter to use for the document being added
* @return TaskInfo Meilisearch API response
* @throws MeilisearchException if an error occurs
* @see <a
* href="https://www.meilisearch.com/docs/reference/api/documents#add-or-replace-documents">API
* specification</a>
*/
public TaskInfo updateDocuments(String document, String primaryKey, String csvDelimiter)
throws MeilisearchException {
return this.documents.updateDocuments(this.uid, document, primaryKey, csvDelimiter);
}
/**
* Updates documents in index in batches
*
* @param document Document to add in JSON string format
* @param batchSize size of the batch of documents
* @param primaryKey PrimaryKey of the document to add
* @return TaskInfo Meilisearch API response
* @throws MeilisearchException if an error occurs
* @see <a
* href="https://www.meilisearch.com/docs/reference/api/documents#add-or-replace-documents">API
* specification</a>
*/
public TaskInfo[] updateDocumentsInBatches(
String document, Integer batchSize, String primaryKey) throws MeilisearchException {
JSONArray jsonDocumentsArray = new JSONArray(document);
JSONArray jsonSubArray = new JSONArray();
List<TaskInfo> arrayResponses = new ArrayList<TaskInfo>();
batchSize =
jsonDocumentsArray.length() < batchSize ? jsonDocumentsArray.length() : batchSize;
for (int i = 0; i < jsonDocumentsArray.length(); i += batchSize) {
for (int j = 0; j < batchSize && j + i < jsonDocumentsArray.length(); j++) {
jsonSubArray.put(j, jsonDocumentsArray.get(i + j));
}
arrayResponses.add(
this.documents.updateDocuments(
this.uid, jsonSubArray.toString(), primaryKey, null));
}
return arrayResponses.toArray(new TaskInfo[arrayResponses.size()]);
}
/**
* Updates documents in index in batches
*
* @param document Document to add in JSON string format
* @return TaskInfo Meilisearch API response
* @throws MeilisearchException if an error occurs
* @see <a
* href="https://www.meilisearch.com/docs/reference/api/documents#add-or-replace-documents">API
* specification</a>
*/
public TaskInfo[] updateDocumentsInBatches(String document) throws MeilisearchException {
return this.updateDocumentsInBatches(document, 1000, null);
}
/**
* Deletes a document from the index
*
* @param identifier Identifier of the document to delete
* @return TaskInfo Meilisearch API response
* @throws MeilisearchException if an error occurs
* @see <a
* href="https://www.meilisearch.com/docs/reference/api/documents#delete-one-document">API
* specification</a>
*/
public TaskInfo deleteDocument(String identifier) throws MeilisearchException {
return this.documents.deleteDocument(this.uid, identifier);
}
/**
* Deletes list of documents from the index
*
* @param documentsIdentifiers list of identifiers of documents to delete
* @return TaskInfo Meilisearch API response
* @throws MeilisearchException if an error occurs
* @see <a
* href="https://www.meilisearch.com/docs/reference/api/documents#delete-documents-by-batch">API
* specification</a>
* @see com.meilisearch.sdk.Index#deleteDocumentsByFilter(String) Delete documents using filter
*/
@Deprecated
public TaskInfo deleteDocuments(List<String> documentsIdentifiers) throws MeilisearchException {
return this.documents.deleteDocuments(this.uid, documentsIdentifiers);
}
/**
* Deletes list of documents from the index using the given filter
*
* @param filter filter to match the documents to delete
* @return TaskInfo Meilisearch API response
* @throws MeilisearchException if an error occurs
* @see <a
* href="https://www.meilisearch.com/docs/reference/api/documents#delete-documents-by-filter">API
* specification</a>
* @since 1.2
*/
public TaskInfo deleteDocumentsByFilter(String filter) throws MeilisearchException {
return this.documents.deleteDocumentsByFilter(this.uid, filter);
}
/**
* Deletes all documents in the index
*
* @return List of tasks Meilisearch API response
* @throws MeilisearchException if an error occurs
* @see <a
* href="https://www.meilisearch.com/docs/reference/api/documents#delete-all-documents">API
* specification</a>
*/
public TaskInfo deleteAllDocuments() throws MeilisearchException {
return this.documents.deleteAllDocuments(this.uid);
}
/**
* Searches documents in the index
*
* @param q Query string
* @return Meilisearch API response
* @throws MeilisearchException if an error occurs
* @see <a
* href="https://www.meilisearch.com/docs/reference/api/search#search-in-an-index-with-post">API
* specification</a>
*/
public SearchResult search(String q) throws MeilisearchException {
return this.search.search(this.uid, q);
}
/**
* Searches documents in the index
*
* @param searchRequest SearchRequest SearchRequest
* @return Meilisearch API response
* @throws MeilisearchException if an error occurs
* @see <a
* href="https://www.meilisearch.com/docs/reference/api/search#search-in-an-index-with-post">API
* specification</a>
*/
public Searchable search(SearchRequest searchRequest) throws MeilisearchException {
return this.search.search(this.uid, searchRequest);
}
/**
* Performs a Facet Search in the index
*
* <p>Ensure that FacetName is set in the FacetSearchRequest and note that facet search requires
* attributes to the filterableAttributes list.
*
* @param facetSearchRequest FacetSearchRequest FacetSearchRequest
* @return Meilisearch API response
* @throws MeilisearchException if an error occurs
* @see <a
* href="https://www.meilisearch.com/docs/reference/api/facet_search#perform-a-facet-search">API
* specification</a>
* @see Index#getFilterableAttributesSettings() getFilterableAttributesSettings
* @see Index#updateFilterableAttributesSettings(Object[]) updateFilterableAttributesSettings
* @since 1.3
*/
public FacetSearchable facetSearch(FacetSearchRequest facetSearchRequest)
throws MeilisearchException {
return this.facetSearch.facetSearch(this.uid, facetSearchRequest);
}
public String rawFacetSearch(FacetSearchRequest facetSearchRequest)
throws MeilisearchException {
return this.facetSearch.rawSearch(this.uid, facetSearchRequest);
}
public String rawSearch(String query) throws MeilisearchException {
return this.search.rawSearch(this.uid, query);
}
public String rawSearch(SearchRequest searchRequest) throws MeilisearchException {
return this.search.rawSearch(this.uid, searchRequest);
}
/**
* Gets the settings of the index
*
* @return settings of a given uid as String
* @throws MeilisearchException if an error occurs
* @see <a href="https://www.meilisearch.com/docs/reference/api/settings#get-settings">API
* specification</a>
*/
public Settings getSettings() throws MeilisearchException {
return this.settingsHandler.getSettings(this.uid);
}
/**
* Updates the settings of the index
*
* @param settings the object that contains the data with the new settings
* @return TaskInfo instance
* @throws MeilisearchException if an error occurs
* @see <a href="https://www.meilisearch.com/docs/reference/api/settings#update-settings">API
* specification</a>
*/
public TaskInfo updateSettings(Settings settings) throws MeilisearchException {
return this.settingsHandler.updateSettings(this.uid, settings);
}
/**
* Resets the settings of the index
*
* @return TaskInfo instance
* @throws MeilisearchException if an error occurs
* @see <a href="https://www.meilisearch.com/docs/reference/api/settings#reset-settings">API
* specification</a>
*/
public TaskInfo resetSettings() throws MeilisearchException {
return this.settingsHandler.resetSettings(this.uid);
}
/**
* Gets the ranking rules settings of the index
*
* @return ranking rules of a given uid as String
* @throws MeilisearchException if an error occurs
* @see <a href="https://www.meilisearch.com/docs/reference/api/settings#get-settings">API
* specification</a>
*/
public String[] getRankingRulesSettings() throws MeilisearchException {
return this.settingsHandler.getRankingRulesSettings(this.uid);
}
/**
* Updates the ranking rules settings of the index
*
* @param rankingRules array that contain the data with the new ranking rules
* @return TaskInfo instance
* @throws MeilisearchException if an error occurs
* @see <a href="https://www.meilisearch.com/docs/reference/api/settings#update-settings">API
* specification</a>
*/
public TaskInfo updateRankingRulesSettings(String[] rankingRules) throws MeilisearchException {
return this.settingsHandler.updateRankingRulesSettings(this.uid, rankingRules);
}
/**
* Resets the ranking rules settings of the index
*
* @return TaskInfo instance
* @throws MeilisearchException if an error occurs
* @see <a href="https://www.meilisearch.com/docs/reference/api/settings#reset-settings">API
* specification</a>
*/
public TaskInfo resetRankingRulesSettings() throws MeilisearchException {
return this.settingsHandler.resetRankingRulesSettings(this.uid);
}
/**
* Gets the synonyms settings of the index
*
* @return synonyms of a given uid as String
* @throws MeilisearchException if an error occurs
* @see <a href="https://www.meilisearch.com/docs/reference/api/settings#get-synonyms">API
* specification</a>
*/
public Map<String, String[]> getSynonymsSettings() throws MeilisearchException {
return this.settingsHandler.getSynonymsSettings(this.uid);
}
/**
* Updates the synonyms settings of the index
*
* @param synonyms key (String) value (array) pair of synonyms
* @return TaskInfo instance
* @throws MeilisearchException if an error occurs
* @see <a href="https://www.meilisearch.com/docs/reference/api/settings#update-synonyms">API
* specification</a>
*/
public TaskInfo updateSynonymsSettings(Map<String, String[]> synonyms)
throws MeilisearchException {
return this.settingsHandler.updateSynonymsSettings(this.uid, synonyms);
}
/**
* Resets the synonyms settings of the index
*
* @return TaskInfo instance
* @throws MeilisearchException if an error occurs
* @see <a href="https://www.meilisearch.com/docs/reference/api/settings#reset-synonyms">API
* specification</a>
*/
public TaskInfo resetSynonymsSettings() throws MeilisearchException {
return this.settingsHandler.resetSynonymsSettings(this.uid);
}
/**
* Gets the stop-words settings of the index
*
* @return stop-words of a given uid as String
* @throws MeilisearchException if an error occurs
* @see <a href="https://www.meilisearch.com/docs/reference/api/settings#get-stop-words">API
* specification</a>
*/
public String[] getStopWordsSettings() throws MeilisearchException {
return this.settingsHandler.getStopWordsSettings(this.uid);
}
/**
* Updates the stop-words settings of the index
*
* @param stopWords An array of strings that contains the stop-words.
* @return TaskInfo instance
* @throws MeilisearchException if an error occurs
* @see <a href="https://www.meilisearch.com/docs/reference/api/settings#update-stop-words">API
* specification</a>
*/
public TaskInfo updateStopWordsSettings(String[] stopWords) throws MeilisearchException {
return this.settingsHandler.updateStopWordsSettings(this.uid, stopWords);
}
/**
* Resets the stop-words settings of the index
*
* @return TaskInfo instance
* @throws MeilisearchException if an error occurs
* @see <a href="https://www.meilisearch.com/docs/reference/api/settings#reset-stop-words">API
* specification</a>
*/
public TaskInfo resetStopWordsSettings() throws MeilisearchException {
return this.settingsHandler.resetStopWordsSettings(this.uid);
}
/**
* Gets the searchable attributes of the index
*
* @return searchable attributes of a given uid as String
* @throws MeilisearchException if an error occurs
* @see <a
* href="https://www.meilisearch.com/docs/reference/api/settings#get-searchable-attributes">API
* specification</a>
*/
public String[] getSearchableAttributesSettings() throws MeilisearchException {
return this.settingsHandler.getSearchableAttributesSettings(this.uid);
}
/**
* Updates the searchable attributes of the index
*
* @param searchableAttributes An array of strings that contains the searchable attributes.
* @return TaskInfo instance
* @throws MeilisearchException if an error occurs
* @see <a
* href="https://www.meilisearch.com/docs/reference/api/settings#update-searchable-attributes">API
* specification</a>
*/
public TaskInfo updateSearchableAttributesSettings(String[] searchableAttributes)
throws MeilisearchException {
return this.settingsHandler.updateSearchableAttributesSettings(
this.uid, searchableAttributes);
}
/**
* Resets the searchable attributes of the index
*
* @return TaskInfo instance
* @throws MeilisearchException if an error occurs
* @see <a
* href="https://www.meilisearch.com/docs/reference/api/settings#reset-searchable-attributes">API
* specification</a>
*/
public TaskInfo resetSearchableAttributesSettings() throws MeilisearchException {
return this.settingsHandler.resetSearchableAttributesSettings(this.uid);
}
/**
* Gets the display attributes of the index
*
* @return display attributes of a given uid as String
* @throws MeilisearchException if an error occurs
* @see <a
* href="https://www.meilisearch.com/docs/reference/api/settings#get-displayed-attributes">API
* specification</a>
*/
public String[] getDisplayedAttributesSettings() throws MeilisearchException {
return this.settingsHandler.getDisplayedAttributesSettings(this.uid);
}
/**
* Updates the display attributes of the index
*
* @param displayAttributes An array of strings that contains attributes of an index to display
* @return TaskInfo instance
* @throws MeilisearchException if an error occurs
* @see <a
* href="https://www.meilisearch.com/docs/reference/api/settings#update-displayed-attributes">API
* specification</a>
*/
public TaskInfo updateDisplayedAttributesSettings(String[] displayAttributes)
throws MeilisearchException {
return this.settingsHandler.updateDisplayedAttributesSettings(this.uid, displayAttributes);
}
/**
* Resets the displayed attributes of the index
*
* @return TaskInfo instance
* @throws MeilisearchException if an error occurs
* @see <a
* href="https://www.meilisearch.com/docs/reference/api/settings#reset-displayed-attributes">API
* specification</a>
*/
public TaskInfo resetDisplayedAttributesSettings() throws MeilisearchException {
return this.settingsHandler.resetDisplayedAttributesSettings(this.uid);
}
/**
* Gets the localized attributes of the index
*
* @return localized attributes of a given uid as LocalizedAttribute
* @throws MeilisearchException if an error occurs
* @see <a
* href="https://www.meilisearch.com/docs/reference/api/settings#get-localized-attributes">API
* specification</a>
*/
public LocalizedAttribute[] getLocalizedAttributesSettings() throws MeilisearchException {
return this.settingsHandler.getLocalizedAttributes(this.uid);
}
/**
* Updates the localized attributes of the index
*
* @param localizedAttributes An array of localized attributes that contains attributes of an
* index to display
* @return TaskInfo instance
* @throws MeilisearchException if an error occurs
* @see <a
* href="https://www.meilisearch.com/docs/reference/api/settings#update-localized-attribute-settings">API
* specification</a>
*/
public TaskInfo updateLocalizedAttributesSettings(LocalizedAttribute[] localizedAttributes)
throws MeilisearchException {
return this.settingsHandler.updateLocalizedAttributesSettings(
this.uid, localizedAttributes);
}
/**
* Resets the localized attributes of the index
*
* @return TaskInfo instance
* @throws MeilisearchException if an error occurs
*/
public TaskInfo resetLocalizedAttributesSettings() throws MeilisearchException {
return this.settingsHandler.resetLocalizedAttributesSettings(this.uid);
}
/**
* Gets the filterable attributes of the index
*
* @return filterable attributes of a given uid as String
* @throws MeilisearchException if an error occurs
* @see <a
* href="https://www.meilisearch.com/docs/reference/api/settings#get-filterable-attributes">API
* specification</a>
*/
public String[] getFilterableAttributesSettings() throws MeilisearchException {
FilterableAttribute[] attributes =
this.settingsHandler.getFilterableAttributesSettings(this.uid);
return Arrays.stream(this.settingsHandler.getFilterableAttributesSettings(this.uid))
.reduce(
new ArrayList<String>(),
(list, next) -> {
list.addAll(Arrays.asList(next.getPatterns()));
return list;
},
(a, b) -> {
a.addAll(b);
return a;
})
.toArray(new String[0]);
}
/**
* Gets the filterable attributes of the index, along with its filtration metadata.
*
* @return filterable attributes of a given uid as FilterableAttribute
* @throws MeilisearchException if an error occurs
* @see <a
* href="https://meilisearch.notion.site/API-usage-Settings-to-opt-out-indexing-features-filterableAttributes-1764b06b651f80aba8bdf359b2df3ca8?pvs=74">API
* Specification</a>
*/
public FilterableAttribute[] getFullFilterableAttributesSettings() throws MeilisearchException {
return this.settingsHandler.getFilterableAttributesSettings(this.uid);
}
/**
* Generic getFilterableAttributesSettings. Updates the filterable attributes of the index. This
* will re-index all documents in the index
*
* @param filterableAttributes An array of FilterableAttributes or Strings containing the
* attributes that can be used as filters at query time.
* @return TaskInfo instance
* @throws MeilisearchException if an error occurs in the que
* @see <a
* href="https://www.meilisearch.com/docs/reference/api/settings#update-filterable-attributes">API
* specification</a>
*/
public <O> TaskInfo updateFilterableAttributesSettings(O[] filterableAttributes)
throws MeilisearchException {
if (filterableAttributes == null)
return this.settingsHandler.updateFilterableAttributesSettings(this.uid, null);
else if (filterableAttributes.getClass().getComponentType() == FilterableAttribute.class)
return this.settingsHandler.updateFilterableAttributesSettings(
this.uid, (FilterableAttribute[]) filterableAttributes);
else if (filterableAttributes.getClass().getComponentType() == String.class)
return this.updateFilterableAttributeSettingsLegacy((String[]) filterableAttributes);
else
throw new MeilisearchException(
"filterableAttributes must be of type String or FilterableAttribute");
}
private TaskInfo updateFilterableAttributeSettingsLegacy(String[] filterableAttributes) {
return this.settingsHandler.updateFilterableAttributesSettings(
this.uid,
Arrays.stream(filterableAttributes)
.map(FilterableAttribute::new)
.toArray(FilterableAttribute[]::new));
}
/**
* Resets the filterable attributes of the index
*
* @return TaskInfo instance
* @throws MeilisearchException if an error occurs
* @see <a
* href="https://www.meilisearch.com/docs/reference/api/settings#reset-filterable-attributes">API
* specification</a>
*/
public TaskInfo resetFilterableAttributesSettings() throws MeilisearchException {
return this.settingsHandler.resetFilterableAttributesSettings(this.uid);
}
public String[] getSortableAttributesSettings() throws MeilisearchException {
return this.settingsHandler.getSortableAttributesSettings(this.uid);
}
public TaskInfo updateSortableAttributesSettings(String[] sortableAttributes)
throws MeilisearchException {
return this.settingsHandler.updateSortableAttributesSettings(this.uid, sortableAttributes);
}
public TaskInfo resetSortableAttributesSettings() throws MeilisearchException {
return this.settingsHandler.resetSortableAttributesSettings(this.uid);
}
/**
* Gets the distinct attribute field of the index
*
* @return distinct attribute field of a given uid as String
* @throws MeilisearchException if an error occurs
* @see <a
* href="https://www.meilisearch.com/docs/reference/api/settings#get-distinct-attribute">API
* specification</a>
*/
public String getDistinctAttributeSettings() throws MeilisearchException {
return this.settingsHandler.getDistinctAttributeSettings(this.uid);
}
/**
* Updates the distinct attribute field of the index
*
* @param distinctAttribute A String: the field name.
* @return TaskInfo instance
* @throws MeilisearchException if an error occurs
* @see <a
* href="https://www.meilisearch.com/docs/reference/api/settings#update-distinct-attribute">API
* specification</a>
*/
public TaskInfo updateDistinctAttributeSettings(String distinctAttribute)
throws MeilisearchException {
return this.settingsHandler.updateDistinctAttributeSettings(this.uid, distinctAttribute);
}
/**
* Resets the distinct attribute field of the index
*
* @return TaskInfo instance
* @throws MeilisearchException if an error occurs
* @see <a
* href="https://www.meilisearch.com/docs/reference/api/settings#reset-distinct-attribute">API
* specification</a>
*/
public TaskInfo resetDistinctAttributeSettings() throws MeilisearchException {
return this.settingsHandler.resetDistinctAttributeSettings(this.uid);
}
/**
* Gets the typo tolerance field of the index
*
* @return TypoTolerance instance from Index
* @throws MeilisearchException if an error occurs
* @see <a href="https://www.meilisearch.com/docs/reference/api/settings#get-typo-tolerance">API
* specification</a>
*/
public TypoTolerance getTypoToleranceSettings() throws MeilisearchException {
return this.settingsHandler.getTypoToleranceSettings(this.uid);
}
/**
* Updates the typo tolerance field of the index
*
* @param typoTolerance A TypoTolerance instance
* @return TaskInfo instance
* @throws MeilisearchException if an error occurs
* @see <a
* href="https://www.meilisearch.com/docs/reference/api/settings#update-typo-tolerance">API
* specification</a>
*/
public TaskInfo updateTypoToleranceSettings(TypoTolerance typoTolerance)
throws MeilisearchException {
return this.settingsHandler.updateTypoToleranceSettings(this.uid, typoTolerance);
}
/**
* Resets the typo tolerance field of the index
*
* @return TaskInfo instance
* @throws MeilisearchException if an error occurs
* @see <a
* href="https://www.meilisearch.com/docs/reference/api/settings#reset-typo-tolerance">API
* specification</a>
*/
public TaskInfo resetTypoToleranceSettings() throws MeilisearchException {
return this.settingsHandler.resetTypoToleranceSettings(this.uid);
}
/**
* Gets the pagination field of the index
*
* @return Pagination instance from Index
* @throws MeilisearchException if an error occurs
* @see <a
* href="https://www.meilisearch.com/docs/reference/api/settings#get-pagination-settings">API
* specification</a>
*/
public Pagination getPaginationSettings() throws MeilisearchException {
return this.settingsHandler.getPaginationSettings(this.uid);
}
/**
* Updates the pagination field of the index
*
* @param pagination A pagination instance
* @return TaskInfo instance
* @throws MeilisearchException if an error occurs
* @see <a
* href="https://www.meilisearch.com/docs/reference/api/settings#update-pagination-settings">API
* specification</a>
*/
public TaskInfo updatePaginationSettings(Pagination pagination) throws MeilisearchException {
return this.settingsHandler.updatePaginationSettings(this.uid, pagination);
}
/**
* Resets the pagination field of the index
*
* @return TaskInfo instance
* @throws MeilisearchException if an error occurs
* @see <a
* href="https://www.meilisearch.com/docs/reference/api/settings#reset-pagination-settings">API
* specification</a>
*/
public TaskInfo resetPaginationSettings() throws MeilisearchException {
return this.settingsHandler.resetPaginationSettings(this.uid);
}
/**
* Gets the faceting field of the index
*
* @return Faceting instance from Index
* @throws MeilisearchException if an error occurs
* @see <a
* href="https://www.meilisearch.com/docs/reference/api/settings#get-faceting-settings">API
* specification</a>
*/
public Faceting getFacetingSettings() throws MeilisearchException {
return this.settingsHandler.getFacetingSettings(this.uid);
}
/**
* Updates the faceting field of the index
*
* @param faceting A faceting instance
* @return TaskInfo instance
* @throws MeilisearchException if an error occurs
* @see <a
* href="https://www.meilisearch.com/docs/en/reference/api/settings#update-faceting-settings">API
* specification</a>
*/
public TaskInfo updateFacetingSettings(Faceting faceting) throws MeilisearchException {
return this.settingsHandler.updateFacetingSettings(this.uid, faceting);
}
/**
* Resets the faceting field of the index
*
* @return TaskInfo instance
* @throws MeilisearchException if an error occurs
* @see <a
* href="https://www.meilisearch.com/docs/reference/api/settings#reset-faceting-settings">API
* specification</a>
*/
public TaskInfo resetFacetingSettings() throws MeilisearchException {
return this.settingsHandler.resetFacetingSettings(this.uid);
}