2016-11-15 16:56:29 +01:00
|
|
|
# frozen_string_literal: true
|
2017-05-02 02:14:47 +02: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 16:56:29 +01:00
|
|
|
|
2016-11-04 19:12:59 +01:00
|
|
|
class Tag < ApplicationRecord
|
2016-11-05 15:20:05 +01:00
|
|
|
has_and_belongs_to_many :statuses
|
|
|
|
|
2017-03-05 18:08:19 +01:00
|
|
|
HASHTAG_RE = /(?:^|[^\/\)\w])#([[:word:]_]*[[:alpha:]_][[:word:]_]*)/i
|
2016-11-04 19:12:59 +01:00
|
|
|
|
|
|
|
validates :name, presence: true, uniqueness: true
|
2016-11-05 15:20:05 +01:00
|
|
|
|
|
|
|
def to_param
|
|
|
|
name
|
|
|
|
end
|
2017-03-22 02:32:27 +01:00
|
|
|
|
|
|
|
class << self
|
2017-06-06 16:07:06 +02:00
|
|
|
def search_for(term, limit = 5)
|
|
|
|
pattern = sanitize_sql_like(term) + '%'
|
|
|
|
Tag.where('name like ?', pattern).order(:name).limit(limit)
|
2017-03-22 02:32:27 +01:00
|
|
|
end
|
|
|
|
end
|
2016-11-04 19:12:59 +01:00
|
|
|
end
|