vote up 0 vote down star

So I am in a situation where I have to decide whether or not to have a separate controller for a particular piece of code. We have a home page that acts like a hub for the rest of the site. The page is accessible to all users (logged in as well as non-logged-in). I was thinking about having home as a separate controller and an action called index. Thinking about this situation, I started wondering if there are any rules or guidelines on this front.

My perception has been that if a code revolves around an entity, separation is needed. (Similar to REST guidelines) If the entity is a noun, it should be a controller. If the entity is a verb, it should probably be an action and should reside in the controller whose name is the same as that of the noun that the verb refers to. Some colleagues suggested that since this is one action, it should reside in the some existing controller and should be named home. I strongly disagreed, however, I could not find a trusted source that would back me up on this.

Would like to know your thoughts.

flag

65% accept rate

2 Answers

vote up 0 vote down

In this case I have to agree with your co-workers.

REST is a nice approach to take when dealing with resources, as you say. This allows you to create a consistent interface especially with a view to creating a web service.

However REST doesn't actually map too well to a web browser setting. You'll notice for example that even for resources your /edit and /new actions are just GET requests returning an HTML form pointing to the relevant RESTful action. 'edit' and 'new' aren't RESTy at all.

Similarly, the home page is generally a user-friendly amalgamation of various data, not suited to a RESTful interface. So either just stick an extra controller in with one action, or alternatively use an existing controller's 'list' action as the home page

link|flag
2  
"However REST doesn't actually map too well to a web browser setting." Wow, that's going to be a shock to Roy Fielding, the guy who came up with the name REST. He extracted the definition of REST based on the way successful web applications do work. The fact that ROR created these /edit and /new endpoints is a reflection of Rails misuse of REST not a lack of applicability. – Darrel Miller May 12 at 15:53
Well, that did not answer the question about when should one separate out code into a new controller. I see controllers as contextual objects and methods as their behavior. The question still remains that given a piece of code, how do I know that I need a new controller for this code or should this just be an action or set of actions in an existing controller. If one could give a solution along with reasons as to what to do in case of the home page (As given in the question) situation, this question would get answered automatically. – Chirantan May 13 at 4:38
@Darrel - I'm not saying that REST doesn't work on the web, it's a useful paradigm for HTTP services. But the way there's no reflection on the service without adding extra HTML forms is a problem when using it in web apps. Also, browsers only typically support the GET and POST verbs, with more workarounds needed to allow the other verbs to be used. – Gareth May 13 at 22:10
vote up -1 vote down

The problem starts with the phrase

If an entity is a verb

If you are attempting to produce a RESTful architecture, an entity cannot be a verb. The only verbs allowed if you are using HTTP are GET, PUT, POST, DELETE, HEAD, OPTIONS. All entities should be mapped to some noun and if you are trying to retrieve that entity you should be using the verb GET. Personally, I would map that to the method Get() on my controller but I don't know if Rails lets you do that.

link|flag
1  
The remarks directed at Gareth's response should be in the comments section, not the Answer. – Sailing Judo May 12 at 14:59
@Sailing Judo Happy? – Darrel Miller May 12 at 15:54

Your Answer

Get an OpenID
or

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