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
#
2019-08-05 17:54:29 +00:00
# id :bigint(8) not null, primary key
# name :string default(""), not null
# created_at :datetime not null
# updated_at :datetime not null
# usable :boolean
# trendable :boolean
# listable :boolean
# reviewed_at :datetime
# requested_review_at :datetime
2019-08-18 01:45:51 +00:00
# last_status_at :datetime
2019-09-02 16:11:13 +00:00
# max_score :float
# max_score_at :datetime
2017-05-02 00:14:47 +00:00
#
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
2018-12-06 16:36:11 +00:00
has_and_belongs_to_many :accounts
2019-08-22 02:47:11 +00:00
has_many :favourite_tags , dependent : :destroy , inverse_of : :tag
2019-02-04 03:25:59 +00:00
has_many :featured_tags , dependent : :destroy , inverse_of : :tag
2019-08-30 08:02:41 +00:00
has_many :follow_tags , dependent : :destroy , inverse_of : :tag
2016-11-05 14:20:05 +00:00
2019-09-13 14:01:26 +00:00
HASHTAG_SEPARATORS = " _ \ u00B7 \ u200c "
HASHTAG_NAME_RE = " ([[:word:]_][[:word:] #{ HASHTAG_SEPARATORS } ]*[[:alpha:] #{ HASHTAG_SEPARATORS } ][[:word:] #{ HASHTAG_SEPARATORS } ]*[[:word:]_])|([[:word:]_]*[[:alpha:]][[:word:]_]*) "
HASHTAG_RE = / (?:^|[^ \/ \ ) \ w]) # ( #{ HASHTAG_NAME_RE } ) /i
2016-11-04 18:12:59 +00:00
2019-07-28 03:59:51 +00:00
validates :name , presence : true , format : { with : / \ A( #{ HASHTAG_NAME_RE } ) \ z /i }
2019-08-05 17:54:29 +00:00
validate :validate_name_change , if : - > { ! new_record? && name_changed? }
2016-11-05 14:20:05 +00:00
2019-08-05 17:54:29 +00:00
scope :reviewed , - > { where . not ( reviewed_at : nil ) }
2019-08-07 15:08:30 +00:00
scope :unreviewed , - > { where ( reviewed_at : nil ) }
scope :pending_review , - > { unreviewed . where . not ( requested_review_at : nil ) }
2019-08-07 08:01:55 +00:00
scope :usable , - > { where ( usable : [ true , nil ] ) }
2019-08-18 01:45:51 +00:00
scope :listable , - > { where ( listable : [ true , nil ] ) }
2019-10-10 00:22:04 +00:00
scope :trendable , - > { Setting . trendable_by_default ? where ( trendable : [ true , nil ] ) : where ( trendable : true ) }
2020-09-07 15:47:41 +00:00
scope :recently_used , - > ( account ) { joins ( :statuses ) . where ( statuses : { id : account . statuses . select ( :id ) . limit ( 1000 ) } ) . group ( :id ) . order ( Arel . sql ( 'count(*) desc' ) ) }
2021-05-07 12:33:43 +00:00
scope :matches_name , - > ( term ) { where ( arel_table [ :name ] . lower . matches ( arel_table . lower ( " #{ sanitize_sql_like ( Tag . normalize ( term ) ) } % " ) , nil , true ) ) } # Search with case-sensitive to use B-tree index
2018-12-06 16:36:11 +00:00
2020-09-23 03:03:01 +00:00
before_save :set_unlistable , if : :force_unlistable?
2021-07-12 07:39:07 +00:00
update_index ( 'tags' , :self )
2019-08-18 01:45:51 +00:00
2016-11-05 14:20:05 +00:00
def to_param
name
end
2017-03-22 01:32:27 +00:00
2019-08-05 17:54:29 +00:00
def usable
boolean_with_default ( 'usable' , true )
end
alias usable? usable
def listable
boolean_with_default ( 'listable' , true )
end
alias listable? listable
def trendable
2019-10-08 22:30:15 +00:00
boolean_with_default ( 'trendable' , Setting . trendable_by_default )
2019-08-05 17:54:29 +00:00
end
alias trendable? trendable
2020-09-23 03:03:01 +00:00
def force_unlistable?
name . end_with? ( '_' )
end
2019-08-05 17:54:29 +00:00
def requires_review?
reviewed_at . nil?
end
def reviewed?
reviewed_at . present?
end
def requested_review?
requested_review_at . present?
end
2021-05-07 12:33:43 +00:00
def use! ( account , status : nil , at_time : Time . now . utc )
TrendingTags . record_use! ( self , account , status : status , at_time : at_time )
end
2019-08-05 17:54:29 +00:00
def trending?
TrendingTags . trending? ( self )
end
2018-05-27 19:45:30 +00:00
def history
days = [ ]
7 . times do | i |
day = i . days . ago . beginning_of_day . to_i
days << {
day : day . to_s ,
uses : Redis . current . get ( " activity:tags: #{ id } : #{ day } " ) || '0' ,
accounts : Redis . current . pfcount ( " activity:tags: #{ id } : #{ day } :accounts " ) . to_s ,
}
end
days
end
2017-03-22 01:32:27 +00:00
class << self
2019-07-28 03:59:51 +00:00
def find_or_create_by_names ( name_or_names )
2019-07-29 18:40:21 +00:00
Array ( name_or_names ) . map ( & method ( :normalize ) ) . uniq { | str | str . mb_chars . downcase . to_s } . map do | normalized_name |
2019-12-17 12:31:56 +00:00
tag = matching_name ( normalized_name ) . first || create ( name : normalized_name )
2019-07-28 03:59:51 +00:00
yield tag if block_given?
tag
end
end
2019-09-27 23:02:21 +00:00
def search_for ( term , limit = 5 , offset = 0 , options = { } )
2021-05-07 12:33:43 +00:00
stripped_term = term . strip
query = Tag . listable . matches_name ( stripped_term )
query = query . merge ( matching_name ( stripped_term ) . or ( where . not ( reviewed_at : nil ) ) ) if options [ :exclude_unreviewed ]
Add type, limit, offset, min_id, max_id, account_id to search API (#10091)
* Add type, limit, offset, min_id, max_id, account_id to search API
Fix #8939
* Make the offset work on accounts and hashtags search as well
* Assure brakeman we are not doing mass assignment here
* Do not allow paginating unless a type is chosen
* Fix search query and index id field on statuses instead of created_at
2019-02-26 14:21:36 +00:00
2019-09-27 23:02:21 +00:00
query . order ( Arel . sql ( 'length(name) ASC, name ASC' ) )
. limit ( limit )
. offset ( offset )
2017-03-22 01:32:27 +00:00
end
2019-03-13 12:02:13 +00:00
def find_normalized ( name )
2019-07-28 03:59:51 +00:00
matching_name ( name ) . first
2019-03-13 12:02:13 +00:00
end
def find_normalized! ( name )
find_normalized ( name ) || raise ( ActiveRecord :: RecordNotFound )
end
2019-07-28 03:59:51 +00:00
def matching_name ( name_or_names )
2021-04-25 04:33:28 +00:00
names = Array ( name_or_names ) . map { | name | arel_table . lower ( normalize ( name ) ) }
2019-07-28 03:59:51 +00:00
if names . size == 1
where ( arel_table [ :name ] . lower . eq ( names . first ) )
else
where ( arel_table [ :name ] . lower . in ( names ) )
end
end
def normalize ( str )
2019-07-29 18:40:21 +00:00
str . gsub ( / \ A # / , '' )
2019-07-28 03:59:51 +00:00
end
2017-03-22 01:32:27 +00:00
end
2018-12-06 16:36:11 +00:00
private
2020-09-23 03:03:01 +00:00
def set_unlistable
self . listable = false
end
2019-08-05 17:54:29 +00:00
def validate_name_change
errors . add ( :name , I18n . t ( 'tags.does_not_match_previous_name' ) ) unless name_was . mb_chars . casecmp ( name . mb_chars ) . zero?
end
2016-11-04 18:12:59 +00:00
end