fix permissions filter

git-svn-id: https://dev.finn.de/svn/cockpit/branches/reporting_merge@1669 7926756e-e54e-46e6-9721-ed318f58905e
pull/6827/head
rkh 14 years ago
parent 52cf11d773
commit 38c86fd549
  1. 23
      app/models/cost_query/filter/permission_filter.rb
  2. 22
      app/models/cost_query/sql_statement.rb

@ -6,24 +6,25 @@ class CostQuery::Filter::PermissionFilter < CostQuery::Filter::Base
initialize_query_with { |query| query.filter self.to_s.demodulize.to_sym } initialize_query_with { |query| query.filter self.to_s.demodulize.to_sym }
def permission_statement(permission) def permission_statement(permission)
User.current.allowed_for(permission).gsub(/(user|project)s?\.id/, 'entries.\1_id') User.current.allowed_for(permission).gsub(/(user|project)s?\.id/, '\1_id')
end end
def permission_for(type) def permission_for(type)
"(entries.type != '#{type.capitalize}Entry' " \ "(#{permission_statement :"view_own_#{type}_entries"} " \
"OR #{permission_statement :"view_own_#{type}_entries"} " \
"OR #{permission_statement :"view_#{type}_entries"})" "OR #{permission_statement :"view_#{type}_entries"})"
end end
def display_costs
"(#{permission_statement :view_hourly_rates} " \
"AND #{permission_statement :view_cost_rates}) OR (#{permission_statement :view_own_hourly_rate})"
end
def sql_statement def sql_statement
super.tap do |query| super.tap do |query|
if User.current.admin? query.default_select :display_costs => 'sum(display_costs)'
query.default_select :display_costs => '1' query.from.each_subselect do |sub|
else sub.where permission_for(sub == query.from.first ? 'time' : 'cost')
query.where permission_for('time') sub.default_select :display_costs => switch(display_costs => '1', :else => 0)
query.where permission_for('cost')
query.default_select :display_costs => "(#{permission_statement :view_hourly_rates} " \
"AND #{permission_statement :view_cost_rates}) OR (#{permission_statement :view_own_hourly_rate})"
end end
end end
end end

@ -1,4 +1,24 @@
class CostQuery::SqlStatement class CostQuery::SqlStatement
class Union
attr_accessor :first, :second, :as
def initialize(first, second, as = nil)
@first, @second, @as = first, second, as
end
def to_s
"((#{first}) UNION (#{second}))#{" AS #{as}" if as}"
end
def each_subselect
yield first
yield second
end
def gsub(*args, &block)
to_s.gsub(*args, &block)
end
end
include CostQuery::QueryUtils include CostQuery::QueryUtils
COMMON_FIELDS = %w[ COMMON_FIELDS = %w[
@ -94,7 +114,7 @@ class CostQuery::SqlStatement
# @param [CostQuery::SqlStatement] other Second part of the union # @param [CostQuery::SqlStatement] other Second part of the union
# @return [String] The sql query. # @return [String] The sql query.
def union(other, as = nil) def union(other, as = nil)
"((#{self}) UNION (#{other}))#{" AS #{as}" if as}" Union.new(self, other, as)
end end
## ##

Loading…
Cancel
Save