2013-02-05 14:16:51 -05:00
|
|
|
# encoding: utf-8
|
|
|
|
|
|
|
|
module Slug
|
|
|
|
|
2016-10-12 15:44:26 -04:00
|
|
|
CHAR_FILTER_REGEXP = /[:\/\?#\[\]@!\$&'\(\)\*\+,;=_\.~%\\`^\s|\{\}"<>]+/ # :/?#[]@!$&'()*+,;=_.~%\`^|{}"<>
|
2017-10-03 06:52:24 -04:00
|
|
|
MAX_LENGTH = 255
|
2016-10-12 15:44:26 -04:00
|
|
|
|
2017-10-03 06:52:24 -04:00
|
|
|
def self.for(string, default = 'topic', max_length = MAX_LENGTH)
|
2018-04-17 14:44:43 -04:00
|
|
|
string = string.gsub(/:([\w\-+]+(?::t\d)?):/, '') if string.present? # strip emoji strings
|
|
|
|
|
2017-07-27 21:20:09 -04:00
|
|
|
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
|
2015-04-13 10:50:41 -04:00
|
|
|
# Reject slugs that only contain numbers, because they would be indistinguishable from id's.
|
|
|
|
slug = (slug =~ /[^\d]/ ? slug : '')
|
2017-10-03 06:52:24 -04:00
|
|
|
slug = self.prettify_slug(slug, max_length: max_length)
|
2015-04-13 10:50:41 -04:00
|
|
|
slug.blank? ? default : slug
|
|
|
|
end
|
|
|
|
|
2017-10-03 06:52:24 -04:00
|
|
|
def self.sanitize(string, downcase: false, max_length: MAX_LENGTH)
|
|
|
|
slug = self.encoded_generator(string, downcase: downcase)
|
|
|
|
self.prettify_slug(slug, max_length: max_length)
|
2015-05-13 04:52:48 -04:00
|
|
|
end
|
|
|
|
|
2015-04-13 10:50:41 -04:00
|
|
|
private
|
|
|
|
|
2017-10-26 23:02:12 -04:00
|
|
|
def self.prettify_slug(slug, max_length:)
|
|
|
|
slug
|
|
|
|
.tr("_", "-")
|
|
|
|
.truncate(max_length, omission: '')
|
|
|
|
.squeeze('-') # squeeze continuous dashes to prettify slug
|
|
|
|
.gsub(/\A-+|-+\z/, '') # remove possible trailing and preceding dashes
|
2017-10-03 06:52:24 -04:00
|
|
|
end
|
|
|
|
|
2015-04-13 10:50:41 -04:00
|
|
|
def self.ascii_generator(string)
|
2017-10-26 05:09:00 -04:00
|
|
|
string.tr("'", "").parameterize
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2017-10-03 06:52:24 -04:00
|
|
|
def self.encoded_generator(string, downcase: true)
|
2015-05-04 07:48:37 -04:00
|
|
|
# This generator will sanitize almost all special characters,
|
|
|
|
# including reserved characters from RFC3986.
|
|
|
|
# See also URI::REGEXP::PATTERN.
|
2017-10-26 23:02:12 -04:00
|
|
|
string = string.strip
|
|
|
|
.gsub(/\s+/, '-')
|
|
|
|
.gsub(CHAR_FILTER_REGEXP, '')
|
|
|
|
|
|
|
|
downcase ? string.downcase : string
|
2015-04-13 10:50:41 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.none_generator(string)
|
|
|
|
''
|
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|