Rails: Database records with custom route...? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T08:44:54Z http://stackoverflow.com/feeds/question/786948 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/786948/rails-database-records-with-custom-route 0 Rails: Database records with custom route...? neezer 2009-04-24T17:59:52Z 2009-04-24T21:59:32Z <p>I have a model, target, that holds a number of records that are timestamped. On the corresponding controller, I list the months of those records by doing the following:</p> <p>In <strong>models/target.rb</strong></p> <pre><code>def month self.recorded_on.strftime('%B') end </code></pre> <p>In <strong>controllers/targets_controller.rb</strong></p> <pre><code>@records = Target.find :all </code></pre> <p>In <strong>views/targets/index.html.haml</strong></p> <pre><code>%ul - @records.group_by(&amp;:month).sort.each do |month, data| %li= link_to month, '' </code></pre> <p>That all works great for listing the available months for the records that I have. Next, I want to be able to click on the month and get a report of all the records for that month, at the following path generated with year and the month: <strong>/targets/2009/04</strong></p> <p>How would I do this?</p> http://stackoverflow.com/questions/786948/rails-database-records-with-custom-route/787036#787036 2 Answer by John Topley for Rails: Database records with custom route...? John Topley 2009-04-24T18:28:19Z 2009-04-24T21:59:32Z <p>Add some <a href="http://railscasts.com/episodes/108-named-scope" rel="nofollow">named scopes</a> to your <code>Target</code> model to support finding by year and by month number. Something like:</p> <pre><code>class Target &lt; ActiveRecord::Base named_scope :by_month, lambda { |month| { :conditions =&gt; ['MONTH(recorded_on) = ?', month] }} named_scope :by_year, lambda { |year| { :conditions =&gt; ['YEAR(recorded_on) = ?', year] }} . . . end </code></pre> <p>(Note that the conditions here are using MySQL syntax.)</p> <p>Assuming you're using RESTful routes, set up a <a href="http://railscasts.com/episodes/34-named-routes" rel="nofollow">named route</a> like the one below in your <code>config/routes.rb</code> file (make sure it's declared before the default route):</p> <pre><code>map.targets_by_month '/targets/:year/:month', :controller =&gt; 'targets', :requirements =&gt; { :year =&gt; /\d{4}/, :month =&gt; /\d{1,2}/ }, :conditions =&gt; { :method =&gt; :get } </code></pre> <p>&mdash;You can use this route in your view like this:</p> <pre><code>&lt;%= link_to 'Show April 2009 Targets', targets_by_month_path('2009', '04') %&gt; </code></pre> <p>(Note that the leading zero for the month is optional because of the <code>:requirements</code> regular expression in the named route defined above)</p> <p>Finally, in your <code>TargetsController</code>, set up the <code>index</code> action to use the named_scopes defined earlier:</p> <pre><code>def index @records = Target.by_year(params[:year]).by_month(params[:month]) . . . end </code></pre>