Module: FriendlyId::Scoped
- Defined in:
- lib/friendly_id/scoped.rb
Overview
Unique Slugs by Scope
The Scoped module allows FriendlyId to generate unique slugs within a scope.
This allows, for example, two restaurants in different cities to have the slug
joes-diner
:
class Restaurant < ActiveRecord::Base
extend FriendlyId
belongs_to :city
friendly_id :name, :use => :scoped, :scope => :city
end
class City < ActiveRecord::Base
extend FriendlyId
has_many :restaurants
friendly_id :name, :use => :slugged
end
City.friendly.find("seattle").restaurants.friendly.find("joes-diner")
City.friendly.find("chicago").restaurants.friendly.find("joes-diner")
Without :scoped in this case, one of the restaurants would have the slug
joes-diner
and the other would have joes-diner-f9f3789a-daec-4156-af1d-fab81aa16ee5
.
The value for the :scope
option can be the name of a belongs_to
relation, or
a column.
Additionally, the :scope
option can receive an array of scope values:
class Cuisine < ActiveRecord::Base
extend FriendlyId
has_many :restaurants
friendly_id :name, :use => :slugged
end
class City < ActiveRecord::Base
extend FriendlyId
has_many :restaurants
friendly_id :name, :use => :slugged
end
class Restaurant < ActiveRecord::Base
extend FriendlyId
belongs_to :city
friendly_id :name, :use => :scoped, :scope => [:city, :cuisine]
end
All supplied values will be used to determine scope.
Finding Records by Friendly ID
If you are using scopes your friendly ids may not be unique, so a simple find like:
Restaurant.friendly.find("joes-diner")
may return the wrong record. In these cases it's best to query through the relation:
@city.restaurants.friendly.find("joes-diner")
Alternatively, you could pass the scope value as a query parameter:
Restaurant.where(:city_id => @city.id).friendly.find("joes-diner")
Finding All Records That Match a Scoped ID
Query the slug column directly:
Restaurant.where(:slug => "joes-diner")
Routes for Scoped Models
Recall that FriendlyId is a database-centric library, and does not set up any routes for scoped models. You must do this yourself in your application. Here's an example of one way to set this up:
# in routes.rb
resources :cities do
resources :restaurants
end
# in views
<%= link_to 'Show', [@city, @restaurant] %>
# in controllers
@city = City.friendly.find(params[:city_id])
@restaurant = @city.restaurants.friendly.find(params[:id])
# URLs:
http://example.org/cities/seattle/restaurants/joes-diner
http://example.org/cities/chicago/restaurants/joes-diner
Defined Under Namespace
Modules: Configuration
Class Method Summary (collapse)
-
+ (Object) included(model_class)
Sets up behavior and configuration options for FriendlyId's scoped slugs feature.
-
+ (Object) setup(model_class)
FriendlyId::Config.use will invoke this method when present, to allow loading dependent modules prior to overriding them when necessary.
Instance Method Summary (collapse)
- - (Object) scope_for_slug_generator private
- - (Object) serialized_scope
- - (Object) slug_generator private
Class Method Details
+ (Object) included(model_class)
Sets up behavior and configuration options for FriendlyId's scoped slugs feature.
114 115 116 117 118 |
# File 'lib/friendly_id/scoped.rb', line 114 def self.included(model_class) model_class.class_eval do friendly_id_config.class.send :include, Configuration end end |
+ (Object) setup(model_class)
FriendlyId::Config.use will invoke this method when present, to allow loading dependent modules prior to overriding them when necessary.
108 109 110 |
# File 'lib/friendly_id/scoped.rb', line 108 def self.setup(model_class) model_class.friendly_id_config.use :slugged end |
Instance Method Details
- (Object) scope_for_slug_generator (private)
124 125 126 127 128 129 130 131 |
# File 'lib/friendly_id/scoped.rb', line 124 def scope_for_slug_generator relation = self.class.unscoped.friendly friendly_id_config.scope_columns.each do |column| relation = relation.where(column => send(column)) end primary_key_name = self.class.primary_key relation.where(self.class.arel_table[primary_key_name].not_eq(send(primary_key_name))) end |
- (Object) serialized_scope
120 121 122 |
# File 'lib/friendly_id/scoped.rb', line 120 def serialized_scope friendly_id_config.scope_columns.sort.map { |column| "#{column}:#{send(column)}" }.join(",") end |
- (Object) slug_generator (private)
134 135 136 |
# File 'lib/friendly_id/scoped.rb', line 134 def slug_generator friendly_id_config.slug_generator_class.new(scope_for_slug_generator) end |