Sha256: e5d28aaafca1bbaeee30c37a81171e8b7aca4be76e59c8959be95f9647f4f50a
Contents?: true
Size: 1.05 KB
Versions: 1
Compression:
Stored size: 1.05 KB
Contents
# Main class for all the **Underworld** Policy classes. # It's totally a minimume Policy. class Underworld::ApplicationPolicy attr_reader :user, :record def initialize(user, record) @user = user @record = record end def authorize?(action) return false if @user.nil? return true if @user.admin? # Check for ownership of the reocrd record_class = @record.class unless [Class, String, Symbol].include?(record_class) if @user.has_ownership?(@record) return false if !@user.owned? @record end @record = @record.class end user.can? action, @record.to_s end def method_missing(m, *args, &block_given) return authorize? m.to_s[0..-2] if m.to_s =~ /.*\?$/ super end def scope Pundit.policy_scope!(@user, record.class) end class Scope attr_reader :user, :scope def initialize(user, scope) @user = user @scope = scope end def resolve if @user.has_ownership?(scope) scope.where(user: @user) else scope end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
underworld-1.0.0 | app/policies/underworld/application_policy.rb |