rails-param-validation 0.7.1 → 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: 67f1683c30ac25b6e91661475bf0085e58eed81b1ef4972e2b810090415fe4c0
4
- data.tar.gz: 440a98a849911d1ddd34f06563e5bdff26bbd35d4465a04ba9e9904e46189e6e
3
+ metadata.gz: 7efa327265bfc8ad86d510b2b014660923870715ba895a9a470d6792bccb13ed
4
+ data.tar.gz: a641151602952abad4053e6341ebb6ba1f46900ef022fe69c97ec9271920685c
5
5
  SHA512:
6
- metadata.gz: dfe1b4203c427fcab593998368e70952b885ae38b7ea1190bf71d7c38c5c3c362e4c5f0c1927ccaf8ac3be7a6e08f1388438c313b22bf07f14132e0b74ce001a
7
- data.tar.gz: 496732fbf6e778108933fc9bdc0ccc62e37477f85e2f9242b2c468eb0b0945be463b26f977b2272b6b44189b4ed7dd140eba01365b39643e88c8e3329bf738da
6
+ metadata.gz: 2a2d85cde19d9230454e0dee45a72fddf7dc4a336d80fb812596ab04099f01110cb107bb67329b2c9a87ef490434c899065ef16c6a4a8b25b98b334882b4873f
7
+ data.tar.gz: 0d9be5ee82de94347d95d0cfa28947f83c769089ddaf41708b3a527db274b8033190bdf7bff19f0ff8db84781fde947e24e49d4d819a028fd65d462d2f94ffde
@@ -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,3 +1,3 @@
1
1
  module RailsParamValidation
2
- VERSION = "0.7.1"
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.1
4
+ version: 0.7.2
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: