I have this coupon form

    <%form_for(:download,:download,:url=>{:controller=>"coupons",:action=>"verifycoupon"},:remote=>true) do |f| %>
    <%=text_field :download,:code%>
    <%=f.submit "verify"%>
    <%end%>

and after validating the code on the controller's action i have a confirmation like:

render :update do |page|
    page.alert "OK"
end

Now I want to send a file to the browser with the send_file instruction but nothing seems to happen

send_file("/path/to/my/file.extension")

and in the log I can see

"Sent file /path/to/my/file.extension (0.1ms)"

I was wondering if there's something like

render :update do |page|
   page.send_file("/path/to/my/file.extension")
end

 

#### Update #######

my Controller's action looks something like

def verifycoupon
   code = Code.find(params[:download][:code])
   if code
     if code.is_active?
     render :update do |page|
        page.alert "ok"
     end
       send_file("/path/to/my/file.extension")
     else
       render :update do |page|
          page.alert "this code has already been used"
       end
     end
   else
   render :update do |page|
     page.alert "Code does't exist"
   end
   end
end
link|improve this question

56% accept rate
Thanks, now I'll leave it there, its just something basic :) – Mr_Nizzle May 16 '11 at 15:49
feedback

2 Answers

up vote 2 down vote accepted

I've heard that the solution is to send a redirect to an end-point where does the send_file back from Ajax.

So, Ajax Request -> Server -> Response -> Redirect -> Client -> request which downloads -> you stay on the same page.

def show
  # if javascript, then redirect to file_sender
end

def file_sender
  # Send file from here.
end

See here http://anaphoral.blogspot.com/2009/03/sendfile-or-senddata-in-linktoremote.html

link|improve this answer
Now, how can i protect the file_sender action? like under the protected statemen, because if I put the file_sender action under the protected statement i can't do the page.redirect_to :action=>"file_sender" – Mr_Nizzle May 16 '11 at 15:42
1  
Why dont you make it a public facing endpoint but provide the same before_filter authentication/protection you provide to the "show" action? – Aditya Sanghi May 16 '11 at 16:08
That could be a solution, thanks. – Mr_Nizzle May 16 '11 at 16:22
feedback

Where to you call sendfile? I have a controller action like this:

def show
  # ... skipped initalization of requestedfile
  if File.exists?(requestedfile)
    send_file(requestedfile, :type => "application/pdf", :disposition => "inline"
  end
end

Works fine for me.

link|improve this answer
The problem is I'm trying to use send_file in a remote function called from a remote form_for – Mr_Nizzle May 16 '11 at 15:28
Well, maybe it would be good to update the question to be more clear on this. – jhwist May 16 '11 at 15:34
There's the update but i think i found the right answer on Aditya Sanghi's answer – Mr_Nizzle May 16 '11 at 15:39
feedback

Your Answer

 
or
required, but never shown

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