Project

General

Profile

Download (6.85 KB) Statistics
| Branch: | Tag: | Revision:
class Authorizer
include AuthorizerCache

attr_reader :user
attr_accessor :base_collection, :organization_ids, :location_ids

def initialize(user, options = {})
initialize_cache
@user = user
@base_collection = options.delete(:collection)
end

def can?(permission, subject = nil, cache = true)
return false if user.nil?
return true if user.admin?

if subject.nil?
user.permissions.where(:name => permission).present?
else
return collection_cache_lookup(subject, permission) if cache

find_collection(subject.class, :permission => permission).
where(:id => subject.id).any?
end
end

def find_collection(resource_class, options = {})
permission = options.delete :permission
Foreman::Logging.logger('permissions').debug "checking permission #{permission} for class #{resource_class}"

# retrieve all filters relevant to this permission for the user
base = user.filters.joins(:permissions).where(["#{Permission.table_name}.resource_type = ?", resource_name(resource_class)])
all_filters = permission.nil? ? base : base.where(["#{Permission.table_name}.name = ?", permission])

if Taxonomy.enabled_taxonomies.any?
organization_ids = allowed_organizations(resource_class)
Foreman::Logging.logger('permissions').debug "organization_ids: #{organization_ids.inspect}"
location_ids = allowed_locations(resource_class)
Foreman::Logging.logger('permissions').debug "location_ids: #{location_ids.inspect}"

organizations, locations, values = taxonomy_conditions(organization_ids, location_ids)
all_filters = all_filters.joins(taxonomy_join).where(["#{TaxableTaxonomy.table_name}.id IS NULL " +
"OR (#{organizations}) " +
"OR (#{locations})",
*values]).distinct
end

all_filters = all_filters.reorder(nil).to_a # load all records, so #empty? does not call extra COUNT(*) query
Foreman::Logging.logger('permissions').debug do
all_filters.map do |f|
"filter with role_id: #{f.role_id} limited: #{f.limited?} search: #{f.search} taxonomy_search: #{f.taxonomy_search}"
end.join("\n")
end

# retrieve hash of scoping data parsed from filters (by scoped_search), e.g. where clauses, joins
scope_components = build_filtered_scope_components(resource_class, all_filters, options)
if options[:joined_on]
# build scope for the "joined_on" object filtered by the associated "resource_class"
assoc_name = options[:association_name]
assoc_name ||= options[:joined_on].reflect_on_all_associations.find { |a| a.klass.base_class == resource_class.base_class }.name

scope = options[:joined_on].joins(assoc_name => scope_components[:includes]).readonly(false)

# allow user to add their own further clauses
scope_components[:where] << options[:where] if options[:where].present?

# apply every where clause to the scope consecutively
scope_components[:where].inject(scope) do |scope_build,where|
where.is_a?(Hash) ? scope_build.where(resource_class.table_name => where) : scope_build.where(where)
end
else
# build regular filtered scope for "resource_class"
scope = resource_class
if scope_components[:includes].present?
scope = scope.eager_load(scope_components[:includes])
end

scope = scope.joins(scope_components[:joins]).readonly(false)
scope_components[:where].inject(scope) { |scope_build,where| scope_build.where(where) }
end
end

def build_filtered_scope_components(resource_class, all_filters, options)
result = { where: [], includes: [], joins: [] }

if all_filters.empty? || (!@base_collection.nil? && @base_collection.empty?)
Foreman::Logging.logger('permissions').debug 'no filters found for given permission' if all_filters.empty?
Foreman::Logging.logger('permissions').debug 'base collection of objects is empty' if !@base_collection.nil? && @base_collection.empty?
result[:where] << (user.admin? ? '1=1' : '1=0')
return result
end

result[:where] << { id: base_ids } if @base_collection.present?
return result if all_filters.any?(&:unlimited?)

search_string = build_scoped_search_condition(all_filters.select(&:limited?))
find_options = ScopedSearch::QueryBuilder.build_query(resource_class.scoped_search_definition, search_string, options)
result[:where] << find_options[:conditions]
result[:includes].push(*find_options[:include])
result[:joins].push(*find_options[:joins])
result
end

def build_scoped_search_condition(filters)
raise ArgumentError if filters.blank?

strings = filters.map { |f| "(#{f.search_condition.blank? ? '1=1' : f.search_condition})" }
strings.join(' OR ')
end

private

def allowed_organizations(resource_class)
allowed_taxonomies(resource_class, 'organization')
end

def allowed_locations(resource_class)
allowed_taxonomies(resource_class, 'location')
end

# return array of taxonomies that were used by default scope
# if model does not support taxonomies, we return empty array indicating
# we should not filter on taxonomies
# otherwise we fetch it from model, if it's empty
# for admin user we return empty array which means don't limit
# for normal user we allow user taxonomies only
def allowed_taxonomies(resource_class, type)
taxonomy_ids = []
if resource_class.respond_to?("used_#{type}_ids")
taxonomy_ids = resource_class.send("used_#{type}_ids")
if taxonomy_ids.empty? && !user.try(:admin?)
taxonomy_ids = user.try("#{type}_ids")
end
end
taxonomy_ids
end

def taxonomy_join
"LEFT JOIN #{TaxableTaxonomy.table_name} ON " +
"(#{Filter.table_name}.id = #{TaxableTaxonomy.table_name}.taxable_id AND taxable_type = 'Filter') " +
"LEFT JOIN #{Taxonomy.table_name} ON " +
"(#{Taxonomy.table_name}.id = #{TaxableTaxonomy.table_name}.taxonomy_id)"
end

def taxonomy_conditions(organization_ids, location_ids)
values = []

organizations = "#{Taxonomy.table_name}.type = ?"
values.push 'Organization'
unless organization_ids.empty?
organizations += " AND #{Taxonomy.table_name}.id IN (?)"
values.push organization_ids
end

locations = "#{Taxonomy.table_name}.type = ?"
values.push 'Location'
unless location_ids.empty?
locations += " AND #{Taxonomy.table_name}.id IN (?)"
values.push location_ids
end

[organizations, locations, values]
end

def resource_name(klass)
Permission.resource_name(klass)
end

def base_ids
raise ArgumentError, 'you must set base_collection to get base_ids' if @base_collection.nil?

@base_ids ||= @base_collection.all? { |i| i.is_a?(Integer) } ? @base_collection : @base_collection.map(&:id)
end
end
(3-3/42)