ibrain-core 0.5.12 → 0.5.15

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6bac2bf8a32b4d4271635b858daf8b608adde64dfee63b468afe5ee62b093537
4
- data.tar.gz: 6143364930072c20ba64208b15482fb36b88a809c10f1e0ed01266039138d9aa
3
+ metadata.gz: dcf708b989ce13166536ff15242a512355288a92efa79f547f73916f0815e63b
4
+ data.tar.gz: 8d440692e7c930935a416d8d9df2b8648b01e6f915f07cf1abf9d51d91083fb2
5
5
  SHA512:
6
- metadata.gz: bc34b2df8d63e286d05c589f797baee4d824982147f783564acc367b2433ebfc48422929e83888851c88fa27d55a2022b4abf43546e1d48cec664c3862256342
7
- data.tar.gz: 5e15776e2b885d468f0ee2eff619956da2e16d5f327ecaec1c3b586e663bfb824278fcdde48432b3300d94c00ac1e5dad4c198d6bdbb174fe23368e7b3a33d47
6
+ metadata.gz: e2b6ce0ddb2621a374cd3904273eb4229a0e31ca6f1cfcda2b06b07053fc289ed50404f6f44abdfee641be163fc341e5d2680a7726510eb7f853fd931c6f0d18
7
+ data.tar.gz: a541dd57fba71cbdb986655c8f471d29f920231725fb9276411ee8a178ebcf177726040650f723e6e063231b86587d14da207259bb767e90afa12b3443f98b1d
@@ -14,18 +14,46 @@ module Ibrain
14
14
  def execute
15
15
  query, variables, operation_name = normalize_entity
16
16
 
17
- result = schema.execute(
18
- query,
19
- variables: variables,
20
- context: {
21
- session: session,
22
- current_user: try_ibrain_current_user,
23
- controller: self,
24
- request: request
25
- },
26
- operation_name: operation_name,
27
- max_depth: max_depth(operation_name)
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
@@ -4,7 +4,10 @@ module Ibrain
4
4
  module Extentions
5
5
  class SessionRequired < GraphQL::Schema::FieldExtension
6
6
  def resolve(object:, arguments:, **rest)
7
- raise ActionController::InvalidAuthenticityToken, I18n.t('ibrain.errors.session.invalid_session') if is_invalid_session(object)
7
+ if is_invalid_session(object)
8
+ remove_device_token(object)
9
+ raise ActionController::InvalidAuthenticityToken, I18n.t('ibrain.errors.session.invalid_session')
10
+ end
8
11
 
9
12
  # yield the current time as `memo`
10
13
  yield(object, arguments, rest)
@@ -15,6 +18,11 @@ module Ibrain
15
18
  def is_invalid_session(object)
16
19
  object.try(:context).try(:fetch, :current_user, nil).blank? && options.try(:fetch, :session_required, false)
17
20
  end
21
+
22
+ def remove_device_token(object)
23
+ request = object.try(:context).try(:fetch, :request, nil)
24
+ Ibrain.user_class.try(:remove_device_token, request) if request
25
+ end
18
26
  end
19
27
  end
20
28
  end
@@ -9,7 +9,7 @@ module Ibrain
9
9
  field :aggregate, Ibrain::Types::AggregateType, null: false, camelize: false
10
10
 
11
11
  def aggregate
12
- Ibrain::Aggregate.new(object.items.size)
12
+ Ibrain::Aggregate.new(object.items.to_a.size)
13
13
  end
14
14
  end
15
15
  end
@@ -9,7 +9,7 @@ module Ibrain
9
9
  field :aggregate, Ibrain::Types::AggregateType, null: false, camelize: false
10
10
 
11
11
  def aggregate
12
- Ibrain::Aggregate.new(object.items.size)
12
+ Ibrain::Aggregate.new(object.items.to_a.size)
13
13
  end
14
14
  end
15
15
  end
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Ibrain
4
- VERSION = "0.5.12"
4
+ VERSION = "0.5.15"
5
5
 
6
6
  def self.ibrain_version
7
7
  VERSION
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.12
4
+ version: 0.5.15
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-02-07 00:00:00.000000000 Z
11
+ date: 2023-05-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord-session_store