diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2011-04-05 12:52:20 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2011-04-05 12:52:20 +0000 |
commit | da6c1492757a936ff18bb16112b00d3bfbfa4dcc (patch) | |
tree | 5a343b217da4eeff475776ce10adf64f29805ecb /vendor | |
parent | 405fc07e90730c550f1e690a446eda872fd8732d (diff) | |
download | redmine-da6c1492757a936ff18bb16112b00d3bfbfa4dcc.tar.gz redmine-da6c1492757a936ff18bb16112b00d3bfbfa4dcc.zip |
Makes activity providers use visible scopes.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5325 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'vendor')
-rw-r--r-- | vendor/plugins/acts_as_activity_provider/lib/acts_as_activity_provider.rb | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/vendor/plugins/acts_as_activity_provider/lib/acts_as_activity_provider.rb b/vendor/plugins/acts_as_activity_provider/lib/acts_as_activity_provider.rb index bbbf5814b..9d45ee3f2 100644 --- a/vendor/plugins/acts_as_activity_provider/lib/acts_as_activity_provider.rb +++ b/vendor/plugins/acts_as_activity_provider/lib/acts_as_activity_provider.rb @@ -36,7 +36,6 @@ module Redmine # We store these options in activity_provider_options hash event_type = options.delete(:type) || self.name.underscore.pluralize - options[:permission] = "view_#{self.name.underscore.pluralize}".to_sym unless options.has_key?(:permission) options[:timestamp] ||= "#{table_name}.created_on" options[:find_options] ||= {} options[:author_key] = "#{table_name}.#{options[:author_key]}" if options[:author_key].is_a?(Symbol) @@ -60,20 +59,31 @@ module Redmine if from && to cond.add(["#{provider_options[:timestamp]} BETWEEN ? AND ?", from, to]) end + if options[:author] return [] if provider_options[:author_key].nil? cond.add(["#{provider_options[:author_key]} = ?", options[:author].id]) end - cond.add(Project.allowed_to_condition(user, provider_options[:permission], options)) if provider_options[:permission] - scope_options[:conditions] = cond.conditions + if options[:limit] # id and creation time should be in same order in most cases scope_options[:order] = "#{table_name}.id DESC" scope_options[:limit] = options[:limit] end + scope = self + if provider_options.has_key?(:permission) + cond.add(Project.allowed_to_condition(user, provider_options[:permission] || :view_project, options)) + elsif respond_to?(:visible) + scope = scope.visible(user, options) + else + ActiveSupport::Deprecation.warn "acts_as_activity_provider with implicit :permission option is deprecated. Add a visible scope to the #{self.name} model or use explicit :permission option." + cond.add(Project.allowed_to_condition(user, "view_#{self.name.underscore.pluralize}".to_sym, options)) + end + scope_options[:conditions] = cond.conditions + with_scope(:find => scope_options) do - find(:all, provider_options[:find_options].dup) + scope.find(:all, provider_options[:find_options].dup) end end end |