rails-param-validation 0.7.1 → 0.7.3

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: 67f1683c30ac25b6e91661475bf0085e58eed81b1ef4972e2b810090415fe4c0
4
- data.tar.gz: 440a98a849911d1ddd34f06563e5bdff26bbd35d4465a04ba9e9904e46189e6e
3
+ metadata.gz: fac9f3a2c6c7aa70bd5026b8bf82a8e18c245a1a543b6eded39e88ad82ca3a25
4
+ data.tar.gz: 8c3c4d482872bc47daf52acde3ca18294233b77117479b3890dc01e7d9290b28
5
5
  SHA512:
6
- metadata.gz: dfe1b4203c427fcab593998368e70952b885ae38b7ea1190bf71d7c38c5c3c362e4c5f0c1927ccaf8ac3be7a6e08f1388438c313b22bf07f14132e0b74ce001a
7
- data.tar.gz: 496732fbf6e778108933fc9bdc0ccc62e37477f85e2f9242b2c468eb0b0945be463b26f977b2272b6b44189b4ed7dd140eba01365b39643e88c8e3329bf738da
6
+ metadata.gz: 17a56f59ef41e16129f1bcc23df6437eb1233799be870787d155652ab76d38c720586a7af7a96a269ee7be449893e0bd82d06b4bae1d755151337dcc2935e487
7
+ data.tar.gz: d126128c3dcd8feeaa0d381a75a0828564ec986ccf43a9e0a339c310af108504f0712bc1dafa6d41535a6dc2b0872fdf4a3d33d63963922e3ae80704e3222256
@@ -1,42 +1,36 @@
1
1
  module RailsParamValidation
2
- class Formatter < ActionDispatch::Journey::Visitors::FunctionalVisitor
3
- def binary(node, seed)
4
- visit(node.right, visit(node.left, seed))
5
- end
6
-
7
- def nary(node, seed)
8
- node.children.inject(seed) { |s, c| visit(c, s) }
9
- end
10
-
11
- def terminal(node, seed)
12
- seed.map { |s| s + node.left }
13
- end
14
-
15
- def visit_GROUP(node, seed)
16
- visit(node.left, seed.dup) + seed
17
- end
18
-
19
- def visit_SYMBOL(node, seed)
20
- name = node.left
21
- name = name[1..-1] if name[0] == ":"
22
- seed.map { |s| s + "{#{name}}" }
23
- end
24
- end
25
-
26
2
  class RoutingHelper
27
3
  def self.routes_for(controller, action)
28
4
  routes = []
29
5
  Rails.application.routes.routes.each do |route|
30
6
  if route.defaults[:controller] == controller && route.defaults[:action] == action
31
- Formatter.new.accept(route.path.ast, [""]).each do |path|
32
- if !RailsParamValidation.openapi.skip_format_endpoints || !path.end_with?('.{format}')
33
- routes.push(path: path, method: route.verb)
34
- end
35
- end
7
+ path = RoutingHelper.build_path(route.path.build_formatter, include_format: !RailsParamValidation.openapi.skip_format_endpoints)
8
+ routes.push(path: path, method: route.verb)
36
9
  end
37
10
  end
38
11
 
39
12
  routes
40
13
  end
14
+
15
+ def self.build_path(formatter, include_format:)
16
+ parts = formatter.instance_variable_get(:@parts).map do |part|
17
+ case part
18
+ when String
19
+ part
20
+ when ActionDispatch::Journey::Format::Parameter
21
+ "{#{part.name}}"
22
+ when ActionDispatch::Journey::Format
23
+ if include_format
24
+ build_path(part, include_format: true)
25
+ else
26
+ nil
27
+ end
28
+ else
29
+ nil
30
+ end
31
+ end
32
+
33
+ parts.reject(&:nil?).join
34
+ end
41
35
  end
42
36
  end
@@ -1,5 +1,13 @@
1
1
  module RailsParamValidation
2
2
  class AlternativesValidator < Validator
3
+ def self.use_automatic_enums=(enabled)
4
+ @automatic_enums = enabled
5
+ end
6
+
7
+ def self.automatic_enums?
8
+ @automatic_enums.nil? ? true : @automatic_enums
9
+ end
10
+
3
11
  # @param [Array] schema
4
12
  def initialize(schema, collection)
5
13
  schema = AlternativesValidator.simplify schema
@@ -7,32 +15,36 @@ class AlternativesValidator < Validator
7
15
 
8
16
  @inner_validators = []
9
17
 
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)
18
+ if AlternativesValidator.automatic_enums?
19
+ previous_enum_values = nil
20
+ schema.each do |value|
21
+ validator = ValidatorFactory.create(value, collection)
22
+ if validator.is_a?(ConstantValidator)
23
+ if previous_enum_values.nil?
21
24
  previous_enum_values = [value]
25
+ else
26
+ if validator.constant.class == previous_enum_values.first.class
27
+ previous_enum_values << value
28
+ else
29
+ @inner_validators << ConstantEnumValidator.new(previous_enum_values, collection)
30
+ previous_enum_values = [value]
31
+ end
22
32
  end
33
+
34
+ next
23
35
  end
24
36
 
25
- next
37
+ if previous_enum_values
38
+ @inner_validators << ConstantEnumValidator.new(previous_enum_values, collection)
39
+ previous_enum_values = nil
40
+ end
41
+ @inner_validators << validator
26
42
  end
27
43
 
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
44
+ @inner_validators << ConstantEnumValidator.new(previous_enum_values, collection) if previous_enum_values
45
+ else
46
+ @inner_validators = schema.map { |value| ValidatorFactory.create(value, collection) }
33
47
  end
34
-
35
- @inner_validators << ConstantEnumValidator.new(previous_enum_values, collection) if previous_enum_values
36
48
  end
37
49
 
38
50
  def matches?(path, data)
@@ -1,3 +1,3 @@
1
1
  module RailsParamValidation
2
- VERSION = "0.7.1"
2
+ VERSION = "0.7.3"
3
3
  end
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.7.1
4
+ version: 0.7.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Oskar Kirmis
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-02-26 00:00:00.000000000 Z
11
+ date: 2025-02-27 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Declarative parameter definition and validation for Rails
14
14
  email: