2013-02-05 13:16:51 -06:00
|
|
|
# encoding: utf-8
|
2019-05-02 17:17:27 -05:00
|
|
|
# frozen_string_literal: true
|
2013-02-05 13:16:51 -06:00
|
|
|
|
|
|
|
module Slug
|
|
|
|
|
2016-10-12 14:44:26 -05:00
|
|
|
CHAR_FILTER_REGEXP = /[:\/\?#\[\]@!\$&'\(\)\*\+,;=_\.~%\\`^\s|\{\}"<>]+/ # :/?#[]@!$&'()*+,;=_.~%\`^|{}"<>
|
2017-10-03 05:52:24 -05:00
|
|
|
MAX_LENGTH = 255
|
2016-10-12 14:44:26 -05:00
|
|
|
|
2017-10-03 05:52:24 -05:00
|
|
|
def self.for(string, default = 'topic', max_length = MAX_LENGTH)
|
2018-04-17 13:44:43 -05:00
|
|
|
string = string.gsub(/:([\w\-+]+(?::t\d)?):/, '') if string.present? # strip emoji strings
|
|
|
|
|
2019-10-17 11:38:31 -05:00
|
|
|
if SiteSetting.slug_generation_method == 'encoded'
|
|
|
|
max_length = 9999 # do not truncate encoded slugs
|
|
|
|
end
|
|
|
|
|
2015-05-05 17:50:54 -05:00
|
|
|
slug =
|
|
|
|
case (SiteSetting.slug_generation_method || :ascii).to_sym
|
2015-04-13 09:50:41 -05:00
|
|
|
when :ascii then self.ascii_generator(string)
|
|
|
|
when :encoded then self.encoded_generator(string)
|
|
|
|
when :none then self.none_generator(string)
|
|
|
|
end
|
2017-10-03 05:52:24 -05:00
|
|
|
slug = self.prettify_slug(slug, max_length: max_length)
|
2019-12-16 18:34:20 -06:00
|
|
|
(slug.blank? || slug_is_only_numbers?(slug)) ? default : slug
|
2015-04-13 09:50:41 -05:00
|
|
|
end
|
|
|
|
|
2017-10-03 05:52:24 -05: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 03:52:48 -05:00
|
|
|
end
|
|
|
|
|
2015-04-13 09:50:41 -05:00
|
|
|
private
|
|
|
|
|
2019-12-16 18:34:20 -06:00
|
|
|
def self.slug_is_only_numbers?(slug)
|
|
|
|
(slug =~ /[^\d]/).blank?
|
|
|
|
end
|
|
|
|
|
2017-10-26 22:02:12 -05:00
|
|
|
def self.prettify_slug(slug, max_length:)
|
2019-12-03 19:22:29 -06:00
|
|
|
# Reject slugs that only contain numbers, because they would be indistinguishable from id's.
|
2019-12-16 18:34:20 -06:00
|
|
|
slug = (slug_is_only_numbers?(slug) ? '' : slug)
|
2019-12-03 19:22:29 -06:00
|
|
|
|
2017-10-26 22:02:12 -05:00
|
|
|
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 05:52:24 -05:00
|
|
|
end
|
|
|
|
|
2015-04-13 09:50:41 -05:00
|
|
|
def self.ascii_generator(string)
|
2019-04-29 11:29:45 -05:00
|
|
|
I18n.with_locale(SiteSetting.default_locale) do
|
|
|
|
string.tr("'", "").parameterize
|
|
|
|
end
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
2017-10-03 05:52:24 -05:00
|
|
|
def self.encoded_generator(string, downcase: true)
|
2015-05-04 06:48:37 -05:00
|
|
|
# This generator will sanitize almost all special characters,
|
|
|
|
# including reserved characters from RFC3986.
|
|
|
|
# See also URI::REGEXP::PATTERN.
|
2017-10-26 22:02:12 -05:00
|
|
|
string = string.strip
|
|
|
|
.gsub(/\s+/, '-')
|
|
|
|
.gsub(CHAR_FILTER_REGEXP, '')
|
|
|
|
|
2019-10-11 10:38:16 -05:00
|
|
|
string = string.downcase if downcase
|
|
|
|
|
|
|
|
CGI.escape(string)
|
2015-04-13 09:50:41 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.none_generator(string)
|
|
|
|
''
|
|
|
|
end
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|