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