2018-12-13 13:39:08 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
module DeclarativePolicy
|
|
|
|
module Cache
|
|
|
|
class << self
|
|
|
|
def user_key(user)
|
|
|
|
return '<anonymous>' if user.nil?
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
id_for(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
def policy_key(user, subject)
|
|
|
|
u = user_key(user)
|
|
|
|
s = subject_key(subject)
|
|
|
|
"/dp/policy/#{u}/#{s}"
|
|
|
|
end
|
|
|
|
|
|
|
|
def subject_key(subject)
|
|
|
|
return '<nil>' if subject.nil?
|
|
|
|
return subject.inspect if subject.is_a?(Symbol)
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
"#{subject.class.name}:#{id_for(subject)}"
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def id_for(obj)
|
|
|
|
id =
|
|
|
|
begin
|
|
|
|
obj.id
|
|
|
|
rescue NoMethodError
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
|
|
|
id || "##{obj.object_id}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|