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

  • Home
  • SEARCH
  • 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 4329318
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T09:48:28+00:00 2026-05-21T09:48:28+00:00

Using ROR 2.3.8. Here’s my code: class CitiesController < ApplicationController def show … end

  • 0

Using ROR 2.3.8.

Here’s my code:

class CitiesController < ApplicationController  
  def show
    ...
  end

  def western
    @city = City.find(params[:id])

    @spots = Spot.paginate(
      :conditions => ["(city=? or state=?) and country=? and shop_type=?", "#{@city.name}", "#{@city.name}", @city.country, "Places"], 
      :page => params[:page], 
      :per_page => 20, 
      :order => 'rating_average DESC'
      )
  end

  def middle-east
    @city = City.find(params[:id])

    @spots = Spot.paginate(
      :conditions => ["(city=? or state=?) and country=? and shop_type=?", "#{@city.name}", "#{@city.name}", @city.country, "Food"], 
      :page => params[:page], 
      :per_page => 20, 
      :order => 'rating_average DESC'
      )
  end

  def asian
    @city = City.find(params[:id])

    @spots = Spot.paginate(
      :conditions => ["(city=? or state=?) and country=? and shop_type=?", "#{@city.name}", "#{@city.name}", @city.country, "Accommodation"], 
      :page => params[:page], 
      :per_page => 20, 
      :order => 'rating_average DESC'
      )
  end

end

I’ve created western.html.erb, middle-east.html.erb, asian.html.erb and _shops.html.erb.

So the first three are basically empty, but yields the _shops.html.erb in order not for me to recode the view layout.

Is there a better method in writing the controller?

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-21T09:48:28+00:00Added an answer on May 21, 2026 at 9:48 am

    The proper way to dry this up in Rails 2.3.X is a named scope in your model. Excessive/repeated querying in your Controller is a hint of a code smell. If you don’t believe me about this, Jamis Buck has got my back! http://weblog.jamisbuck.org/2006/10/18/skinny-controller-fat-model

    In your Spot model:

    # app/models/spot.rb
    named_scope :by_type, lambda { |city, type|
      {:conditions => ["(city=? or state=?) and country=? and shop_type=?", city.name, city.name, city.country, type] }
    }
    

    In your Cities Controller:

    #app/contollers/cities_controller.rb
    before_filter :fetch_city, :except => :show
    
    def western
      @spots = paginate_spots("Places")
    end
    
    ....
    
    private
    
    def fetch_city
      @city = City.find(params[:id])
    end
    
    def paginate_spots(type)
      Spot.by_type(@city,type).paginate(:page => params[:page], 
        :per_page => 20, 
        :order => 'rating_average DESC'
      )
    end
    

    What this is accomplishing is removing most of the querying logic out of the Controller. This is a good thing, as it allows you to find spots by city and type in other controllers if the need arises. Pagination is likely to be specific to your individual controller, so I tend to exclude it from the scopes inside models. If you want to build an API, you might limit to 50 instead of 20 for example and want to sort by a different method.

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

Sidebar

Related Questions

No related questions found

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.