I've got a model which has a video attached with Paperclip. After it saves I use the saved video to generate a thumbnail. I need to do this after every save, even when a new video hasn't been uploaded, because the user can change the time where the thumbnail is captured.

I am currently using after_post_process to do this, but it will only generate the thumbnail when uploading a file (this is a callback which is part of Paperclip).

I would ideally use an after_save callback like this:

after_save :save_thumbnail
def save_thumbnail
  #generate thumbnail...
  self.update_attributes(
    :thumbnail_file_name => File.basename(thumb), 
    :thumbnail_content_type => 'image/jpeg'
  )
end

Unfortunately update_attributes calls save, which then calls the before_save callback causing an infinite loop. Is there a simple way to circumvent this behaviour?

link|improve this question

feedback

4 Answers

up vote 1 down vote accepted

You could wrap it in a conditional, something like:

def save_thumbnail
  if File.basename(thumb) != thumbnail_file_name
    self.update_attributes(
      :thumbnail_file_name => File.basename(thumb), 
      :thumbnail_content_type => 'image/jpeg'
    )
  end
end

That way it would only run once.

link|improve this answer
Currently the thumbnail always has the same name as the video, so I'd have to encode the time in the thumbnail name, but that should work, thanks! – peterjwest Jul 13 '11 at 15:25
feedback

You can(and should) check if you actually need to update the thumbnail:

after_save :save_thumbnail
def save_thumbnail
  if capture_time_changed? #assuming capture_time contains time when the thumbnail has to be captured
    #generate thumbnail...
    self.update_attributes(
      :thumbnail_file_name => File.basename(thumb), 
      :thumbnail_content_type => 'image/jpeg'
    )
  end
end

Here you can read more about 'dirty' attributes: http://apidock.com/rails/ActiveRecord/Dirty

Although I'm not sure if it still can see the attribute changes in after_save. You can use a member variable to indicate changes in case it can't.

link|improve this answer
feedback

You can run it as a before_save instead.

After it has been validated, update the thumbnail, then let it go on to be saved, but just use the assignment methods

before_save :save_thumbnail
def save_thumbnail
  self.thumbnail_file_name = File.basename(thumb), 
  self.thumbnail_content_type = 'image/jpeg'
end

Since that won't call save, you wont recurse, but it will immediately be saved after the method exits.

Something like that should work, unless there is an explicit reason you need it in after save.

Since you are not updating a separate object, but the same one, this will save you a database call as well. This is How i do timestamps and things like that too.

link|improve this answer
1  
This doesn't work because the uploaded file won't have been processed by Paperclip yet, this is why I have been using after_post_process. – peterjwest Jul 13 '11 at 15:33
feedback

Rails 2:

Model.send(:create_without_callbacks)
Model.send(:update_without_callbacks)

Rails 3:

Vote.skip_callback(:save, :after, :add_points_to_user)

See this question:

How to skip ActiveRecord callbacks?

link|improve this answer
What if there are other callbacks that do need to be run? – loosecannon Jul 13 '11 at 15:33
This might well mess with Paperclip's callbacks, but useful nonetheless! Thanks. – peterjwest Jul 13 '11 at 15:34
feedback

Your Answer

 
or
required, but never shown

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