forest_admin_agent 1.0.0.pre.beta.88 → 1.0.0.pre.beta.89

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: ba603df0dd8d88da6e6f10f251d3c24a682e9085799bbe097533863db88e1691
4
- data.tar.gz: 3552261f4d9113775875d559886f53fd2370a018994cb03be83605135f51306f
3
+ metadata.gz: c3a73a3d208b063c855a7c50485975d493306f1ae7e0d555911911abe2a4e998
4
+ data.tar.gz: ceb5d65a7cd575b94b68148bc43bfd8f77e8e97ee44469ecd3f2fff1e1b3801d
5
5
  SHA512:
6
- metadata.gz: cff8663ff0b641b59b695b3bff3400438082f86ba99bfd8138413fff16aa5cb76f5995e254dbd2d7b39a2885ad499afe80f046adb123007ec9307c15b8c78e9d
7
- data.tar.gz: fe61ddd0ca3110d4904f012a379e03507fd415561c22a12f04587bc5e0b9031b1987dc304ca940678dbdbb11698fd1cf4b712c66fe3529e47458f6ae4ca1157c
6
+ metadata.gz: 129490f5cc3070dcc7ed8e4519ecb4c73dd64f07828724621ba35cada83d12197455ac7056130efdbc321339adaaf06450fea3cc9c72db35513928b8a8380dcc
7
+ data.tar.gz: 71f0ff4729bd1c54178ae28aa7edae6c8c34a9e8b8b91d3c8e383e7fd5f2fea07e9ab7d2267d81837940fc6597d6d7a0a4db6d02a887fb47604e5ecfcd02dac2
@@ -0,0 +1,68 @@
1
+ require 'jwt'
2
+ require 'active_support'
3
+ require 'active_support/time'
4
+
5
+ module ForestAdminAgent
6
+ module Utils
7
+ class CallerParser
8
+ include ForestAdminDatasourceToolkit::Exceptions
9
+
10
+ def initialize(args)
11
+ @args = args
12
+ @token_data = {}
13
+ end
14
+
15
+ def parse
16
+ validate_headers
17
+ @token_data = decode_token
18
+ @token_data[:timezone] = extract_timezone
19
+ @token_data[:request] = { ip: @args[:headers]['action_dispatch.remote_ip'].to_s }
20
+ project, environment = extract_forest_context
21
+ @token_data[:project] = project
22
+ @token_data[:environment] = environment
23
+
24
+ ForestAdminDatasourceToolkit::Components::Caller.new(**@token_data.transform_keys(&:to_sym))
25
+ end
26
+
27
+ private
28
+
29
+ def validate_headers
30
+ return if @args.dig(:headers, 'HTTP_AUTHORIZATION')
31
+
32
+ raise Http::Exceptions::HttpException.new(
33
+ 401,
34
+ 'You must be logged in to access at this resource.'
35
+ )
36
+ end
37
+
38
+ def extract_timezone
39
+ timezone = @args[:params]['timezone']
40
+ raise ForestException, 'Missing timezone' unless timezone
41
+ raise ForestException, "Invalid timezone: #{timezone}" unless Time.find_zone(timezone)
42
+
43
+ timezone
44
+ end
45
+
46
+ def decode_token
47
+ token = @args[:headers]['HTTP_AUTHORIZATION'].split[1]
48
+ JWT.decode(
49
+ token,
50
+ Facades::Container.cache(:auth_secret),
51
+ true,
52
+ { algorithm: 'HS256' }
53
+ )[0].tap { |data| data.delete('exp') }
54
+ end
55
+
56
+ def extract_forest_context
57
+ match_data = %r{https://[^/]*/([^/]*)/([^/]*)/([^/]*)}.match(@args[:headers]['HTTP_FOREST_CONTEXT_URL'])
58
+ return [nil, nil] unless match_data
59
+
60
+ project = match_data[1]
61
+ environment = match_data[2]
62
+ [project, environment]
63
+ rescue StandardError
64
+ [nil, nil]
65
+ end
66
+ end
67
+ end
68
+ end
@@ -1,7 +1,3 @@
1
- require 'jwt'
2
- require 'active_support'
3
- require 'active_support/time'
4
-
5
1
  module ForestAdminAgent
6
2
  module Utils
7
3
  class QueryStringParser
@@ -31,30 +27,7 @@ module ForestAdminAgent
31
27
  end
32
28
 
33
29
  def self.parse_caller(args)
34
- unless args.dig(:headers, 'HTTP_AUTHORIZATION')
35
- raise Http::Exceptions::HttpException.new(
36
- 401,
37
- 'You must be logged in to access at this resource.'
38
- )
39
- end
40
-
41
- timezone = args[:params]['timezone']
42
- raise ForestException, 'Missing timezone' unless timezone
43
-
44
- raise ForestException, "Invalid timezone: #{timezone}" unless Time.find_zone(timezone)
45
-
46
- token = args[:headers]['HTTP_AUTHORIZATION'].split[1]
47
- token_data = JWT.decode(
48
- token,
49
- Facades::Container.cache(:auth_secret),
50
- true,
51
- { algorithm: 'HS256' }
52
- )[0]
53
- token_data.delete('exp')
54
- token_data[:timezone] = timezone
55
- token_data[:request] = { ip: args[:headers]['action_dispatch.remote_ip'].to_s }
56
-
57
- Caller.new(**token_data.transform_keys(&:to_sym))
30
+ CallerParser.new(args).parse
58
31
  end
59
32
 
60
33
  def self.parse_projection(collection, args)
@@ -7,7 +7,7 @@ module ForestAdminAgent
7
7
  class SchemaEmitter
8
8
  LIANA_NAME = "agent-ruby"
9
9
 
10
- LIANA_VERSION = "1.0.0-beta.88"
10
+ LIANA_VERSION = "1.0.0-beta.89"
11
11
 
12
12
  def self.get_serialized_schema(datasource)
13
13
  schema_path = Facades::Container.cache(:schema_path)
@@ -1,3 +1,3 @@
1
1
  module ForestAdminAgent
2
- VERSION = "1.0.0-beta.88"
2
+ VERSION = "1.0.0-beta.89"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: forest_admin_agent
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.pre.beta.88
4
+ version: 1.0.0.pre.beta.89
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matthieu
@@ -275,6 +275,7 @@ files:
275
275
  - lib/forest_admin_agent/services/permissions.rb
276
276
  - lib/forest_admin_agent/services/smart_action_checker.rb
277
277
  - lib/forest_admin_agent/services/sse_cache_invalidation.rb
278
+ - lib/forest_admin_agent/utils/caller_parser.rb
278
279
  - lib/forest_admin_agent/utils/condition_tree_parser.rb
279
280
  - lib/forest_admin_agent/utils/context_variables.rb
280
281
  - lib/forest_admin_agent/utils/context_variables_injector.rb