I have an action to generate pdfs with prawn

def savepdfs
  respond_to do |format|
    format.pdf {} # Create PDF file and saves in /pdf/print.pdf.
    logger.info ":::::::::::::::::  PDF COVER PAGE CREATED  :::::::::::::::::"
  end
end

I don't want to show the pdf to the user . Instead I just want to call this from another action

def mainaction
    #I want to call something like savepdfs(:format => :pdf)
end

How do I do this ?

link|improve this question

78% accept rate
And the result of your first action is return in your second action ? Why don't do a redirection ? – shingara Apr 8 '11 at 11:14
@shingara i commented savepdfs(:format => :pdf ) because it didn't work. If that had called the savepdfs i would have redirected. – Prabesh Shrestha Apr 8 '11 at 15:20
feedback

2 Answers

up vote 0 down vote accepted

Wrap it as a private controller method

def savepdfs
  respond_to do |format|
    format.pdf { generate_pdf } # Create PDF file and saves in /pdf/print.pdf.
    logger.info ":::::::::::::::::  PDF COVER PAGE CREATED  :::::::::::::::::"
  end
end

def mainaction
  generate_pdf
end

private

def generate_pdf
  # Create PDF file and saves in /pdf/print.pdf.
end
link|improve this answer
how do I create a pdf and save it from generate_pdf? – Prabesh Shrestha Apr 8 '11 at 15:18
the same way you do it from your action – fl00r Apr 8 '11 at 15:29
generating the pdf from the controller works . I though it should be done from the view only. Thanks. – Prabesh Shrestha Apr 11 '11 at 6:10
feedback

This is an XY Problem*. You don't want to call another action, you want to put business logic in the model where it belongs.

* http://www.perlmonks.org/index.pl?node_id=542341

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.