Module: FriendlyId::Slugged

Defined in:
lib/friendly_id/slugged.rb

Overview

Slugged Models

FriendlyId can use a separate column to store slugs for models which require some text processing.

For example, blog applications typically use a post title to provide the basis of a search engine friendly URL. Such identifiers typically lack uppercase characters, use ASCII to approximate UTF-8 character, and strip out other characters which may make them aesthetically unappealing or error-prone when used in a URL.

class Post < ActiveRecord::Base
  extend FriendlyId
  friendly_id :title, :use => :slugged
end

@post = Post.create(:title => "This is the first post!")
@post.friendly_id   # returns "this-is-the-first-post"
redirect_to @post   # the URL will be /posts/this-is-the-first-post

In general, use slugs by default unless you know for sure you don't need them. To activate the slugging functionality, use the Slugged module.

FriendlyId will generate slugs from a method or column that you specify, and store them in a field in your model. By default, this field must be named :slug, though you may change this using the slug_column configuration option. You should add an index to this column, and in most cases, make it unique. You may also wish to constrain it to NOT NULL, but this depends on your app's behavior and requirements.

Example Setup

# your model
class Post < ActiveRecord::Base
  extend FriendlyId
  friendly_id :title, :use => :slugged
  validates_presence_of :title, :slug, :body
end

# a migration
class CreatePosts < ActiveRecord::Migration
  def self.up
    create_table :posts do |t|
      t.string :title, :null => false
      t.string :slug, :null => false
      t.text :body
    end

    add_index :posts, :slug, :unique => true
  end

  def self.down
    drop_table :posts
  end
end

Working With Slugs

Formatting

By default, FriendlyId uses Active Support's paramaterize method to create slugs. This method will intelligently replace spaces with dashes, and Unicode Latin characters with ASCII approximations:

movie = Movie.create! :title => "Der Preis fürs Überleben"
movie.slug #=> "der-preis-furs-uberleben"

Uniqueness

When you try to insert a record that would generate a duplicate friendly id, FriendlyId will append a sequence to the generated slug to ensure uniqueness:

car = Car.create :title => "Peugot 206"
car2 = Car.create :title => "Peugot 206"

car.friendly_id #=> "peugot-206"
car2.friendly_id #=> "peugot-206--2"

Sequence Separator - The Two Dashes

By default, FriendlyId uses two dashes to separate the slug from a sequence.

You can change this with the sequence_separator configuration option.

Column or Method?

FriendlyId always uses a method as the basis of the slug text - not a column. It first glance, this may sound confusing, but remember that Active Record provides methods for each column in a model's associated table, and that's what FriendlyId uses.

Here's an example of a class that uses a custom method to generate the slug:

class Person < ActiveRecord::Base
  friendly_id :name_and_location
  def name_and_location
    "#{name} from #{location}"
  end
end

bob = Person.create! :name => "Bob Smith", :location => "New York City"
bob.friendly_id #=> "bob-smith-from-new-york-city"

Providing Your Own Slug Processing Method

You can override #normalize_friendly_id in your model for total control over the slug format.

Deciding When to Generate New Slugs

Overriding #should_generate_new_friendly_id? lets you control whether new friendly ids are created when a model is updated. For example, if you only want to generate slugs once and then treat them as read-only:

class Post < ActiveRecord::Base
  extend FriendlyId
  friendly_id :title, :use => :slugged

  def should_generate_new_friendly_id?
    new_record?
  end
end

post = Post.create!(:title => "Hello world!")
post.slug #=> "hello-world"
post.title = "Hello there, world!"
post.save!
post.slug #=> "hello-world"

Locale-specific Transliterations

Active Support's parameterize uses transliterate, which in turn can use I18n's transliteration rules to consider the current locale when replacing Latin characters:

# config/locales/de.yml
de:
  i18n:
    transliterate:
      rule:
        ü: "ue"
        ö: "oe"
        etc...

movie = Movie.create! :title => "Der Preis fürs Überleben"
movie.slug #=> "der-preis-fuers-ueberleben"

This functionality was in fact taken from earlier versions of FriendlyId.

Gotchas: Common Problems

Slugs That Begin With Numbers

Ruby's `to_i` function casts strings to integers in such a way that 23abc.to_i returns 23. Because FriendlyId falls back to finding by numeric id, this means that if you attempt to find a record with a non-existant slug, and that slug begins with a number, your find will probably return the wrong record.

There are two fairly simple ways to avoid this:

  • Use validations to ensure that slugs don't begin with numbers.

  • Use explicit finders like find_by_id to always find by the numeric id, or find_by_slug to always find using the friendly id.

Concurrency Issues

FriendlyId uses a before_validation callback to generate and set the slug. This means that if you create two model instances before saving them, it's possible they will generate the same slug, and the second save will fail.

This can happen in two fairly normal cases: the first, when a model using nested attributes creates more than one record for a model that uses friendly_id. The second, in concurrent code, either in threads or multiple processes.

To solve the nested attributes issue, I recommend simply avoiding them when creating more than one nested record for a model that uses FriendlyId. See this Github issue for discussion.

To solve the concurrency issue, I recommend locking the model's table against inserts while when saving the record. See this Github issue for discussion.

Defined Under Namespace

Modules: Configuration

Class Method Summary (collapse)

Instance Method Summary (collapse)

Class Method Details

+ (Object) included(model_class)

Sets up behavior and configuration options for FriendlyId's slugging feature.



199
200
201
202
203
204
205
206
207
# File 'lib/friendly_id/slugged.rb', line 199

def self.included(model_class)
  model_class.friendly_id_config.instance_eval do
    self.class.send :include, Configuration
    self.slug_generator_class     ||= Class.new(SlugGenerator)
    defaults[:slug_column]        ||= 'slug'
    defaults[:sequence_separator] ||= '--'
  end
  model_class.before_validation :set_slug
end

Instance Method Details

- (Object) normalize_friendly_id(value)

Process the given value to make it suitable for use as a slug.

This method is not intended to be invoked directly; FriendlyId uses it internaly to process strings into slugs.

However, if FriendlyId's default slug generation doesn't suite your needs, you can override this method in your model class to control exactly how slugs are generated.

Example

class Person < ActiveRecord::Base
  friendly_id :name_and_location

  def name_and_location
    "#{name} from #{location}"
  end

  # Use default slug, but upper case and with underscores
  def normalize_friendly_id(string)
    super.upcase.gsub("-", "_")
  end
end

bob = Person.create! :name => "Bob Smith", :location => "New York City"
bob.friendly_id #=> "BOB_SMITH_FROM_NEW_YORK_CITY"

More Resources

You might want to look into Babosa, which is the slugging library used by FriendlyId prior to version 4, which offers some specialized functionality missing from Active Support.

Parameters:

  • value (#to_s)

    The value used as the basis of the slug.

Returns:

  • The candidate slug text, without a sequence.



244
245
246
# File 'lib/friendly_id/slugged.rb', line 244

def normalize_friendly_id(value)
  value.to_s.parameterize
end

- (Object) set_slug(normalized_slug = nil) (private)

Sets the slug. FIXME: This method sucks and the logic is pretty dubious.



272
273
274
275
276
277
278
# File 'lib/friendly_id/slugged.rb', line 272

def set_slug(normalized_slug = nil)
  if normalized_slug || should_generate_new_friendly_id?
    normalized_slug ||= normalize_friendly_id send(friendly_id_config.base)
    generator = friendly_id_config.slug_generator_class.new self, normalized_slug
    send "#{friendly_id_config.slug_column}=", generator.generate
  end
end

- (Boolean) should_generate_new_friendly_id?

Whether to generate a new slug.

You can override this method in your model if, for example, you only want slugs to be generated once, and then never updated.

Returns:

  • (Boolean)


252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
# File 'lib/friendly_id/slugged.rb', line 252

def should_generate_new_friendly_id?
  base       = send(friendly_id_config.base)
  slug_value = send(friendly_id_config.slug_column)

  # If the slug base is nil, and the slug field is nil, then we're going to
  # leave the slug column NULL.
  return false if base.nil? && slug_value.nil?
  # Otherwise, if this is a new record, we're definitely going to try to
  # create a new slug.
  return true if new_record?
  slug_base = normalize_friendly_id(base)
  separator = Regexp.escape friendly_id_config.sequence_separator
  # If the slug base (with and without sequence) is different from either the current
  # friendly id or the slug value, then we'll generate a new friendly_id.
  compare = (current_friendly_id || slug_value)
  slug_base != compare && slug_base != compare.try(:sub, /#{separator}[\d]*\z/, '')
end