summaryrefslogtreecommitdiffstats
path: root/lib/redmine/safe_attributes.rb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2010-12-12 13:11:53 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2010-12-12 13:11:53 +0000
commit3409333522a76ade39db41124df596b2b95eccc0 (patch)
treeb1d471fd77ea8fe94d0a9b1ec930e1969e82cd6c /lib/redmine/safe_attributes.rb
parent8407db985475efb8e5892b8fa325be01e125ff3f (diff)
downloadredmine-3409333522a76ade39db41124df596b2b95eccc0.tar.gz
redmine-3409333522a76ade39db41124df596b2b95eccc0.zip
Makes issue safe_attributes extensible (#6000).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4491 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/redmine/safe_attributes.rb')
-rw-r--r--lib/redmine/safe_attributes.rb75
1 files changed, 75 insertions, 0 deletions
diff --git a/lib/redmine/safe_attributes.rb b/lib/redmine/safe_attributes.rb
new file mode 100644
index 000000000..6f87a233c
--- /dev/null
+++ b/lib/redmine/safe_attributes.rb
@@ -0,0 +1,75 @@
+# Redmine - project management software
+# Copyright (C) 2006-2010 Jean-Philippe Lang
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+
+module Redmine
+ module SafeAttributes
+ def self.included(base)
+ base.extend(ClassMethods)
+ end
+
+ module ClassMethods
+ # Declares safe attributes
+ # An optional Proc can be given for conditional inclusion
+ #
+ # Example:
+ # safe_attributes 'title', 'pages'
+ # safe_attributes 'isbn', :if => {|book, user| book.author == user}
+ def safe_attributes(*args)
+ @safe_attributes ||= []
+ if args.empty?
+ @safe_attributes
+ else
+ options = args.last.is_a?(Hash) ? args.pop : {}
+ @safe_attributes << [args, options]
+ end
+ end
+ end
+
+ # Returns an array that can be safely set by user or current user
+ #
+ # Example:
+ # book.safe_attributes # => ['title', 'pages']
+ # book.safe_attributes(book.author) # => ['title', 'pages', 'isbn']
+ def safe_attribute_names(user=User.current)
+ names = []
+ self.class.safe_attributes.collect do |attrs, options|
+ if options[:if].nil? || options[:if].call(self, user)
+ names += attrs.collect(&:to_s)
+ end
+ end
+ names.uniq
+ end
+
+ # Returns a hash with unsafe attributes removed
+ # from the given attrs hash
+ #
+ # Example:
+ # book.delete_unsafe_attributes({'title' => 'My book', 'foo' => 'bar'})
+ # # => {'title' => 'My book'}
+ def delete_unsafe_attributes(attrs, user=User.current)
+ safe = safe_attribute_names(user)
+ attrs.dup.delete_if {|k,v| !safe.include?(k)}
+ end
+
+ # Sets attributes from attrs that are safe
+ # attrs is a Hash with string keys
+ def safe_attributes=(attrs, user=User.current)
+ return unless attrs.is_a?(Hash)
+ self.attributes = delete_unsafe_attributes(attrs, user)
+ end
+ end
+end