Module: Sluggable

Extended by:
ActiveSupport::Concern
Defined in:
lib/sluggable_tkb.rb

Defined Under Namespace

Modules: ClassMethods

Instance Method Summary collapse

Instance Method Details

#append_suffix(str, count) ⇒ Object



24
25
26
27
28
29
30
31
# File 'lib/sluggable_tkb.rb', line 24

def append_suffix(str, count)
  if str.split('-').last.to_i != 0
    return str.split('-').slice(0...-1).join('-') + "-" + count.to_s
  else
    return str + "-" + count.to_s
  end

end

#generate_slug!Object



12
13
14
15
16
17
18
19
20
21
22
# File 'lib/sluggable_tkb.rb', line 12

def generate_slug!
  the_slug = to_slug(self.send(self.slug_column.to_sym)) #on utilise le col_name (self.title pour post par exemple)
  obj = self.class.find_by slug: the_slug #self.class Remplace Post ou Category, etc. obj remplace post.
  count = 2
  while obj && obj != self
    the_slug = append_suffix(the_slug, count)
    obj = self.class.find_by slug: the_slug
    count += 1
  end
  self.slug = the_slug.downcase
end

#to_paramObject



40
41
42
# File 'lib/sluggable_tkb.rb', line 40

def to_param
  self.slug
end

#to_slug(name) ⇒ Object



33
34
35
36
37
38
# File 'lib/sluggable_tkb.rb', line 33

def to_slug(name)
  str = name.strip #retire les espaces début et fin
  str.gsub! /\s*[^A-Za-z0-9]\s*/, '-'
  str.gsub! /-+/, '-'
  str.downcase #return the string car gsub va retourner nil si rien ne correspond au resex
end