rails-param-validation 0.7.0 → 0.7.2

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: 4d62012d6b37182ecd5ca7cd0e35a6fe7aaa8742395b0421e5125119e45d0bba
4
- data.tar.gz: 4d4051c2ba5edcc773233c4b1c841344f46c75957b00dc62c53b45d7d4c2c07a
3
+ metadata.gz: 7efa327265bfc8ad86d510b2b014660923870715ba895a9a470d6792bccb13ed
4
+ data.tar.gz: a641151602952abad4053e6341ebb6ba1f46900ef022fe69c97ec9271920685c
5
5
  SHA512:
6
- metadata.gz: e12db0d05b2d308e9dcfc7a07b622428ed777541b3a385d1bcc5b69816c774731ff98f37e895063d199ce0056b3e3e4baed8df994a86423e6f1639ec613f347a
7
- data.tar.gz: a4d2e8cdce7df2d08b12df85dcccc1cc9fa1a8eaa182a6b1314b04110be9cce0a753e1ff3b72687ce15b88c60999ac2368a80db0152c68acab3b1f013df4e223
6
+ metadata.gz: 2a2d85cde19d9230454e0dee45a72fddf7dc4a336d80fb812596ab04099f01110cb107bb67329b2c9a87ef490434c899065ef16c6a4a8b25b98b334882b4873f
7
+ data.tar.gz: 0d9be5ee82de94347d95d0cfa28947f83c769089ddaf41708b3a527db274b8033190bdf7bff19f0ff8db84781fde947e24e49d4d819a028fd65d462d2f94ffde
data/bin/.keep CHANGED
File without changes
@@ -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
@@ -6,12 +6,12 @@ module RailsParamValidation
6
6
  end
7
7
 
8
8
  def matches?(path, data)
9
- detected_value = @constants.any? { |c| c.to_s == data.to_s }
10
- unless detected_value
9
+ detected_values = @constants.select { |c| c.to_s == data.to_s }
10
+ unless detected_values.any?
11
11
  return MatchResult.new(nil, path, "The value is not one of the allowed constants")
12
12
  end
13
13
 
14
- MatchResult.new detected_value, path
14
+ MatchResult.new detected_values.first, path
15
15
  end
16
16
 
17
17
  def to_openapi
@@ -1,3 +1,3 @@
1
1
  module RailsParamValidation
2
- VERSION = "0.7.0"
2
+ VERSION = "0.7.2"
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.0
4
+ version: 0.7.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Oskar Kirmis
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-05-01 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:
@@ -79,7 +79,7 @@ metadata:
79
79
  homepage_uri: https://okirmis.github.io/rails-param-validation
80
80
  source_code_uri: https://github.com/okirmis/rails-param-validation
81
81
  changelog_uri: https://github.com/okirmis/rails-param-validation
82
- post_install_message:
82
+ post_install_message:
83
83
  rdoc_options: []
84
84
  require_paths:
85
85
  - lib
@@ -94,8 +94,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
94
94
  - !ruby/object:Gem::Version
95
95
  version: '0'
96
96
  requirements: []
97
- rubygems_version: 3.3.26
98
- signing_key:
97
+ rubygems_version: 3.5.10
98
+ signing_key:
99
99
  specification_version: 4
100
100
  summary: Declarative parameter definition and validation for Rails
101
101
  test_files: []