vote up 2 vote down star

I'm writing a model that handles user input from a text area. Following the advice from http://blog.caboo.se/articles/2008/8/25/sanitize-your-users-html-input, I'm cleaning up the input in the model before saving to database, using the before_validate callback.

The relevant parts of my model look like this:

include ActionView::Helpers::SanitizeHelper

class Post < ActiveRecord::Base {
  before_validation :clean_input

  ...

  protected

  def clean_input
    self.input = sanitize(self.input, :tags => %w(b i u))
  end
end

Needless to say, this doesn't work. I get the following error when I try and save a new Post.

undefined method `white_list_sanitizer' for #<Class:0xdeadbeef>

Apparently, SanitizeHelper creates an instance of HTML::WhiteListSanitizer, but when I mix it into my model it can't find HTML::WhiteListSanitizer. Why? What can I do about this to fix it?

flag

2 Answers

vote up 4 vote down check

Just change the first line as follows :

  include ActionView::Helpers

that will make it works.

link|flag
couldn't have said it better myself – Tilendor Jan 29 at 0:09
Thanks. I got it to work by moving the include to inside of the class definition. – O. Frabjous-Dey Jan 29 at 1:00
vote up 1 vote down

Alfreddd is right. This behavior seems to have changed with a recent version of actionpack.

Also, the include must be moved within the class definition, or many, many things will break.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.