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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7a329937c7fecde34677567a8df15dab630b5062b30c01f1fcb825b25789e590
4
- data.tar.gz: e7d7de880e9adc77839bb29feafdff54a35f56de555a68aa7e9d62413bf2d3fa
3
+ metadata.gz: 441449ded5e2318b8781addfbef037112f6db49595a3cb4ae3cddb35826ee02f
4
+ data.tar.gz: 0a4729694ca406fb564b9dbe5ba715f37d072f68a20a9f1e509121849050f18a
5
5
  SHA512:
6
- metadata.gz: e98d92b3ea32b21fc6b1fafa766a0a9b3a60f9cd0475424753c486e62c872945dd105c0e64f91c9d0eba291918ec5bab6f5d3310d4039ed2b807c9c53d3f6291
7
- data.tar.gz: b724be97e378604ede9244d90b76d93f07c0070a1e142ed0d3787c5d81e4df1dd8f1848a3d84fdd28096d6ae6cb7102e86780fe6c2b2fbabbf8a8e1fc8f0615b
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
- return jsonrpc_error_response(:parse_error) unless payload
41
-
42
- # Only attempt JSON-RPC validation if payload is a Hash or Array
43
- unless payload.is_a?(Hash) || payload.is_a?(Array)
44
- # Pass through other valid JSON types (string, number, boolean, null)
45
- return @app.call(env)
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
- # Payload is Hash or Array, proceed with JSON-RPC validation
49
- is_batch = payload.is_a?(Array)
50
- # validate_batch handles the empty array case internally now
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 generated error response
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
- # Removed jsonrpc_payload? method
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.parse(body)
72
- rescue JSON::ParserError
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
- jsonrpc: "2.0",
171
+ response_body = JSON_RPC::Response.new(
172
+ id: nil, # Middleware errors have null id
157
173
  error: error_obj.to_h,
158
- id: nil # Middleware errors have null id
159
- }.to_json
174
+ ).to_json
160
175
 
161
176
  [
162
177
  status,
@@ -1,3 +1,3 @@
1
1
  module JSON_RPC_Rails
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
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.0
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-27 00:00:00.000000000 Z
10
+ date: 2025-03-28 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: railties