model_driven_api 3.2.7 → 3.2.9
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: e3cd19d5c69348493256387515146bca60041d648fd49acc939181dd8a859e35
|
4
|
+
data.tar.gz: e5a2a33889767d9b8aedbfa4e6eb2895a5153a313d32073e767080cb20481692
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c4482340718ac9a9b88a4381cf2e807f3c226aa6979c4f3d45c4fb1e2ddff5668ba3acc748b40fbc431f9c3702a05a6e81a4ccc4baad154a8ce8c447b165b4e9
|
7
|
+
data.tar.gz: b252c95eed43d4c6216cf29c7f184bb3563128319f9605d9454bbb67cfe32eab0781b8f085cc478cc110c27ed6d509dc61c3d8add74ffc35d367ffc57d6e108c
|
@@ -14,17 +14,28 @@ class AuthorizeApiRequest
|
|
14
14
|
attr_reader :headers
|
15
15
|
|
16
16
|
def api_user
|
17
|
+
Rails.logger.debug "AuthorizeApiRequest: api_user -> #{decoded_auth_token}"
|
17
18
|
@api_user ||= User.find(decoded_auth_token[:user_id]) if decoded_auth_token
|
18
|
-
@api_user
|
19
|
+
if @api_user
|
20
|
+
return @api_user
|
21
|
+
else
|
22
|
+
errors.add(:token, "Invalid token")
|
23
|
+
return nil
|
24
|
+
end
|
19
25
|
end
|
20
26
|
|
21
27
|
def decoded_auth_token
|
28
|
+
Rails.logger.debug "AuthorizeApiRequest: http_auth_header -> #{http_auth_header}"
|
22
29
|
@decoded_auth_token ||= JsonWebToken.decode(http_auth_header)
|
30
|
+
@decoded_auth_token
|
23
31
|
end
|
24
32
|
|
25
33
|
def http_auth_header
|
34
|
+
Rails.logger.debug "AuthorizeApiRequest: Authorization -> #{headers['Authorization']}"
|
26
35
|
if headers['Authorization'].present?
|
27
|
-
|
36
|
+
token = headers['Authorization'].split(' ').last
|
37
|
+
Rails.logger.debug "AuthorizeApiRequest: token -> #{token}"
|
38
|
+
return token
|
28
39
|
else
|
29
40
|
errors.add(:token, "Missing token")
|
30
41
|
end
|
@@ -44,7 +44,7 @@ class Api::V2::ApplicationController < ActionController::API
|
|
44
44
|
# puts "If it's asked for page number, then paginate"
|
45
45
|
return render json: @records.as_json(json_attrs), status: status if !page.blank? # (@json_attrs || {})
|
46
46
|
#puts "if you ask for count, then return a json object with just the number of objects"
|
47
|
-
return render json: { count: @records_all.
|
47
|
+
return render json: { count: @records_all.size } if !count.blank?
|
48
48
|
#puts "Default"
|
49
49
|
json_out = @records_all.as_json(json_attrs)
|
50
50
|
#puts "JSON ATTRS: #{json_attrs}"
|
@@ -195,9 +195,11 @@ class Api::V2::ApplicationController < ActionController::API
|
|
195
195
|
@current_user = nil
|
196
196
|
Settings.ns(:security).allowed_authorization_headers.split(",").each do |header|
|
197
197
|
# puts "Found header #{header}: #{request.headers[header]}"
|
198
|
-
check_authorization("Authorize#{header}".constantize.call(request))
|
198
|
+
check_authorization("Authorize#{header}".constantize.call(request)) unless @current_user
|
199
199
|
end
|
200
200
|
|
201
|
+
Rails.logger.debug("Checking for authorization with AuthorizeApiRequest if current_user not already present -> current_user: #{@current_user}")
|
202
|
+
|
201
203
|
check_authorization AuthorizeApiRequest.call(request) unless @current_user
|
202
204
|
return unauthenticated!(OpenStruct.new({ message: @auth_errors })) unless @current_user
|
203
205
|
|
@@ -240,6 +242,7 @@ class Api::V2::ApplicationController < ActionController::API
|
|
240
242
|
end
|
241
243
|
|
242
244
|
def check_authorization(cmd)
|
245
|
+
Rails.logger.debug("Checking authorization: #{cmd.inspect}")
|
243
246
|
if cmd.success?
|
244
247
|
@current_user = cmd.result
|
245
248
|
else
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: model_driven_api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.2.
|
4
|
+
version: 3.2.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gabriele Tassoni
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-03-03 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: thecore_backend_commons
|