Rails: Database records with custom route...? - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T08:44:54Zhttp://stackoverflow.com/feeds/question/786948http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/786948/rails-database-records-with-custom-route0Rails: Database records with custom route...?neezer2009-04-24T17:59:52Z2009-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(&: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#7870362Answer by John Topley for Rails: Database records with custom route...?John Topley2009-04-24T18:28:19Z2009-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 < ActiveRecord::Base
named_scope :by_month,
lambda { |month| { :conditions => ['MONTH(recorded_on) = ?',
month] }}
named_scope :by_year,
lambda { |year| { :conditions => ['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 => 'targets',
:requirements => { :year => /\d{4}/, :month => /\d{1,2}/ },
:conditions => { :method => :get }
</code></pre>
<p>—You can use this route in your view like this:</p>
<pre><code><%= link_to 'Show April 2009 Targets', targets_by_month_path('2009', '04') %>
</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>