ibrain-core 0.5.12 → 0.5.13
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/controllers/ibrain/core/graphql_controller.rb +40 -12
- data/lib/ibrain/core/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 600b958b07961ac273d90d3983dcc092468e9863daabf7c79dfd1243318bb76f
|
4
|
+
data.tar.gz: 6ae2ccaba1c837721b9d0003379af3cd8a5bd5854b03d0abb6e6826b250b252f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e5a5f8b61ced5d7adfea0e6944c8ebd3d2aeaa6d637d50b2361bd194bc10c5b02efc745b4664770a0792b5408644324dd44d68d44b199e4d08d1b818335743f1
|
7
|
+
data.tar.gz: c118b9650c409c848e6c8822a795e011d22c6c1eeb2dba9c70f240f8509b65bd3b5571446730ca5e68e2f72397ce92c6b57315e834300296d39546129b3bd498
|
@@ -14,18 +14,46 @@ module Ibrain
|
|
14
14
|
def execute
|
15
15
|
query, variables, operation_name = normalize_entity
|
16
16
|
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
17
|
+
is_mutation = query =~ /mutation #{operation_name}/
|
18
|
+
cache_key = "graphql-#{try_ibrain_current_user&.id}/#{request.headers.hash}-#{params.to_unsafe_h.hash}"
|
19
|
+
context = {
|
20
|
+
session: session,
|
21
|
+
current_user: try_ibrain_current_user,
|
22
|
+
controller: self,
|
23
|
+
request: request
|
24
|
+
}
|
25
|
+
|
26
|
+
exec_function = proc do |options|
|
27
|
+
schema.execute(
|
28
|
+
options[:query],
|
29
|
+
variables: options[:variables],
|
30
|
+
context: options[:context],
|
31
|
+
operation_name: options[:operation_name],
|
32
|
+
max_depth: options[:max_depth]
|
33
|
+
)
|
34
|
+
end
|
35
|
+
|
36
|
+
if is_mutation
|
37
|
+
result = exec_function.call({
|
38
|
+
query: query,
|
39
|
+
variables: variables,
|
40
|
+
context: context,
|
41
|
+
operation_name: operation_name,
|
42
|
+
max_depth: max_depth(operation_name)
|
43
|
+
})
|
44
|
+
else
|
45
|
+
result = Rails.cache.fetch(cache_key, expires_in: 10.minutes) do
|
46
|
+
result = exec_function.call({
|
47
|
+
query: query,
|
48
|
+
variables: variables,
|
49
|
+
context: context,
|
50
|
+
operation_name: operation_name,
|
51
|
+
max_depth: max_depth(operation_name)
|
52
|
+
})
|
53
|
+
|
54
|
+
result.to_h
|
55
|
+
end
|
56
|
+
end
|
29
57
|
|
30
58
|
render_json_ok(result['data'], nil, result['errors'])
|
31
59
|
end
|
data/lib/ibrain/core/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ibrain-core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.13
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tai Nguyen Van
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-03-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord-session_store
|