nexus_cqrs 0.4.5 → 0.4.7

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: db72b483e967493d5e37a286713381f251518ec32f163ae7815f99c07d7bc3d7
4
- data.tar.gz: 8efd35b594563d0df4e234dd2eba492052aefb3ef995f3e39cac9f071de35a87
3
+ metadata.gz: faac1f432d692edcc43068b97fbac0261b4f0b7ebd1ff1f74bef37cabf97b377
4
+ data.tar.gz: 86e217db7e9db65b23e1eebb0af6649fb9248f4cf987b2f6924013cd86fb3c97
5
5
  SHA512:
6
- metadata.gz: c50ca03abdef77895b8c8f3c1a5a1ddff58303c007a82712a2c903ea4a01d66d0e050511908b3b73c1be6d57ec2564ce5430d3e2b000e87a46404e0c8fcb6baa
7
- data.tar.gz: 1dc9aa1d54cacdb47ed56ff35b7f7e20f016bfed6eb78ab79628e60ac4fcf9a8b210ef14a4f5b91446246af5e44a953c05cbd31d632a7085ed2fe70cc9d76bf1
6
+ metadata.gz: cfda5b1fc3d64af583692cb85180c979fcef2a77e56f91937db14a8e53e28068638da45791011aeb154c5e1234550dc5fe4a795257d2e74099c0f6925019385c
7
+ data.tar.gz: a777fe6969d4d93bc877e3420c0e62b6b29597c8a683fb9c538ed4bf4f1b3debf84a0a9820fea6374dcd28999302d037b2c155e83c8baf175e4e24b4d448f929
data/Gemfile.lock CHANGED
@@ -33,14 +33,14 @@ GEM
33
33
  zeitwerk (~> 2.3)
34
34
  ast (2.4.2)
35
35
  builder (3.2.4)
36
- concurrent-ruby (1.1.9)
36
+ concurrent-ruby (1.1.10)
37
37
  crass (1.0.6)
38
38
  diff-lcs (1.4.4)
39
39
  erubi (1.10.0)
40
40
  generator_spec (0.9.4)
41
41
  activesupport (>= 3.0.0)
42
42
  railties (>= 3.0.0)
43
- i18n (1.8.11)
43
+ i18n (1.10.0)
44
44
  concurrent-ruby (~> 1.0)
45
45
  ibsciss-middleware (0.4.2)
46
46
  loofah (2.12.0)
@@ -48,7 +48,7 @@ GEM
48
48
  nokogiri (>= 1.5.9)
49
49
  method_source (1.0.0)
50
50
  mini_portile2 (2.6.1)
51
- minitest (5.14.4)
51
+ minitest (5.15.0)
52
52
  nokogiri (1.12.5)
53
53
  mini_portile2 (~> 2.6.1)
54
54
  racc (~> 1.4)
@@ -111,7 +111,7 @@ GEM
111
111
  tzinfo (2.0.4)
112
112
  concurrent-ruby (~> 1.0)
113
113
  unicode-display_width (2.1.0)
114
- zeitwerk (2.5.1)
114
+ zeitwerk (2.5.4)
115
115
 
116
116
  PLATFORMS
117
117
  ruby
@@ -54,9 +54,13 @@ module NexusCqrs
54
54
  def for_user_on_entity(permission_model, entity_id)
55
55
  return [] if @user_id.nil?
56
56
 
57
- # retrieve entity-specific permissions from DB and map to hash
58
- entity_permissions = permission_model.where(user_id: @user_id, entity_id: entity_id)
59
- .map { |p| { global: false, key: p.permission } }
57
+ # retrieve entity-specific permissions from cached user permissions and map to hash
58
+ entity_permissions = if cached_permissions(permission_model).key?(entity_id)
59
+ cached_permissions(permission_model)[entity_id]
60
+ .map { |p| { global: false, key: p } }
61
+ else
62
+ []
63
+ end
60
64
 
61
65
  # Map global permissions to hash
62
66
  global_permissions = @global_permissions.map { |p| { global: true, key: p } }
@@ -116,7 +120,7 @@ module NexusCqrs
116
120
  # @param [ApplicationRecord] permission_model Permission model
117
121
  # @see PermissionProvider#for_user
118
122
  def cached_permissions(permission_model)
119
- ::RequestStore.store[:permissions] ||= for_user(permission_model)
123
+ ::RequestStore.store["permissions_#{permission_model.class.name}"] ||= for_user(permission_model)
120
124
  end
121
125
  end
122
126
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
  module NexusCqrs
3
- # Leave this as 0.4.5 in order for CI process to replace with the tagged version.
4
- VERSION = '0.4.5'
3
+ # Leave this as 0.4.7 in order for CI process to replace with the tagged version.
4
+ VERSION = '0.4.7'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nexus_cqrs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.5
4
+ version: 0.4.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dean Lovett
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-03-02 00:00:00.000000000 Z
11
+ date: 2022-10-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: generator_spec
@@ -154,7 +154,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
154
154
  - !ruby/object:Gem::Version
155
155
  version: '0'
156
156
  requirements: []
157
- rubygems_version: 3.3.8
157
+ rubygems_version: 3.3.24
158
158
  signing_key:
159
159
  specification_version: 4
160
160
  summary: Core package for the nexus cqrs gem