forest_admin_agent 1.0.0.pre.beta.88 → 1.0.0.pre.beta.90
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/forest_admin_agent/routes/resources/delete.rb +1 -1
- data/lib/forest_admin_agent/routes/resources/related/dissociate_related.rb +1 -1
- data/lib/forest_admin_agent/routes/resources/store.rb +1 -1
- data/lib/forest_admin_agent/utils/caller_parser.rb +68 -0
- data/lib/forest_admin_agent/utils/query_string_parser.rb +1 -28
- data/lib/forest_admin_agent/utils/schema/schema_emitter.rb +1 -1
- data/lib/forest_admin_agent/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: ae621695f9deebb0ba410f6791f9549bc0cec956a54d636c2801ed688fbf83a1
|
4
|
+
data.tar.gz: 034c2154d956922e1c1c4bb35055e986bb0632290bac0e868e830b8710d1ace4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 209de7100f34731b01703bd09034b194f3a39f65244894e4fcf19bc2be329da0f6ede35ecab2ac49be648020d354cf34860090ecec79c7bab5788603c1b78820
|
7
|
+
data.tar.gz: d11e6d45f101036ebcaadf3e04889ac8135177a9891c6516c31aa37832075e2efa9302a1cd5e1e9d066922c33210965d150604d7013fe21d0483b33246be6323
|
@@ -39,7 +39,7 @@ module ForestAdminAgent
|
|
39
39
|
condition_tree_ids = condition_tree_ids.inverse if selection_ids[:are_excluded]
|
40
40
|
|
41
41
|
@collection.schema[:fields].each_value do |field_schema|
|
42
|
-
next unless
|
42
|
+
next unless ['PolymorphicOneToOne', 'PolymorphicOneToMany'].include?(field_schema.type)
|
43
43
|
|
44
44
|
condition_tree = Nodes::ConditionTreeBranch.new(
|
45
45
|
'And',
|
@@ -34,7 +34,7 @@ module ForestAdminAgent
|
|
34
34
|
filter = get_base_foreign_filter(args)
|
35
35
|
relation = Schema.get_to_many_relation(@collection, args[:params]['relation_name'])
|
36
36
|
|
37
|
-
if
|
37
|
+
if ['OneToMany', 'PolymorphicOneToMany'].include?(relation.type)
|
38
38
|
dissociate_or_delete_one_to_many(relation, args[:params]['relation_name'], parent_id, is_delete_mode,
|
39
39
|
filter)
|
40
40
|
else
|
@@ -40,7 +40,7 @@ module ForestAdminAgent
|
|
40
40
|
def link_one_to_one_relations(args, record)
|
41
41
|
args[:params][:data][:relationships]&.map do |field, value|
|
42
42
|
schema = @collection.schema[:fields][field]
|
43
|
-
next unless
|
43
|
+
next unless ['OneToOne', 'PolymorphicOneToOne'].include?(schema.type)
|
44
44
|
|
45
45
|
id = Utils::Id.unpack_id(@collection, value['data']['id'], with_key: true)
|
46
46
|
foreign_collection = @datasource.get_collection(schema.foreign_collection)
|
@@ -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
|
-
|
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)
|
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.
|
4
|
+
version: 1.0.0.pre.beta.90
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matthieu
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date: 2025-01-
|
12
|
+
date: 2025-01-15 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activesupport
|
@@ -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
|