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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7efa327265bfc8ad86d510b2b014660923870715ba895a9a470d6792bccb13ed
|
4
|
+
data.tar.gz: a641151602952abad4053e6341ebb6ba1f46900ef022fe69c97ec9271920685c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
|
32
|
-
|
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
|
-
|
10
|
-
unless
|
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
|
14
|
+
MatchResult.new detected_values.first, path
|
15
15
|
end
|
16
16
|
|
17
17
|
def to_openapi
|
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.
|
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:
|
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.
|
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: []
|