Welcome to mirror list, hosted at ThFree Co, Russian Federation.

acts_as_taggable_on-tag.rb « models « app - github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dc5ece4cc5d6147c3084e84da9e6a19979fe3caa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# frozen_string_literal: true

module ActsAsTaggableOn
  class Tag

    self.include_root_in_json = false

    def self.tag_text_regexp
      @tag_text_regexp ||= "[[:word:]]\u055b\u055c\u055e\u058a_-"
    end

    def self.autocomplete(name)
      where("name LIKE ?", "#{name.downcase}%").order("name ASC")
    end

    def self.normalize(name)
      if name =~ /^#?<3/
        # Special case for love, because the world needs more love.
        '<3'
      elsif name
        name.gsub(/[^#{self.tag_text_regexp}]/, '').downcase
      end
    end
  end
end