Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 331367
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T09:46:04+00:00 2026-05-12T09:46:04+00:00

I have an ImagesController that kicks off a non-trivial save operation. Here’s the high-level

  • 0

I have an ImagesController that kicks off a non-trivial save operation. Here’s the high-level background:

I have several different physical file types to deal with in my application. Each of these belongs_to a Binary. Files can be created, of course, and this process involves uploading a physical file to a temporary location, possibly validating the physical file (for size, type or whatever) and then, assuming no issues, moving the file to a permanent location before creating database records in the appropriate tables (let’s use images and binaries for the purpose of my question).

An Image belongs to a Binary and there’s a BinaryObserver that observes the Image class. In that observer class, there’s a before_create() method that tells the Binary class to upload the image’s physical file and save a related record in the database (with name, path, URI info, etc.).

One of the things that the observer class method does is test for a callback method in the original model, Image in this case. If the method exist and returns false for any reason, then I need for the save operation to fail. I can’t figure out how to do that properly.

In my controller’s create() method, I have:

if @image.save!
  flash[:notice] = "Successfully created image."
  redirect_to @image
else
  flash[:notice] = "Upload failed."
  render :action => 'new'
end

I can’t figure out how to trigger the else block. In my BinaryObserver class, I have:

def before_create( model )
    binary = Binary.new.upload( model.upload )

    if !model.respond_to?( 'before_file_save' ) || model.before_file_save()
        binary         = binary.store()
        model.binary_id = binary.id
        model.active    = 1

        return true
    else
        # binary.destroy()
        File.delete( File.join( Rails.root, binary.path ) )
        return false
    end
end

At the moment, Image.before_file_save() simply returns false. The physical file is getting deleted, but the save isn’t failing and my controller displays an error message that its show() method can’t find the image (which makes sense since the image wasn’t saved and the physical file was deleted).

How can I force the save operation to fail if the observer class’ before_create() method returns false?

Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T09:46:05+00:00Added an answer on May 12, 2026 at 9:46 am

    It’s my understanding that using the bang (!) syntax on Model methods will raise an exception if the operation fails. Obviously, the save isn’t failing, but the Observer needs to let your controller know something went wrong. I would follow the same AR way of doing it, with exceptions:

    begin
        @image.save!
        flash[:notice] = "Successfully created image."
        redirect_to @image
    rescue YourObserverException => e
        flash[:notice] = "Upload failed."
        render :action => 'new'
    end
    

    This would mean the observer doesn’t return true, but does raise YourObserverException if the upload fails (where you are returning false).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

have a problem. At first look at this HTML <div id=map style=background-image: url(map.png); width:
Have an issue with marshall and unmarshall readers and writers. So here it is.
have 2 questions : A computer with 32-bit address uses 2-level page table (9
Have searched the database but need to specifically sum(of hours flown or days off)in
Have a look at one of my websites: moskah.com The problem is that it
I have a simple form that uploads an image to a database. Using a
Have a network location that shows paths in the 8.3 short format. I need
Have data that has this kind of structure. Will be in ascending order by
Have data that has this kind of structure: $input = [ { animal: 'cat',
So I have a model called Image that belongs_to :user. Each user has a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.