2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
2017-05-02 00:14:47 +00:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: tags
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# name :string default(""), not null
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
#
|
2016-11-15 15:56:29 +00:00
|
|
|
|
2016-11-04 18:12:59 +00:00
|
|
|
class Tag < ApplicationRecord
|
2016-11-05 14:20:05 +00:00
|
|
|
has_and_belongs_to_many :statuses
|
|
|
|
|
2017-03-05 17:08:19 +00:00
|
|
|
HASHTAG_RE = /(?:^|[^\/\)\w])#([[:word:]_]*[[:alpha:]_][[:word:]_]*)/i
|
2016-11-04 18:12:59 +00:00
|
|
|
|
|
|
|
validates :name, presence: true, uniqueness: true
|
2016-11-05 14:20:05 +00:00
|
|
|
|
|
|
|
def to_param
|
|
|
|
name
|
|
|
|
end
|
2017-03-22 01:32:27 +00:00
|
|
|
|
|
|
|
class << self
|
2017-06-06 14:07:06 +00:00
|
|
|
def search_for(term, limit = 5)
|
|
|
|
pattern = sanitize_sql_like(term) + '%'
|
|
|
|
Tag.where('name like ?', pattern).order(:name).limit(limit)
|
2017-03-22 01:32:27 +00:00
|
|
|
end
|
|
|
|
end
|
2016-11-04 18:12:59 +00:00
|
|
|
end
|