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
2022-07-13 13:03:28 +00:00
# display_name :string
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
2022-07-17 11:49:29 +00:00
has_many :passive_relationships , class_name : 'TagFollow' , inverse_of : :tag , dependent : :destroy
2019-02-04 03:25:59 +00:00
has_many :featured_tags , dependent : :destroy , inverse_of : :tag
2022-07-17 11:49:29 +00:00
has_many :followers , through : :passive_relationships , source : :account
2016-11-05 14:20:05 +00:00
2023-01-04 01:12:48 +00:00
HASHTAG_SEPARATORS = " _ \ u00B7 \ u30FB \ u200c "
HASHTAG_FIRST_SEQUENCE_CHUNK_ONE = " [[:word:]_][[:word:] #{ HASHTAG_SEPARATORS } ]*[[:alpha:] #{ HASHTAG_SEPARATORS } ] "
HASHTAG_FIRST_SEQUENCE_CHUNK_TWO = " [[:word:] #{ HASHTAG_SEPARATORS } ]*[[:word:]_] "
HASHTAG_FIRST_SEQUENCE = " ( #{ HASHTAG_FIRST_SEQUENCE_CHUNK_ONE } #{ HASHTAG_FIRST_SEQUENCE_CHUNK_TWO } ) "
HASTAG_LAST_SEQUENCE = '([[:word:]_]*[[:alpha:]][[:word:]_]*)'
HASHTAG_NAME_PAT = " #{ HASHTAG_FIRST_SEQUENCE } | #{ HASTAG_LAST_SEQUENCE } "
2016-11-04 18:12:59 +00:00
2022-11-10 04:49:30 +00:00
HASHTAG_RE = / (?:^|[^ \/ \ ) \ w]) # ( #{ HASHTAG_NAME_PAT } ) /i
HASHTAG_NAME_RE = / \ A( #{ HASHTAG_NAME_PAT } ) \ z /i
HASHTAG_INVALID_CHARS_RE = / [^[:alnum:] #{ HASHTAG_SEPARATORS } ] /
validates :name , presence : true , format : { with : HASHTAG_NAME_RE }
validates :display_name , format : { with : HASHTAG_NAME_RE }
2019-08-05 17:54:29 +00:00
validate :validate_name_change , if : - > { ! new_record? && name_changed? }
2022-07-13 13:03:28 +00:00
validate :validate_display_name_change , if : - > { ! new_record? && display_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 ) }
2021-11-25 12:07:38 +00:00
scope :not_trendable , - > { where ( trendable : false ) }
2023-01-04 01:12:48 +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
2021-11-18 21:02:08 +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
2022-07-13 13:03:28 +00:00
def display_name
attributes [ 'display_name' ] || name
end
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
def requires_review?
reviewed_at . nil?
end
def reviewed?
reviewed_at . present?
end
def requested_review?
requested_review_at . present?
end
2021-11-25 12:07:38 +00:00
def requires_review_notification?
requires_review? && ! requested_review?
2019-08-05 17:54:29 +00:00
end
2021-11-26 00:12:39 +00:00
def decaying?
max_score_at && max_score_at > = Trends . tags . options [ :max_score_cooldown ] . ago && max_score_at < 1 . day . ago
end
2018-05-27 19:45:30 +00:00
def history
2021-11-25 12:07:38 +00:00
@history || = Trends :: History . new ( 'tags' , id )
2018-05-27 19:45:30 +00:00
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 )
2022-07-13 13:03:28 +00:00
names = Array ( name_or_names ) . map { | str | [ normalize ( str ) , str ] } . uniq ( & :first )
names . map do | ( normalized_name , display_name ) |
2023-01-04 01:12:48 +00:00
tag = matching_name ( normalized_name ) . first || create ( name : normalized_name ,
display_name : display_name . gsub ( HASHTAG_INVALID_CHARS_RE , '' ) )
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 )
2022-07-13 13:03:28 +00:00
HashtagNormalizer . new . normalize ( str )
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
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
2022-07-13 13:03:28 +00:00
def validate_display_name_change
2023-01-04 01:12:48 +00:00
unless HashtagNormalizer . new . normalize ( display_name ) . casecmp ( name . mb_chars ) . zero?
errors . add ( :display_name ,
I18n . t ( 'tags.does_not_match_previous_name' ) )
end
2022-07-13 13:03:28 +00:00
end
2016-11-04 18:12:59 +00:00
end