mongoid_ability 0.1.0 → 0.1.1
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
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bde67f16382046638b7c44bbffaee16d487e249e
|
4
|
+
data.tar.gz: 865cfbd05868412373e72e4e026636a04292d710
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7ae18b864f57c2b87a8e19bbcb2995dfc2435840eb688bb1c34b7adeecd7113800afdabc3b7da9a602a986384efcc0ccb35ff8769a5879b07d886757b85966be
|
7
|
+
data.tar.gz: f35c6dda2fa87911e840856963bc84f8b85e0c00e289051cde6dc457352bcc7616528e8e179659640827f639e7c4083b2b2f16bb45f13d287657fe952e8259fa
|
@@ -26,10 +26,12 @@ module MongoidAbility
|
|
26
26
|
subject_class = subject_type.to_s.constantize
|
27
27
|
outcome = nil
|
28
28
|
options ||= {}
|
29
|
+
|
29
30
|
subject_class.self_and_ancestors_with_default_locks.each do |cls|
|
30
31
|
outcome = ResolveInheritedLocks.call(owner, action, cls, subject, options)
|
31
32
|
break if outcome != nil
|
32
33
|
end
|
34
|
+
|
33
35
|
outcome
|
34
36
|
end
|
35
37
|
|
@@ -8,12 +8,16 @@ module MongoidAbility
|
|
8
8
|
# =====================================================================
|
9
9
|
|
10
10
|
def call
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
11
|
+
_call
|
12
|
+
|
13
|
+
# if defined? Rails
|
14
|
+
# # FIXME: this is a bit of a dirty hack, since the marshalling of criteria does not preserve the embedded attributes
|
15
|
+
# Rails.cache.fetch( [ 'ability-query', base_class, ability.cache_key, action, ability.options_cache_key(options) ] ) do
|
16
|
+
# _call
|
17
|
+
# end.tap { |c| c.embedded = base_criteria.embedded }
|
18
|
+
# else
|
19
|
+
# _call
|
20
|
+
# end
|
17
21
|
end
|
18
22
|
|
19
23
|
private # =============================================================
|
@@ -3,21 +3,29 @@ module MongoidAbility
|
|
3
3
|
|
4
4
|
def self.included base
|
5
5
|
base.extend ClassMethods
|
6
|
+
base.class_eval do
|
7
|
+
end
|
6
8
|
end
|
7
9
|
|
8
10
|
# ---------------------------------------------------------------------
|
9
11
|
|
10
12
|
module ClassMethods
|
11
13
|
def default_locks
|
12
|
-
@default_locks ||=
|
14
|
+
@default_locks ||= []
|
13
15
|
end
|
14
16
|
|
15
17
|
def default_locks= locks
|
16
|
-
@default_locks =
|
18
|
+
@default_locks = locks
|
17
19
|
end
|
18
20
|
|
19
21
|
def default_lock lock_cls, action, outcome, attrs={}
|
20
|
-
|
22
|
+
lock = lock_cls.new( { subject_type: self.to_s, action: action, outcome: outcome }.merge(attrs))
|
23
|
+
|
24
|
+
if existing_lock = default_locks.detect{ |l| l.action.to_s == lock.action.to_s }
|
25
|
+
default_locks.delete(existing_lock)
|
26
|
+
end
|
27
|
+
|
28
|
+
default_locks.push lock
|
21
29
|
end
|
22
30
|
|
23
31
|
def self_and_ancestors_with_default_locks
|
@@ -33,26 +41,5 @@ module MongoidAbility
|
|
33
41
|
end
|
34
42
|
end
|
35
43
|
|
36
|
-
# ---------------------------------------------------------------------
|
37
|
-
|
38
|
-
require 'forwardable'
|
39
|
-
class DefaultLocksExtension
|
40
|
-
extend Forwardable
|
41
|
-
def_delegators :@default_locks, :any?, :collect, :delete, :detect, :first, :map, :push, :select
|
42
|
-
|
43
|
-
attr_reader :default_locks
|
44
|
-
|
45
|
-
def initialize default_locks=[]
|
46
|
-
@default_locks = default_locks
|
47
|
-
end
|
48
|
-
|
49
|
-
def << lock
|
50
|
-
if existing_lock = self.detect{ |l| l.action.to_s == lock.action.to_s }
|
51
|
-
@default_locks.delete(existing_lock)
|
52
|
-
end
|
53
|
-
@default_locks.push lock
|
54
|
-
end
|
55
|
-
end
|
56
|
-
|
57
44
|
end
|
58
45
|
end
|