jsonrpc-rails 0.1.0 → 0.1.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 +4 -4
- data/lib/jsonrpc_rails/middleware/validator.rb +34 -19
- data/lib/jsonrpc_rails/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 441449ded5e2318b8781addfbef037112f6db49595a3cb4ae3cddb35826ee02f
|
4
|
+
data.tar.gz: 0a4729694ca406fb564b9dbe5ba715f37d072f68a20a9f1e509121849050f18a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dcc63ff788dc3952db0974ae8acde6c363d6d61ce358e645b736ea53c709000f47ae3af11ba4ba9ae344a5b03bc7d9382fef229e58bbfe92925dbf790ea134f9
|
7
|
+
data.tar.gz: edbaaea3853e4f24bc63fe6c6261bf0386494b553f3559dafe722a9ab4ee02903b4004dbfc4874cdf310aa8a1e50ddc54d20db2ce0be8cbd050f835a030f8d1b
|
@@ -1,6 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
require "json"
|
4
|
+
require "active_support/json" # Add this require
|
4
5
|
|
5
6
|
module JSON_RPC_Rails
|
6
7
|
module Middleware
|
@@ -37,20 +38,36 @@ module JSON_RPC_Rails
|
|
37
38
|
payload = parse_json(body)
|
38
39
|
|
39
40
|
# Handle JSON parsing errors
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
41
|
+
# If parsing fails (returns nil), pass through
|
42
|
+
return @app.call(env) unless payload
|
43
|
+
|
44
|
+
# Determine if we should proceed with strict validation based on payload type and content
|
45
|
+
should_validate = false
|
46
|
+
is_batch = false
|
47
|
+
|
48
|
+
case payload
|
49
|
+
when Hash
|
50
|
+
# Validate single Hash only if 'jsonrpc' key is present
|
51
|
+
should_validate = payload.key?("jsonrpc")
|
52
|
+
is_batch = false
|
53
|
+
when Array
|
54
|
+
# Validate Array only if ALL elements are Hashes AND at least one has 'jsonrpc' key
|
55
|
+
all_hashes = payload.all? { |el| el.is_a?(Hash) }
|
56
|
+
any_jsonrpc = payload.any? { |el| el.is_a?(Hash) && el.key?("jsonrpc") }
|
57
|
+
if all_hashes && any_jsonrpc
|
58
|
+
should_validate = true
|
59
|
+
is_batch = true
|
60
|
+
end
|
61
|
+
# Note: Empty arrays or arrays not meeting the criteria will pass through
|
46
62
|
end
|
47
63
|
|
48
|
-
#
|
49
|
-
|
50
|
-
|
64
|
+
# If conditions for validation are not met, pass through
|
65
|
+
return @app.call(env) unless should_validate
|
66
|
+
|
67
|
+
# --- Proceed with strict validation ---
|
51
68
|
validation_result, _ = is_batch ? validate_batch(payload) : validate_single(payload)
|
52
69
|
|
53
|
-
# If validation failed, return the
|
70
|
+
# If strict validation failed (e.g., wrong version, missing method, invalid batch element), return the error
|
54
71
|
return validation_result unless validation_result == :valid
|
55
72
|
|
56
73
|
# Store the validated payload (original structure) in env for the controller
|
@@ -62,14 +79,13 @@ module JSON_RPC_Rails
|
|
62
79
|
|
63
80
|
private
|
64
81
|
|
65
|
-
#
|
66
|
-
|
67
|
-
# Parses the JSON body string. Returns parsed data or nil on failure.
|
82
|
+
# Parses the JSON body string using ActiveSupport::JSON. Returns parsed data or nil on failure.
|
68
83
|
def parse_json(body)
|
69
84
|
return nil if body.nil? || body.strip.empty?
|
70
85
|
|
71
|
-
JSON.
|
72
|
-
rescue JSON
|
86
|
+
ActiveSupport::JSON.decode(body)
|
87
|
+
rescue ActiveSupport::JSON.parse_error
|
88
|
+
# Return nil if parsing fails, allowing the request to pass through
|
73
89
|
nil
|
74
90
|
end
|
75
91
|
|
@@ -152,11 +168,10 @@ module JSON_RPC_Rails
|
|
152
168
|
JSON_RPC::JsonRpcError.new(error_type)
|
153
169
|
end
|
154
170
|
|
155
|
-
response_body =
|
156
|
-
|
171
|
+
response_body = JSON_RPC::Response.new(
|
172
|
+
id: nil, # Middleware errors have null id
|
157
173
|
error: error_obj.to_h,
|
158
|
-
|
159
|
-
}.to_json
|
174
|
+
).to_json
|
160
175
|
|
161
176
|
[
|
162
177
|
status,
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jsonrpc-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Abdelkader Boudih
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-03-
|
10
|
+
date: 2025-03-28 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: railties
|