vote up 1 vote down star

Both my Rails model and controller code need to write files to the file system.

I would like to consolidate the logic into one method.

What's the best way to share this method across models and controllers?

Thanks!

flag

38% accept rate

3 Answers

vote up 2 vote down

I think the controller would defer the actual execution of writing a file to the file system to the model. While the controller is allowed to decide when to execute that code, it should not be responsible for it's implementation, So that code should really only be in the Model.

link|flag
thanks, matthew. the problem is, the model needs to write a file that contains the contents of a render call. in other words, i'm writing a static version to disk of the page rendered by Email::Show. what do you recommend? – Crashalot Aug 31 at 22:40
I'm not sure I completely understand what you are trying to accomplish, but it seems as though your controller knows what to write and that it should be written, which is fine. All you need to do is to use a File Writing method in your model that can take the data passed in from the controller and write it to the file system. If I am completely missing the point, let me know and I will do my best to correct my response. – Matthew Vines Aug 31 at 22:44
OK, that could work. My question is: why should the email model know file paths and how to write out files, yet not know how to generate URLs (say, the email required a special token and therefore unique URL for the user to click in order to delete the email)? In the URL case, I'm supposed (I think) generate the URL from the controller or from the view, and pass in necessary data from the email model. Yet with the file system, I'm passing in data to the model and supposed to generate the file path (and the file) within the email model. Does this make sense? – Crashalot Sep 1 at 6:44
First, I wouldn't let my model know where to save a file either, I would place that in a configuration file or something of that nature so that it can be changed without a recompile. – Matthew Vines Sep 1 at 14:22
Second, I think the difference is in defined responsibilities. The role of the controller is to take the request from the user and issue the appropriate commands to the model and view to achieve the desired results. It can be argued that part of those responsibilities is putting together the URL. Otherwise the Controller is your commander on the field, it knows what to do for a given user action, and issues orders to the other two layers, but it should not actually be concerned with how that work is done. – Matthew Vines Sep 1 at 14:29
show 3 more comments
vote up 1 vote down

If you really need to do this, you could place a module in /lib and include it where needed.

However, if possible you should have your model take care of it. If you can supply some more details, it would be easier to steer you in the correct direction.

link|flag
thanks, matthew. the problem is, the model needs to write a file that contains the contents of a render call. in other words, i'm writing a static version to disk of the page rendered by Email::Show. what do you recommend? – Crashalot Aug 31 at 22:40
I would recommend doing it as Radar recommends, and passing the string representation of the render as the parameter to the model, which would then write it out to the file. That way the controller decides what to render, the model decides what to do with it. – Jeff Whitmire Sep 1 at 14:42
thanks, guys. the problem has shifted: i'm handling an inbound message through ActionMailer::receive. this method gets invoked through a script run by qmail, when a certain user receives email. unfortunately, from within the ActionMailer model, i have no way of accessing render() to render_to_string() ... how can i write the static file to disk w/o duplicating code? – Crashalot Sep 1 at 18:50

Your Answer

Get an OpenID
or

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