I have a before_save in my Message model defined like this:

   class Message < ActiveRecord::Base
     before_save lambda { foo(publisher); bar }
   end

When I do:

   my_message.update_attributes(:created_at => ...)

foo and bar are executed.

Sometimes, I would like to update message's fields without executing foo and bar.

How could I update, for example, the created_at field (in the database) without executing foo and bar ?

link|improve this question

feedback

4 Answers

up vote 8 down vote accepted

In rails 3.1 you will use update_column.

Otherwise:

In general way, the most elegant way to bypass callbacks is the following:

class Message < ActiveRecord::Base
  cattr_accessor :skip_callbacks
  before_save lambda { foo(publisher); bar }, :unless => :skip_callbacks # let's say you do not want this callback to be triggered when you perform batch operations
end

Then, you can do:

Message.skip_callbacks = true # for multiple records
my_message.update_attributes(:created_at => ...)
Message.skip_callbacks = false # reset

Or, just for one record:

my_message.update_attributes(:created_at => ..., :skip_callbacks => true)

If you need it specifically for a Time attribute, then touch will do the trick as mentioned by @lucapette .

link|improve this answer
Looks like a good general solution! One question: What exactly Message.batch = true do ? – Misha Moroshko Aug 30 '11 at 14:16
It is just a flag. You can replace it by whatever you want. – jbescoyez Aug 30 '11 at 14:36
I've updated the example with a more explicit flag. – jbescoyez Aug 30 '11 at 14:45
See my latest update concerning rails 3.1 – jbescoyez Aug 31 '11 at 10:53
feedback

update_all won't trigger callbacks

my_message.update_all(:created_at => ...)
# OR
Message.update_all({:created_at => ...}, {:id => my_message.id})

http://apidock.com/rails/ActiveRecord/Base/update_all/class

link|improve this answer
my_message.update_all(:created_at => ...) issues a syntax error, but the second option works fine! – Misha Moroshko Aug 30 '11 at 14:14
feedback

Use the touch method. It's elegant and does exactly what you want

link|improve this answer
Looks like almost what I need. The new value of created_at in my case is not the current time. – Misha Moroshko Aug 30 '11 at 13:26
Oh, interesting :) – fl00r Aug 30 '11 at 13:30
@Misha you're obviously right. So you can use api.rubyonrails.org/classes/ActiveRecord/… :D – lucapette Aug 30 '11 at 13:35
@lucapette: How? The docs says that update_attribute invokes the callbacks. – Misha Moroshko Aug 30 '11 at 14:07
@Misha you can't. Thinking about your problem I was confusing callbacks with validation... So I think you should use update_all. By the way see edgeguides.rubyonrails.org/… maybe there is something i'm overlooking – lucapette Aug 30 '11 at 14:21
feedback

You could also make your before_save action conditional.

So add some field/instance variable, and set it only if you want to skip it, and check that in your method.

E.g.

before_save :do_foo_and_bar_if_allowed

attr_accessor :skip_before_save

def do_foo_and_bar_if_allowed
  unless @skip_before_save.present?
    foo(publisher)
    bar
  end
end

and then somewhere write

my_message.skip_before_save = true
my_message.update_attributes(:created_at => ...)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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