-
Notifications
You must be signed in to change notification settings - Fork 85
/
index_search.go
132 lines (104 loc) · 3.31 KB
/
index_search.go
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
package meilisearch
import (
"context"
"encoding/json"
"net/http"
)
func (i *index) Search(query string, request *SearchRequest) (*SearchResponse, error) {
return i.SearchWithContext(context.Background(), query, request)
}
func (i *index) SearchWithContext(ctx context.Context, query string, request *SearchRequest) (*SearchResponse, error) {
if request == nil {
return nil, ErrNoSearchRequest
}
if query != "" {
request.Query = query
}
if request.IndexUID != "" {
request.IndexUID = ""
}
request.validate()
resp := new(SearchResponse)
req := &internalRequest{
endpoint: "/indexes/" + i.uid + "/search",
method: http.MethodPost,
contentType: contentTypeJSON,
withRequest: request,
withResponse: resp,
acceptedStatusCodes: []int{http.StatusOK},
functionName: "Search",
}
if err := i.client.executeRequest(ctx, req); err != nil {
return nil, err
}
return resp, nil
}
func (i *index) SearchRaw(query string, request *SearchRequest) (*json.RawMessage, error) {
return i.SearchRawWithContext(context.Background(), query, request)
}
func (i *index) SearchRawWithContext(ctx context.Context, query string, request *SearchRequest) (*json.RawMessage, error) {
if request == nil {
return nil, ErrNoSearchRequest
}
if query != "" {
request.Query = query
}
if request.IndexUID != "" {
request.IndexUID = ""
}
request.validate()
resp := new(json.RawMessage)
req := &internalRequest{
endpoint: "/indexes/" + i.uid + "/search",
method: http.MethodPost,
contentType: contentTypeJSON,
withRequest: request,
withResponse: resp,
acceptedStatusCodes: []int{http.StatusOK},
functionName: "SearchRaw",
}
if err := i.client.executeRequest(ctx, req); err != nil {
return nil, err
}
return resp, nil
}
func (i *index) FacetSearch(request *FacetSearchRequest) (*json.RawMessage, error) {
return i.FacetSearchWithContext(context.Background(), request)
}
func (i *index) FacetSearchWithContext(ctx context.Context, request *FacetSearchRequest) (*json.RawMessage, error) {
if request == nil {
return nil, ErrNoFacetSearchRequest
}
resp := new(json.RawMessage)
req := &internalRequest{
endpoint: "/indexes/" + i.uid + "/facet-search",
method: http.MethodPost,
contentType: contentTypeJSON,
withRequest: request,
withResponse: resp,
acceptedStatusCodes: []int{http.StatusOK},
functionName: "FacetSearch",
}
if err := i.client.executeRequest(ctx, req); err != nil {
return nil, err
}
return resp, nil
}
func (i *index) SearchSimilarDocuments(param *SimilarDocumentQuery, resp *SimilarDocumentResult) error {
return i.SearchSimilarDocumentsWithContext(context.Background(), param, resp)
}
func (i *index) SearchSimilarDocumentsWithContext(ctx context.Context, param *SimilarDocumentQuery, resp *SimilarDocumentResult) error {
req := &internalRequest{
endpoint: "/indexes/" + i.uid + "/similar",
method: http.MethodPost,
withRequest: param,
withResponse: resp,
acceptedStatusCodes: []int{http.StatusOK},
functionName: "SearchSimilarDocuments",
contentType: contentTypeJSON,
}
if err := i.client.executeRequest(ctx, req); err != nil {
return err
}
return nil
}