algolia 3.25.0 → 3.26.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/issue.yml +1 -1
- data/.github/workflows/release.yml +1 -1
- data/CHANGELOG.md +10 -0
- data/Gemfile.lock +1 -1
- data/lib/algolia/api/composition_client.rb +765 -0
- data/lib/algolia/api/ingestion_client.rb +15 -4
- data/lib/algolia/api/search_client.rb +4 -2
- data/lib/algolia/models/composition/action.rb +34 -0
- data/lib/algolia/models/composition/advanced_syntax_features.rb +34 -0
- data/lib/algolia/models/composition/alternatives_as_exact.rb +36 -0
- data/lib/algolia/models/composition/anchoring.rb +36 -0
- data/lib/algolia/models/composition/base_injection_query_parameters.rb +732 -0
- data/lib/algolia/models/composition/batch_composition_action.rb +109 -0
- data/lib/algolia/models/composition/batch_params.rb +213 -0
- data/lib/algolia/models/composition/boolean_string.rb +34 -0
- data/lib/algolia/models/composition/composition.rb +244 -0
- data/lib/algolia/models/composition/composition_behavior.rb +210 -0
- data/lib/algolia/models/composition/composition_rule.rb +280 -0
- data/lib/algolia/models/composition/composition_rule_consequence.rb +211 -0
- data/lib/algolia/models/composition/composition_rules_batch_params.rb +211 -0
- data/lib/algolia/models/composition/composition_source.rb +210 -0
- data/lib/algolia/models/composition/composition_source_search.rb +220 -0
- data/lib/algolia/models/composition/condition.rb +238 -0
- data/lib/algolia/models/composition/delete_composition_action.rb +212 -0
- data/lib/algolia/models/composition/delete_composition_rule_action.rb +212 -0
- data/lib/algolia/models/composition/distinct.rb +110 -0
- data/lib/algolia/models/composition/exact_on_single_word_query.rb +35 -0
- data/lib/algolia/models/composition/external.rb +226 -0
- data/lib/algolia/models/composition/external_ordering.rb +34 -0
- data/lib/algolia/models/composition/external_source.rb +211 -0
- data/lib/algolia/models/composition/get_task_response.rb +210 -0
- data/lib/algolia/models/composition/ignore_plurals.rb +111 -0
- data/lib/algolia/models/composition/injected_item.rb +253 -0
- data/lib/algolia/models/composition/injected_item_hits_metadata.rb +222 -0
- data/lib/algolia/models/composition/injected_item_metadata.rb +209 -0
- data/lib/algolia/models/composition/injected_item_source.rb +109 -0
- data/lib/algolia/models/composition/injection.rb +222 -0
- data/lib/algolia/models/composition/list_compositions_response.rb +261 -0
- data/lib/algolia/models/composition/main.rb +207 -0
- data/lib/algolia/models/composition/main_injection_query_parameters.rb +807 -0
- data/lib/algolia/models/composition/multiple_batch_request.rb +221 -0
- data/lib/algolia/models/composition/multiple_batch_response.rb +213 -0
- data/lib/algolia/models/composition/optional_words.rb +110 -0
- data/lib/algolia/models/composition/query_type.rb +35 -0
- data/lib/algolia/models/composition/remove_stop_words.rb +110 -0
- data/lib/algolia/models/composition/remove_words_if_no_results.rb +36 -0
- data/lib/algolia/models/composition/rules_batch_composition_action.rb +109 -0
- data/lib/algolia/models/composition/rules_multiple_batch_request.rb +221 -0
- data/lib/algolia/models/composition/rules_multiple_batch_response.rb +211 -0
- data/lib/algolia/models/composition/search.rb +217 -0
- data/lib/algolia/models/composition/search_composition_rules_params.rb +261 -0
- data/lib/algolia/models/composition/search_composition_rules_response.rb +249 -0
- data/lib/algolia/models/composition/search_source.rb +211 -0
- data/lib/algolia/models/composition/task_id_response.rb +211 -0
- data/lib/algolia/models/composition/task_status.rb +34 -0
- data/lib/algolia/models/composition/time_range.rb +219 -0
- data/lib/algolia/models/composition/typo_tolerance.rb +110 -0
- data/lib/algolia/models/composition/typo_tolerance_enum.rb +36 -0
- data/lib/algolia/version.rb +1 -1
- metadata +52 -1
@@ -0,0 +1,221 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
|
4
|
+
|
5
|
+
require "date"
|
6
|
+
require "time"
|
7
|
+
|
8
|
+
module Algolia
|
9
|
+
module Composition
|
10
|
+
class MultipleBatchRequest
|
11
|
+
attr_accessor :action
|
12
|
+
|
13
|
+
attr_accessor :body
|
14
|
+
|
15
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
16
|
+
def self.attribute_map
|
17
|
+
{
|
18
|
+
:action => :action,
|
19
|
+
:body => :body
|
20
|
+
}
|
21
|
+
end
|
22
|
+
|
23
|
+
# Attribute type mapping.
|
24
|
+
def self.types_mapping
|
25
|
+
{
|
26
|
+
:action => :"Action",
|
27
|
+
:body => :"BatchCompositionAction"
|
28
|
+
}
|
29
|
+
end
|
30
|
+
|
31
|
+
# List of attributes with nullable: true
|
32
|
+
def self.openapi_nullable
|
33
|
+
Set.new(
|
34
|
+
[]
|
35
|
+
)
|
36
|
+
end
|
37
|
+
|
38
|
+
# Initializes the object
|
39
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
40
|
+
def initialize(attributes = {})
|
41
|
+
if (!attributes.is_a?(Hash))
|
42
|
+
raise(
|
43
|
+
ArgumentError,
|
44
|
+
"The input argument (attributes) must be a hash in `Algolia::MultipleBatchRequest` initialize method"
|
45
|
+
)
|
46
|
+
end
|
47
|
+
|
48
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
49
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
50
|
+
if (!self.class.attribute_map.key?(k.to_sym))
|
51
|
+
raise(
|
52
|
+
ArgumentError,
|
53
|
+
"`#{k}` is not a valid attribute in `Algolia::MultipleBatchRequest`. Please check the name to make sure it's valid. List of attributes: " +
|
54
|
+
self.class.attribute_map.keys.inspect
|
55
|
+
)
|
56
|
+
end
|
57
|
+
|
58
|
+
h[k.to_sym] = v
|
59
|
+
}
|
60
|
+
|
61
|
+
if attributes.key?(:action)
|
62
|
+
self.action = attributes[:action]
|
63
|
+
else
|
64
|
+
self.action = nil
|
65
|
+
end
|
66
|
+
|
67
|
+
if attributes.key?(:body)
|
68
|
+
self.body = attributes[:body]
|
69
|
+
else
|
70
|
+
self.body = nil
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
# Checks equality by comparing each attribute.
|
75
|
+
# @param [Object] Object to be compared
|
76
|
+
def ==(other)
|
77
|
+
return true if self.equal?(other)
|
78
|
+
self.class == other.class &&
|
79
|
+
action == other.action &&
|
80
|
+
body == other.body
|
81
|
+
end
|
82
|
+
|
83
|
+
# @see the `==` method
|
84
|
+
# @param [Object] Object to be compared
|
85
|
+
def eql?(other)
|
86
|
+
self == other
|
87
|
+
end
|
88
|
+
|
89
|
+
# Calculates hash code according to all attributes.
|
90
|
+
# @return [Integer] Hash code
|
91
|
+
def hash
|
92
|
+
[action, body].hash
|
93
|
+
end
|
94
|
+
|
95
|
+
# Builds the object from hash
|
96
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
97
|
+
# @return [Object] Returns the model itself
|
98
|
+
def self.build_from_hash(attributes)
|
99
|
+
return nil unless attributes.is_a?(Hash)
|
100
|
+
attributes = attributes.transform_keys(&:to_sym)
|
101
|
+
transformed_hash = {}
|
102
|
+
types_mapping.each_pair do |key, type|
|
103
|
+
if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
|
104
|
+
transformed_hash[key.to_sym] = nil
|
105
|
+
elsif type =~ /\AArray<(.*)>/i
|
106
|
+
# check to ensure the input is an array given that the attribute
|
107
|
+
# is documented as an array but the input is not
|
108
|
+
if attributes[attribute_map[key]].is_a?(Array)
|
109
|
+
transformed_hash[key.to_sym] = attributes[attribute_map[key]].map { |v|
|
110
|
+
_deserialize(::Regexp.last_match(1), v)
|
111
|
+
}
|
112
|
+
end
|
113
|
+
elsif !attributes[attribute_map[key]].nil?
|
114
|
+
transformed_hash[key.to_sym] = _deserialize(type, attributes[attribute_map[key]])
|
115
|
+
end
|
116
|
+
end
|
117
|
+
|
118
|
+
new(transformed_hash)
|
119
|
+
end
|
120
|
+
|
121
|
+
# Deserializes the data based on type
|
122
|
+
# @param string type Data type
|
123
|
+
# @param string value Value to be deserialized
|
124
|
+
# @return [Object] Deserialized data
|
125
|
+
def self._deserialize(type, value)
|
126
|
+
case type.to_sym
|
127
|
+
when :Time
|
128
|
+
Time.parse(value)
|
129
|
+
when :Date
|
130
|
+
Date.parse(value)
|
131
|
+
when :String
|
132
|
+
value.to_s
|
133
|
+
when :Integer
|
134
|
+
value.to_i
|
135
|
+
when :Float
|
136
|
+
value.to_f
|
137
|
+
when :Boolean
|
138
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
139
|
+
true
|
140
|
+
else
|
141
|
+
false
|
142
|
+
end
|
143
|
+
|
144
|
+
when :Object
|
145
|
+
# generic object (usually a Hash), return directly
|
146
|
+
value
|
147
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
148
|
+
inner_type = Regexp.last_match[:inner_type]
|
149
|
+
value.map { |v| _deserialize(inner_type, v) }
|
150
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
151
|
+
k_type = Regexp.last_match[:k_type]
|
152
|
+
v_type = Regexp.last_match[:v_type]
|
153
|
+
{}.tap do |hash|
|
154
|
+
value.each do |k, v|
|
155
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
156
|
+
end
|
157
|
+
end
|
158
|
+
# model
|
159
|
+
else
|
160
|
+
# models (e.g. Pet) or oneOf
|
161
|
+
klass = Algolia::Composition.const_get(type)
|
162
|
+
klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass
|
163
|
+
.build_from_hash(value)
|
164
|
+
end
|
165
|
+
end
|
166
|
+
|
167
|
+
# Returns the string representation of the object
|
168
|
+
# @return [String] String presentation of the object
|
169
|
+
def to_s
|
170
|
+
to_hash.to_s
|
171
|
+
end
|
172
|
+
|
173
|
+
# to_body is an alias to to_hash (backward compatibility)
|
174
|
+
# @return [Hash] Returns the object in the form of hash
|
175
|
+
def to_body
|
176
|
+
to_hash
|
177
|
+
end
|
178
|
+
|
179
|
+
def to_json(*_args)
|
180
|
+
to_hash.to_json
|
181
|
+
end
|
182
|
+
|
183
|
+
# Returns the object in the form of hash
|
184
|
+
# @return [Hash] Returns the object in the form of hash
|
185
|
+
def to_hash
|
186
|
+
hash = {}
|
187
|
+
self.class.attribute_map.each_pair do |attr, param|
|
188
|
+
value = send(attr)
|
189
|
+
if value.nil?
|
190
|
+
is_nullable = self.class.openapi_nullable.include?(attr)
|
191
|
+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
192
|
+
end
|
193
|
+
|
194
|
+
hash[param] = _to_hash(value)
|
195
|
+
end
|
196
|
+
|
197
|
+
hash
|
198
|
+
end
|
199
|
+
|
200
|
+
# Outputs non-array value in the form of hash
|
201
|
+
# For object, use to_hash. Otherwise, just return the value
|
202
|
+
# @param [Object] value Any valid value
|
203
|
+
# @return [Hash] Returns the value in the form of hash
|
204
|
+
def _to_hash(value)
|
205
|
+
if value.is_a?(Array)
|
206
|
+
value.compact.map { |v| _to_hash(v) }
|
207
|
+
elsif value.is_a?(Hash)
|
208
|
+
{}.tap do |hash|
|
209
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
210
|
+
end
|
211
|
+
elsif value.respond_to?(:to_hash)
|
212
|
+
value.to_hash
|
213
|
+
else
|
214
|
+
value
|
215
|
+
end
|
216
|
+
end
|
217
|
+
|
218
|
+
end
|
219
|
+
|
220
|
+
end
|
221
|
+
end
|
@@ -0,0 +1,213 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
|
4
|
+
|
5
|
+
require "date"
|
6
|
+
require "time"
|
7
|
+
|
8
|
+
module Algolia
|
9
|
+
module Composition
|
10
|
+
class MultipleBatchResponse
|
11
|
+
# Task IDs. One for each index.
|
12
|
+
attr_accessor :task_id
|
13
|
+
|
14
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
15
|
+
def self.attribute_map
|
16
|
+
{
|
17
|
+
:task_id => :taskID
|
18
|
+
}
|
19
|
+
end
|
20
|
+
|
21
|
+
# Attribute type mapping.
|
22
|
+
def self.types_mapping
|
23
|
+
{
|
24
|
+
:task_id => :"Hash<String, Integer>"
|
25
|
+
}
|
26
|
+
end
|
27
|
+
|
28
|
+
# List of attributes with nullable: true
|
29
|
+
def self.openapi_nullable
|
30
|
+
Set.new(
|
31
|
+
[]
|
32
|
+
)
|
33
|
+
end
|
34
|
+
|
35
|
+
# Initializes the object
|
36
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
37
|
+
def initialize(attributes = {})
|
38
|
+
if (!attributes.is_a?(Hash))
|
39
|
+
raise(
|
40
|
+
ArgumentError,
|
41
|
+
"The input argument (attributes) must be a hash in `Algolia::MultipleBatchResponse` initialize method"
|
42
|
+
)
|
43
|
+
end
|
44
|
+
|
45
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
46
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
47
|
+
if (!self.class.attribute_map.key?(k.to_sym))
|
48
|
+
raise(
|
49
|
+
ArgumentError,
|
50
|
+
"`#{k}` is not a valid attribute in `Algolia::MultipleBatchResponse`. Please check the name to make sure it's valid. List of attributes: " +
|
51
|
+
self.class.attribute_map.keys.inspect
|
52
|
+
)
|
53
|
+
end
|
54
|
+
|
55
|
+
h[k.to_sym] = v
|
56
|
+
}
|
57
|
+
|
58
|
+
if attributes.key?(:task_id)
|
59
|
+
if (value = attributes[:task_id]).is_a?(Hash)
|
60
|
+
self.task_id = value
|
61
|
+
end
|
62
|
+
else
|
63
|
+
self.task_id = nil
|
64
|
+
end
|
65
|
+
end
|
66
|
+
|
67
|
+
# Checks equality by comparing each attribute.
|
68
|
+
# @param [Object] Object to be compared
|
69
|
+
def ==(other)
|
70
|
+
return true if self.equal?(other)
|
71
|
+
self.class == other.class &&
|
72
|
+
task_id == other.task_id
|
73
|
+
end
|
74
|
+
|
75
|
+
# @see the `==` method
|
76
|
+
# @param [Object] Object to be compared
|
77
|
+
def eql?(other)
|
78
|
+
self == other
|
79
|
+
end
|
80
|
+
|
81
|
+
# Calculates hash code according to all attributes.
|
82
|
+
# @return [Integer] Hash code
|
83
|
+
def hash
|
84
|
+
[task_id].hash
|
85
|
+
end
|
86
|
+
|
87
|
+
# Builds the object from hash
|
88
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
89
|
+
# @return [Object] Returns the model itself
|
90
|
+
def self.build_from_hash(attributes)
|
91
|
+
return nil unless attributes.is_a?(Hash)
|
92
|
+
attributes = attributes.transform_keys(&:to_sym)
|
93
|
+
transformed_hash = {}
|
94
|
+
types_mapping.each_pair do |key, type|
|
95
|
+
if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
|
96
|
+
transformed_hash[key.to_sym] = nil
|
97
|
+
elsif type =~ /\AArray<(.*)>/i
|
98
|
+
# check to ensure the input is an array given that the attribute
|
99
|
+
# is documented as an array but the input is not
|
100
|
+
if attributes[attribute_map[key]].is_a?(Array)
|
101
|
+
transformed_hash[key.to_sym] = attributes[attribute_map[key]].map { |v|
|
102
|
+
_deserialize(::Regexp.last_match(1), v)
|
103
|
+
}
|
104
|
+
end
|
105
|
+
elsif !attributes[attribute_map[key]].nil?
|
106
|
+
transformed_hash[key.to_sym] = _deserialize(type, attributes[attribute_map[key]])
|
107
|
+
end
|
108
|
+
end
|
109
|
+
|
110
|
+
new(transformed_hash)
|
111
|
+
end
|
112
|
+
|
113
|
+
# Deserializes the data based on type
|
114
|
+
# @param string type Data type
|
115
|
+
# @param string value Value to be deserialized
|
116
|
+
# @return [Object] Deserialized data
|
117
|
+
def self._deserialize(type, value)
|
118
|
+
case type.to_sym
|
119
|
+
when :Time
|
120
|
+
Time.parse(value)
|
121
|
+
when :Date
|
122
|
+
Date.parse(value)
|
123
|
+
when :String
|
124
|
+
value.to_s
|
125
|
+
when :Integer
|
126
|
+
value.to_i
|
127
|
+
when :Float
|
128
|
+
value.to_f
|
129
|
+
when :Boolean
|
130
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
131
|
+
true
|
132
|
+
else
|
133
|
+
false
|
134
|
+
end
|
135
|
+
|
136
|
+
when :Object
|
137
|
+
# generic object (usually a Hash), return directly
|
138
|
+
value
|
139
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
140
|
+
inner_type = Regexp.last_match[:inner_type]
|
141
|
+
value.map { |v| _deserialize(inner_type, v) }
|
142
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
143
|
+
k_type = Regexp.last_match[:k_type]
|
144
|
+
v_type = Regexp.last_match[:v_type]
|
145
|
+
{}.tap do |hash|
|
146
|
+
value.each do |k, v|
|
147
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
148
|
+
end
|
149
|
+
end
|
150
|
+
# model
|
151
|
+
else
|
152
|
+
# models (e.g. Pet) or oneOf
|
153
|
+
klass = Algolia::Composition.const_get(type)
|
154
|
+
klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass
|
155
|
+
.build_from_hash(value)
|
156
|
+
end
|
157
|
+
end
|
158
|
+
|
159
|
+
# Returns the string representation of the object
|
160
|
+
# @return [String] String presentation of the object
|
161
|
+
def to_s
|
162
|
+
to_hash.to_s
|
163
|
+
end
|
164
|
+
|
165
|
+
# to_body is an alias to to_hash (backward compatibility)
|
166
|
+
# @return [Hash] Returns the object in the form of hash
|
167
|
+
def to_body
|
168
|
+
to_hash
|
169
|
+
end
|
170
|
+
|
171
|
+
def to_json(*_args)
|
172
|
+
to_hash.to_json
|
173
|
+
end
|
174
|
+
|
175
|
+
# Returns the object in the form of hash
|
176
|
+
# @return [Hash] Returns the object in the form of hash
|
177
|
+
def to_hash
|
178
|
+
hash = {}
|
179
|
+
self.class.attribute_map.each_pair do |attr, param|
|
180
|
+
value = send(attr)
|
181
|
+
if value.nil?
|
182
|
+
is_nullable = self.class.openapi_nullable.include?(attr)
|
183
|
+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
184
|
+
end
|
185
|
+
|
186
|
+
hash[param] = _to_hash(value)
|
187
|
+
end
|
188
|
+
|
189
|
+
hash
|
190
|
+
end
|
191
|
+
|
192
|
+
# Outputs non-array value in the form of hash
|
193
|
+
# For object, use to_hash. Otherwise, just return the value
|
194
|
+
# @param [Object] value Any valid value
|
195
|
+
# @return [Hash] Returns the value in the form of hash
|
196
|
+
def _to_hash(value)
|
197
|
+
if value.is_a?(Array)
|
198
|
+
value.compact.map { |v| _to_hash(v) }
|
199
|
+
elsif value.is_a?(Hash)
|
200
|
+
{}.tap do |hash|
|
201
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
202
|
+
end
|
203
|
+
elsif value.respond_to?(:to_hash)
|
204
|
+
value.to_hash
|
205
|
+
else
|
206
|
+
value
|
207
|
+
end
|
208
|
+
end
|
209
|
+
|
210
|
+
end
|
211
|
+
|
212
|
+
end
|
213
|
+
end
|
@@ -0,0 +1,110 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
|
4
|
+
|
5
|
+
require "date"
|
6
|
+
require "time"
|
7
|
+
|
8
|
+
module Algolia
|
9
|
+
module Composition
|
10
|
+
# Words that should be considered optional when found in the query. By default, records must match all words in the search query to be included in the search results. Adding optional words can help to increase the number of search results by running an additional search query that doesn't include the optional words. For example, if the search query is \"action video\" and \"video\" is an optional word, the search engine runs two queries. One for \"action video\" and one for \"action\". Records that match all words are ranked higher. For a search query with 4 or more words **and** all its words are optional, the number of matched words required for a record to be included in the search results increases for every 1,000 records: - If `optionalWords` has less than 10 words, the required number of matched words increases by 1: results 1 to 1,000 require 1 matched word, results 1,001 to 2000 need 2 matched words. - If `optionalWords` has 10 or more words, the number of required matched words increases by the number of optional words divided by 5 (rounded down). For example, with 18 optional words: results 1 to 1,000 require 1 matched word, results 1,001 to 2000 need 4 matched words. For more information, see [Optional words](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/empty-or-insufficient-results/#creating-a-list-of-optional-words).
|
11
|
+
module OptionalWords
|
12
|
+
class << self
|
13
|
+
# List of class defined in oneOf (OpenAPI v3)
|
14
|
+
def openapi_one_of
|
15
|
+
[
|
16
|
+
:"Array<String>",
|
17
|
+
:"String"
|
18
|
+
]
|
19
|
+
end
|
20
|
+
|
21
|
+
# Builds the object
|
22
|
+
# @param [Mixed] Data to be matched against the list of oneOf items
|
23
|
+
# @return [Object] Returns the model or the data itself
|
24
|
+
def build(data)
|
25
|
+
# Go through the list of oneOf items and attempt to identify the appropriate one.
|
26
|
+
# Note:
|
27
|
+
# - We do not attempt to check whether exactly one item matches.
|
28
|
+
# - No advanced validation of types in some cases (e.g. "x: { type: string }" will happily match { x: 123 })
|
29
|
+
# due to the way the deserialization is made in the base_object template (it just casts without verifying).
|
30
|
+
# - TODO: scalar values are de facto behaving as if they were nullable.
|
31
|
+
# - TODO: logging when debugging is set.
|
32
|
+
openapi_one_of.each do |klass|
|
33
|
+
begin
|
34
|
+
# "nullable: true"
|
35
|
+
next if klass == :AnyType
|
36
|
+
typed_data = find_and_cast_into_type(klass, data)
|
37
|
+
return typed_data if typed_data
|
38
|
+
# rescue all errors so we keep iterating even if the current item lookup raises
|
39
|
+
rescue
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
openapi_one_of.include?(:AnyType) ? data : nil
|
44
|
+
end
|
45
|
+
|
46
|
+
private
|
47
|
+
|
48
|
+
SchemaMismatchError = Class.new(StandardError)
|
49
|
+
|
50
|
+
def find_and_cast_into_type(klass, data)
|
51
|
+
return if data.nil?
|
52
|
+
|
53
|
+
case klass.to_s
|
54
|
+
when "Boolean"
|
55
|
+
return data if data.instance_of?(TrueClass) || data.instance_of?(FalseClass)
|
56
|
+
when "Float"
|
57
|
+
return data if data.instance_of?(Float)
|
58
|
+
when "Integer"
|
59
|
+
return data if data.instance_of?(Integer)
|
60
|
+
when "Time"
|
61
|
+
return Time.parse(data)
|
62
|
+
when "Date"
|
63
|
+
return Date.parse(data)
|
64
|
+
when "String"
|
65
|
+
return data if data.instance_of?(String)
|
66
|
+
# "type: object"
|
67
|
+
when "Object"
|
68
|
+
return data if data.instance_of?(Hash)
|
69
|
+
# "type: array"
|
70
|
+
when /\AArray<(?<sub_type>.+)>\z/
|
71
|
+
if data.instance_of?(Array)
|
72
|
+
sub_type = Regexp.last_match[:sub_type]
|
73
|
+
return data.map { |item| find_and_cast_into_type(sub_type, item) }
|
74
|
+
end
|
75
|
+
# "type: object" with "additionalProperties: { ... }"
|
76
|
+
when /\AHash<String, (?<sub_type>.+)>\z/
|
77
|
+
if data.instance_of?(Hash) && data.keys.all? { |k| k.instance_of?(Symbol) || k.instance_of?(String) }
|
78
|
+
sub_type = Regexp.last_match[:sub_type]
|
79
|
+
return data.each_with_object({}) { |(k, v), hsh| hsh[k] = find_and_cast_into_type(sub_type, v) }
|
80
|
+
end
|
81
|
+
# model
|
82
|
+
else
|
83
|
+
const = Algolia::Composition.const_get(klass)
|
84
|
+
if const
|
85
|
+
if const.respond_to?(:openapi_one_of)
|
86
|
+
# nested oneOf model
|
87
|
+
model = const.build(data)
|
88
|
+
elsif const.respond_to?(:discriminator_attributes)
|
89
|
+
if const.discriminator_attributes.all? { |attr| data.key?(attr) }
|
90
|
+
model = const.build_from_hash(data)
|
91
|
+
end
|
92
|
+
else
|
93
|
+
# maybe it's an enum, or doens't have discriminators
|
94
|
+
model = const.build_from_hash(data)
|
95
|
+
end
|
96
|
+
|
97
|
+
return model if model
|
98
|
+
end
|
99
|
+
end
|
100
|
+
|
101
|
+
# if no match by now, raise
|
102
|
+
raise
|
103
|
+
rescue
|
104
|
+
raise SchemaMismatchError, "#{data} doesn't match the #{klass} type"
|
105
|
+
end
|
106
|
+
end
|
107
|
+
end
|
108
|
+
|
109
|
+
end
|
110
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
|
4
|
+
|
5
|
+
require "date"
|
6
|
+
require "time"
|
7
|
+
|
8
|
+
module Algolia
|
9
|
+
module Composition
|
10
|
+
class QueryType
|
11
|
+
PREFIX_LAST = "prefixLast".freeze
|
12
|
+
PREFIX_ALL = "prefixAll".freeze
|
13
|
+
PREFIX_NONE = "prefixNone".freeze
|
14
|
+
|
15
|
+
def self.all_vars
|
16
|
+
@all_vars ||= [PREFIX_LAST, PREFIX_ALL, PREFIX_NONE].freeze
|
17
|
+
end
|
18
|
+
|
19
|
+
# Builds the enum from string
|
20
|
+
# @param [String] The enum value in the form of the string
|
21
|
+
# @return [String] The enum value
|
22
|
+
def self.build_from_hash(value)
|
23
|
+
new.build_from_hash(value)
|
24
|
+
end
|
25
|
+
|
26
|
+
# Builds the enum from string
|
27
|
+
# @param [String] The enum value in the form of the string
|
28
|
+
# @return [String] The enum value
|
29
|
+
def build_from_hash(value)
|
30
|
+
return value if QueryType.all_vars.include?(value)
|
31
|
+
raise "Invalid ENUM value #{value} for class #QueryType"
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
@@ -0,0 +1,110 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
|
4
|
+
|
5
|
+
require "date"
|
6
|
+
require "time"
|
7
|
+
|
8
|
+
module Algolia
|
9
|
+
module Composition
|
10
|
+
# Removes stop words from the search query. Stop words are common words like articles, conjunctions, prepositions, or pronouns that have little or no meaning on their own. In English, \"the\", \"a\", or \"and\" are stop words. You should only use this feature for the languages used in your index.
|
11
|
+
module RemoveStopWords
|
12
|
+
class << self
|
13
|
+
# List of class defined in oneOf (OpenAPI v3)
|
14
|
+
def openapi_one_of
|
15
|
+
[
|
16
|
+
:"Array<SupportedLanguage>",
|
17
|
+
:"Boolean"
|
18
|
+
]
|
19
|
+
end
|
20
|
+
|
21
|
+
# Builds the object
|
22
|
+
# @param [Mixed] Data to be matched against the list of oneOf items
|
23
|
+
# @return [Object] Returns the model or the data itself
|
24
|
+
def build(data)
|
25
|
+
# Go through the list of oneOf items and attempt to identify the appropriate one.
|
26
|
+
# Note:
|
27
|
+
# - We do not attempt to check whether exactly one item matches.
|
28
|
+
# - No advanced validation of types in some cases (e.g. "x: { type: string }" will happily match { x: 123 })
|
29
|
+
# due to the way the deserialization is made in the base_object template (it just casts without verifying).
|
30
|
+
# - TODO: scalar values are de facto behaving as if they were nullable.
|
31
|
+
# - TODO: logging when debugging is set.
|
32
|
+
openapi_one_of.each do |klass|
|
33
|
+
begin
|
34
|
+
# "nullable: true"
|
35
|
+
next if klass == :AnyType
|
36
|
+
typed_data = find_and_cast_into_type(klass, data)
|
37
|
+
return typed_data if typed_data
|
38
|
+
# rescue all errors so we keep iterating even if the current item lookup raises
|
39
|
+
rescue
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
openapi_one_of.include?(:AnyType) ? data : nil
|
44
|
+
end
|
45
|
+
|
46
|
+
private
|
47
|
+
|
48
|
+
SchemaMismatchError = Class.new(StandardError)
|
49
|
+
|
50
|
+
def find_and_cast_into_type(klass, data)
|
51
|
+
return if data.nil?
|
52
|
+
|
53
|
+
case klass.to_s
|
54
|
+
when "Boolean"
|
55
|
+
return data if data.instance_of?(TrueClass) || data.instance_of?(FalseClass)
|
56
|
+
when "Float"
|
57
|
+
return data if data.instance_of?(Float)
|
58
|
+
when "Integer"
|
59
|
+
return data if data.instance_of?(Integer)
|
60
|
+
when "Time"
|
61
|
+
return Time.parse(data)
|
62
|
+
when "Date"
|
63
|
+
return Date.parse(data)
|
64
|
+
when "String"
|
65
|
+
return data if data.instance_of?(String)
|
66
|
+
# "type: object"
|
67
|
+
when "Object"
|
68
|
+
return data if data.instance_of?(Hash)
|
69
|
+
# "type: array"
|
70
|
+
when /\AArray<(?<sub_type>.+)>\z/
|
71
|
+
if data.instance_of?(Array)
|
72
|
+
sub_type = Regexp.last_match[:sub_type]
|
73
|
+
return data.map { |item| find_and_cast_into_type(sub_type, item) }
|
74
|
+
end
|
75
|
+
# "type: object" with "additionalProperties: { ... }"
|
76
|
+
when /\AHash<String, (?<sub_type>.+)>\z/
|
77
|
+
if data.instance_of?(Hash) && data.keys.all? { |k| k.instance_of?(Symbol) || k.instance_of?(String) }
|
78
|
+
sub_type = Regexp.last_match[:sub_type]
|
79
|
+
return data.each_with_object({}) { |(k, v), hsh| hsh[k] = find_and_cast_into_type(sub_type, v) }
|
80
|
+
end
|
81
|
+
# model
|
82
|
+
else
|
83
|
+
const = Algolia::Composition.const_get(klass)
|
84
|
+
if const
|
85
|
+
if const.respond_to?(:openapi_one_of)
|
86
|
+
# nested oneOf model
|
87
|
+
model = const.build(data)
|
88
|
+
elsif const.respond_to?(:discriminator_attributes)
|
89
|
+
if const.discriminator_attributes.all? { |attr| data.key?(attr) }
|
90
|
+
model = const.build_from_hash(data)
|
91
|
+
end
|
92
|
+
else
|
93
|
+
# maybe it's an enum, or doens't have discriminators
|
94
|
+
model = const.build_from_hash(data)
|
95
|
+
end
|
96
|
+
|
97
|
+
return model if model
|
98
|
+
end
|
99
|
+
end
|
100
|
+
|
101
|
+
# if no match by now, raise
|
102
|
+
raise
|
103
|
+
rescue
|
104
|
+
raise SchemaMismatchError, "#{data} doesn't match the #{klass} type"
|
105
|
+
end
|
106
|
+
end
|
107
|
+
end
|
108
|
+
|
109
|
+
end
|
110
|
+
end
|