rails-param-validation 0.6.1 → 0.7.1
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 67f1683c30ac25b6e91661475bf0085e58eed81b1ef4972e2b810090415fe4c0
|
4
|
+
data.tar.gz: 440a98a849911d1ddd34f06563e5bdff26bbd35d4465a04ba9e9904e46189e6e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dfe1b4203c427fcab593998368e70952b885ae38b7ea1190bf71d7c38c5c3c362e4c5f0c1927ccaf8ac3be7a6e08f1388438c313b22bf07f14132e0b74ce001a
|
7
|
+
data.tar.gz: 496732fbf6e778108933fc9bdc0ccc62e37477f85e2f9242b2c468eb0b0945be463b26f977b2272b6b44189b4ed7dd140eba01365b39643e88c8e3329bf738da
|
@@ -1,14 +1,38 @@
|
|
1
1
|
module RailsParamValidation
|
2
|
-
|
3
2
|
class AlternativesValidator < Validator
|
4
3
|
# @param [Array] schema
|
5
4
|
def initialize(schema, collection)
|
5
|
+
schema = AlternativesValidator.simplify schema
|
6
6
|
super schema, collection
|
7
7
|
|
8
|
-
@inner_validators =
|
9
|
-
|
10
|
-
|
8
|
+
@inner_validators = []
|
9
|
+
|
10
|
+
previous_enum_values = nil
|
11
|
+
schema.each do |value|
|
12
|
+
validator = ValidatorFactory.create(value, collection)
|
13
|
+
if validator.is_a?(ConstantValidator)
|
14
|
+
if previous_enum_values.nil?
|
15
|
+
previous_enum_values = [value]
|
16
|
+
else
|
17
|
+
if validator.constant.class == previous_enum_values.first.class
|
18
|
+
previous_enum_values << value
|
19
|
+
else
|
20
|
+
@inner_validators << ConstantEnumValidator.new(previous_enum_values, collection)
|
21
|
+
previous_enum_values = [value]
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
next
|
26
|
+
end
|
27
|
+
|
28
|
+
if previous_enum_values
|
29
|
+
@inner_validators << ConstantEnumValidator.new(previous_enum_values, collection)
|
30
|
+
previous_enum_values = nil
|
31
|
+
end
|
32
|
+
@inner_validators << validator
|
11
33
|
end
|
34
|
+
|
35
|
+
@inner_validators << ConstantEnumValidator.new(previous_enum_values, collection) if previous_enum_values
|
12
36
|
end
|
13
37
|
|
14
38
|
def matches?(path, data)
|
@@ -28,8 +52,28 @@ class AlternativesValidator < Validator
|
|
28
52
|
end
|
29
53
|
|
30
54
|
def to_openapi
|
55
|
+
if @inner_validators.size == 1
|
56
|
+
return @inner_validators.first.to_openapi
|
57
|
+
end
|
58
|
+
|
31
59
|
{ oneOf: @inner_validators.map(&:to_openapi) }
|
32
60
|
end
|
61
|
+
|
62
|
+
protected
|
63
|
+
|
64
|
+
def self.simplify(schema)
|
65
|
+
alternatives = []
|
66
|
+
|
67
|
+
schema.each do |sub_schema|
|
68
|
+
if sub_schema.is_a?(Array)
|
69
|
+
alternatives += sub_schema
|
70
|
+
else
|
71
|
+
alternatives << sub_schema
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
75
|
+
alternatives
|
76
|
+
end
|
33
77
|
end
|
34
78
|
|
35
79
|
class AlternativesValidatorFactory < ValidatorFactory
|
@@ -0,0 +1,28 @@
|
|
1
|
+
module RailsParamValidation
|
2
|
+
class ConstantEnumValidator < Validator
|
3
|
+
def initialize(schema, collection)
|
4
|
+
super schema, collection
|
5
|
+
@constants = schema
|
6
|
+
end
|
7
|
+
|
8
|
+
def matches?(path, data)
|
9
|
+
detected_values = @constants.select { |c| c.to_s == data.to_s }
|
10
|
+
unless detected_values.any?
|
11
|
+
return MatchResult.new(nil, path, "The value is not one of the allowed constants")
|
12
|
+
end
|
13
|
+
|
14
|
+
MatchResult.new detected_values.first, path
|
15
|
+
end
|
16
|
+
|
17
|
+
def to_openapi
|
18
|
+
ValidatorFactory.create(
|
19
|
+
ConstantValidator::CLASS_MAP.fetch(
|
20
|
+
@constants.first.class,
|
21
|
+
@constants.first.class
|
22
|
+
),
|
23
|
+
collection
|
24
|
+
).to_openapi.merge(enum: @constants)
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
end
|
@@ -19,6 +19,7 @@ require_relative './rails-param-validation/validators/object'
|
|
19
19
|
require_relative './rails-param-validation/validators/optional'
|
20
20
|
require_relative './rails-param-validation/validators/hash'
|
21
21
|
require_relative './rails-param-validation/validators/alternatives'
|
22
|
+
require_relative './rails-param-validation/validators/constant_enum'
|
22
23
|
|
23
24
|
require_relative './rails-param-validation/rails/extensions/annotation_extension' unless defined?(Rails)
|
24
25
|
require_relative './rails-param-validation/rails/rails' if defined?(Rails)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails-param-validation
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.7.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Oskar Kirmis
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-02-26 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Declarative parameter definition and validation for Rails
|
14
14
|
email:
|
@@ -57,6 +57,7 @@ files:
|
|
57
57
|
- lib/rails-param-validation/validators/array.rb
|
58
58
|
- lib/rails-param-validation/validators/boolean.rb
|
59
59
|
- lib/rails-param-validation/validators/constant.rb
|
60
|
+
- lib/rails-param-validation/validators/constant_enum.rb
|
60
61
|
- lib/rails-param-validation/validators/custom_type.rb
|
61
62
|
- lib/rails-param-validation/validators/date.rb
|
62
63
|
- lib/rails-param-validation/validators/datetime.rb
|
@@ -93,7 +94,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
93
94
|
- !ruby/object:Gem::Version
|
94
95
|
version: '0'
|
95
96
|
requirements: []
|
96
|
-
rubygems_version: 3.
|
97
|
+
rubygems_version: 3.5.10
|
97
98
|
signing_key:
|
98
99
|
specification_version: 4
|
99
100
|
summary: Declarative parameter definition and validation for Rails
|