1
0
Fork 0
mirror of https://github.com/varvet/pundit.git synced 2022-11-09 12:30:11 -05:00
varvet--pundit/lib/pundit.rb
2014-04-22 22:02:03 -06:00

92 lines
2.2 KiB
Ruby

require "pundit/version"
require "pundit/policy_finder"
require "active_support/concern"
require "active_support/core_ext/string/inflections"
require "active_support/core_ext/object/blank"
require "active_support/dependencies/autoload"
module Pundit
class NotAuthorizedError < StandardError
attr_accessor :query, :record, :policy
end
class AuthorizationNotPerformedError < StandardError; end
class NotDefinedError < StandardError; end
extend ActiveSupport::Concern
class << self
def policy_scope(user, scope)
policy_scope = PolicyFinder.new(scope).scope
policy_scope.new(user, scope).resolve if policy_scope
end
def policy_scope!(user, scope)
PolicyFinder.new(scope).scope!.new(user, scope).resolve
end
def policy(user, record)
policy = PolicyFinder.new(record).policy
policy.new(user, record) if policy
end
def policy!(user, record)
PolicyFinder.new(record).policy!.new(user, record)
end
end
included do
if respond_to?(:helper_method)
helper_method :policy_scope
helper_method :policy
helper_method :pundit_user
end
if respond_to?(:hide_action)
hide_action :policy_scope
hide_action :policy_scope=
hide_action :policy
hide_action :policy=
hide_action :authorize
hide_action :verify_authorized
hide_action :verify_policy_scoped
hide_action :pundit_user
end
end
def verify_authorized
raise AuthorizationNotPerformedError unless @_policy_authorized
end
def verify_policy_scoped
raise AuthorizationNotPerformedError unless @_policy_scoped
end
def authorize(record, query=nil)
query ||= params[:action].to_s + "?"
@_policy_authorized = true
policy = policy(record)
unless policy.public_send(query)
error = NotAuthorizedError.new("not allowed to #{query} this #{record}")
error.query, error.record, error.policy = query, record, policy
raise error
end
true
end
def policy_scope(scope)
@_policy_scoped = true
@policy_scope or Pundit.policy_scope!(pundit_user, scope)
end
attr_writer :policy_scope
def policy(record)
@policy or Pundit.policy!(pundit_user, record)
end
attr_writer :policy
def pundit_user
current_user
end
end