45 lines
1.3 KiB
Ruby
45 lines
1.3 KiB
Ruby
# encoding: utf-8
|
|
|
|
module Slug
|
|
|
|
CHAR_FILTER_REGEXP = /[:\/\?#\[\]@!\$&'\(\)\*\+,;=_\.~%\\`^\s|\{\}"<>]+/ # :/?#[]@!$&'()*+,;=_.~%\`^|{}"<>
|
|
|
|
def self.for(string, default = 'topic')
|
|
slug = case (SiteSetting.slug_generation_method || :ascii).to_sym
|
|
when :ascii then self.ascii_generator(string)
|
|
when :encoded then self.encoded_generator(string)
|
|
when :none then self.none_generator(string)
|
|
end
|
|
# Reject slugs that only contain numbers, because they would be indistinguishable from id's.
|
|
slug = (slug =~ /[^\d]/ ? slug : '')
|
|
slug.blank? ? default : slug
|
|
end
|
|
|
|
def self.sanitize(string)
|
|
self.encoded_generator(string)
|
|
end
|
|
|
|
private
|
|
|
|
def self.ascii_generator(string)
|
|
string.tr("'", "")
|
|
.parameterize
|
|
.tr("_", "-")
|
|
end
|
|
|
|
def self.encoded_generator(string)
|
|
# This generator will sanitize almost all special characters,
|
|
# including reserved characters from RFC3986.
|
|
# See also URI::REGEXP::PATTERN.
|
|
string.strip
|
|
.gsub(/\s+/, '-')
|
|
.gsub(CHAR_FILTER_REGEXP, '')
|
|
.gsub(/\A-+|-+\z/, '') # remove possible trailing and preceding dashes
|
|
.squeeze('-') # squeeze continuous dashes to prettify slug
|
|
end
|
|
|
|
def self.none_generator(string)
|
|
''
|
|
end
|
|
end
|