apia 3.4.0 → 3.5.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/apia/cors.rb +38 -0
- data/lib/apia/endpoint.rb +14 -1
- data/lib/apia/rack.rb +3 -23
- data/lib/apia/request_environment.rb +5 -0
- data/lib/apia/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 655dd00a146e4b25e600c926b0b57f160b8eb22d5908f0a7617c5c69d2781867
|
4
|
+
data.tar.gz: 57e7d53b19ed835966326bea22228b873218865505823ebf5cc13c3694274d30
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 16961608a1f749b7dea60e91b26a475fe2079f1c80b0535216a2a4551d8d481298733b33c304d6c6e2dd2811f253011d991fc234e42186e945f778ff7f595738
|
7
|
+
data.tar.gz: b611dd81deba0c3114af55c1fd3a8605ae5a4eb746730ba1d19b27f7b95302857962abbc2e7e2c7f7c4b59f4b1cf7bfffc87a440db3f396c350be4b9eb8f3d0a
|
data/lib/apia/cors.rb
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Apia
|
4
|
+
class CORS
|
5
|
+
|
6
|
+
attr_accessor :methods
|
7
|
+
attr_accessor :headers
|
8
|
+
attr_accessor :origin
|
9
|
+
|
10
|
+
def initialize
|
11
|
+
@origin = '*'
|
12
|
+
@methods = '*'
|
13
|
+
@headers = []
|
14
|
+
end
|
15
|
+
|
16
|
+
def to_headers
|
17
|
+
return {} if @origin.nil?
|
18
|
+
|
19
|
+
headers = {}
|
20
|
+
headers['Access-Control-Allow-Origin'] = @origin
|
21
|
+
|
22
|
+
if @methods.is_a?(String)
|
23
|
+
headers['Access-Control-Allow-Methods'] = @methods
|
24
|
+
elsif @methods.is_a?(Array) && @methods.any?
|
25
|
+
headers['Access-Control-Allow-Methods'] = @methods.map(&:upcase).join(', ')
|
26
|
+
end
|
27
|
+
|
28
|
+
if @headers.is_a?(String)
|
29
|
+
headers['Access-Control-Allow-Headers'] = @headers
|
30
|
+
elsif @headers.is_a?(Array) && @headers.any?
|
31
|
+
headers['Access-Control-Allow-Headers'] = @headers.join(', ')
|
32
|
+
end
|
33
|
+
|
34
|
+
headers
|
35
|
+
end
|
36
|
+
|
37
|
+
end
|
38
|
+
end
|
data/lib/apia/endpoint.rb
CHANGED
@@ -48,10 +48,23 @@ module Apia
|
|
48
48
|
environment = RequestEnvironment.new(request, response)
|
49
49
|
|
50
50
|
catch_errors(response) do
|
51
|
-
# Determine an authenticator
|
51
|
+
# Determine an authenticator for this endpoint
|
52
52
|
request.authenticator = definition.authenticator || request.controller&.definition&.authenticator || request.api&.definition&.authenticator
|
53
|
+
|
54
|
+
# Execute the authentication before the request happens
|
53
55
|
request.authenticator&.execute(environment)
|
54
56
|
|
57
|
+
# Add the CORS headers to the response before the endpoint is called. The endpoint
|
58
|
+
# cannot influence the CORS headers.
|
59
|
+
response.headers.merge!(environment.cors.to_headers)
|
60
|
+
|
61
|
+
# OPTIONS requests always return 200 OK and no body.
|
62
|
+
if request.options?
|
63
|
+
response.status = 200
|
64
|
+
response.body = ''
|
65
|
+
return response
|
66
|
+
end
|
67
|
+
|
55
68
|
# Determine if we're permitted to run the action based on the endpoint's scopes
|
56
69
|
if request.authenticator && !request.authenticator.authorized_scope?(environment, definition.scopes)
|
57
70
|
environment.raise_error Apia::ScopeNotGrantedError, scopes: definition.scopes
|
data/lib/apia/rack.rb
CHANGED
@@ -65,9 +65,7 @@ module Apia
|
|
65
65
|
|
66
66
|
api_path = Regexp.last_match(1)
|
67
67
|
|
68
|
-
|
69
|
-
add_cors_headers(env, triplet)
|
70
|
-
triplet
|
68
|
+
handle_request(env, api_path)
|
71
69
|
end
|
72
70
|
|
73
71
|
private
|
@@ -77,15 +75,12 @@ module Apia
|
|
77
75
|
request_method = env['REQUEST_METHOD'].upcase
|
78
76
|
notify_hash = { api: api, env: env, path: api_path, method: request_method }
|
79
77
|
|
80
|
-
if request_method.upcase == 'OPTIONS'
|
81
|
-
return [204, {}, ['']]
|
82
|
-
end
|
83
|
-
|
84
78
|
Apia::Notifications.notify(:request_start, notify_hash)
|
85
79
|
|
86
80
|
validate_api if development?
|
87
81
|
|
88
|
-
|
82
|
+
access_control_request_method = env['HTTP_ACCESS_CONTROL_REQUEST_METHOD']&.upcase if request_method == 'OPTIONS'
|
83
|
+
route = find_route((access_control_request_method || request_method), api_path)
|
89
84
|
if route.nil?
|
90
85
|
Apia::Notifications.notify(:request_route_not_found, notify_hash)
|
91
86
|
raise RackError.new(404, 'route_not_found', "No route matches '#{api_path}' for #{request_method}")
|
@@ -155,21 +150,6 @@ module Apia
|
|
155
150
|
)
|
156
151
|
end
|
157
152
|
|
158
|
-
# Add cross origin headers to the response triplet
|
159
|
-
#
|
160
|
-
# @param env [Hash]
|
161
|
-
# @param triplet [Array]
|
162
|
-
# @return [void]
|
163
|
-
def add_cors_headers(env, triplet)
|
164
|
-
triplet[1]['Access-Control-Allow-Origin'] = '*'
|
165
|
-
triplet[1]['Access-Control-Allow-Methods'] = '*'
|
166
|
-
if env['HTTP_ACCESS_CONTROL_REQUEST_HEADERS']
|
167
|
-
triplet[1]['Access-Control-Allow-Headers'] = env['HTTP_ACCESS_CONTROL_REQUEST_HEADERS']
|
168
|
-
end
|
169
|
-
|
170
|
-
true
|
171
|
-
end
|
172
|
-
|
173
153
|
class << self
|
174
154
|
|
175
155
|
# Return a JSON-ready triplet for the given body.
|
@@ -2,6 +2,7 @@
|
|
2
2
|
|
3
3
|
require 'apia/environment_error_handling'
|
4
4
|
require 'apia/errors/invalid_helper_error'
|
5
|
+
require 'apia/cors'
|
5
6
|
|
6
7
|
module Apia
|
7
8
|
class RequestEnvironment
|
@@ -74,6 +75,10 @@ module Apia
|
|
74
75
|
@response.add_field :pagination, pagination_info
|
75
76
|
end
|
76
77
|
|
78
|
+
def cors
|
79
|
+
@cors ||= CORS.new
|
80
|
+
end
|
81
|
+
|
77
82
|
private
|
78
83
|
|
79
84
|
def potential_error_sources
|
data/lib/apia/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: apia
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Adam Cooke
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-11-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: json
|
@@ -51,6 +51,7 @@ files:
|
|
51
51
|
- lib/apia/authenticator.rb
|
52
52
|
- lib/apia/callable_with_environment.rb
|
53
53
|
- lib/apia/controller.rb
|
54
|
+
- lib/apia/cors.rb
|
54
55
|
- lib/apia/deep_merge.rb
|
55
56
|
- lib/apia/defineable.rb
|
56
57
|
- lib/apia/definition.rb
|