123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- # frozen_string_literal: true
- module Account::Search
- extend ActiveSupport::Concern
- DISALLOWED_TSQUERY_CHARACTERS = /['?\\:‘’]/
- TEXT_SEARCH_RANKS = <<~SQL.squish
- (
- setweight(to_tsvector('simple', accounts.display_name), 'A') ||
- setweight(to_tsvector('simple', accounts.username), 'B') ||
- setweight(to_tsvector('simple', coalesce(accounts.domain, '')), 'C')
- )
- SQL
- REPUTATION_SCORE_FUNCTION = <<~SQL.squish
- (
- greatest(0, coalesce(s.followers_count, 0)) / (
- greatest(0, coalesce(s.following_count, 0)) + 1.0
- )
- )
- SQL
- FOLLOWERS_SCORE_FUNCTION = <<~SQL.squish
- log(
- greatest(0, coalesce(s.followers_count, 0)) + 2
- )
- SQL
- TIME_DISTANCE_FUNCTION = <<~SQL.squish
- (
- case
- when s.last_status_at is null then 0
- else exp(
- -1.0 * (
- (
- greatest(0, abs(extract(DAY FROM age(s.last_status_at))) - 30.0)^2) /#{' '}
- (2.0 * ((-1.0 * 30^2) / (2.0 * ln(0.3)))
- )
- )
- )
- end
- )
- SQL
- BOOST = <<~SQL.squish
- (
- (#{REPUTATION_SCORE_FUNCTION} + #{FOLLOWERS_SCORE_FUNCTION} + #{TIME_DISTANCE_FUNCTION}) / 3.0
- )
- SQL
- BASIC_SEARCH_SQL = <<~SQL.squish
- SELECT
- accounts.*,
- #{BOOST} * ts_rank_cd(#{TEXT_SEARCH_RANKS}, to_tsquery('simple', :tsquery), 32) AS rank
- FROM accounts
- LEFT JOIN users ON accounts.id = users.account_id
- LEFT JOIN account_stats AS s ON accounts.id = s.account_id
- WHERE to_tsquery('simple', :tsquery) @@ #{TEXT_SEARCH_RANKS}
- AND accounts.suspended_at IS NULL
- AND accounts.moved_to_account_id IS NULL
- AND (accounts.domain IS NOT NULL OR (users.approved = TRUE AND users.confirmed_at IS NOT NULL))
- ORDER BY rank DESC
- LIMIT :limit OFFSET :offset
- SQL
- ADVANCED_SEARCH_WITH_FOLLOWING = <<~SQL.squish
- WITH first_degree AS (
- SELECT target_account_id
- FROM follows
- WHERE account_id = :id
- UNION ALL
- SELECT :id
- )
- SELECT
- accounts.*,
- (count(f.id) + 1) * #{BOOST} * ts_rank_cd(#{TEXT_SEARCH_RANKS}, to_tsquery('simple', :tsquery), 32) AS rank
- FROM accounts
- LEFT OUTER JOIN follows AS f ON (accounts.id = f.account_id AND f.target_account_id = :id)
- LEFT JOIN account_stats AS s ON accounts.id = s.account_id
- WHERE accounts.id IN (SELECT * FROM first_degree)
- AND to_tsquery('simple', :tsquery) @@ #{TEXT_SEARCH_RANKS}
- AND accounts.suspended_at IS NULL
- AND accounts.moved_to_account_id IS NULL
- GROUP BY accounts.id, s.id
- ORDER BY rank DESC
- LIMIT :limit OFFSET :offset
- SQL
- ADVANCED_SEARCH_WITHOUT_FOLLOWING = <<~SQL.squish
- SELECT
- accounts.*,
- #{BOOST} * ts_rank_cd(#{TEXT_SEARCH_RANKS}, to_tsquery('simple', :tsquery), 32) AS rank,
- count(f.id) AS followed
- FROM accounts
- LEFT OUTER JOIN follows AS f ON
- (accounts.id = f.account_id AND f.target_account_id = :id) OR (accounts.id = f.target_account_id AND f.account_id = :id)
- LEFT JOIN users ON accounts.id = users.account_id
- LEFT JOIN account_stats AS s ON accounts.id = s.account_id
- WHERE to_tsquery('simple', :tsquery) @@ #{TEXT_SEARCH_RANKS}
- AND accounts.suspended_at IS NULL
- AND accounts.moved_to_account_id IS NULL
- AND (accounts.domain IS NOT NULL OR (users.approved = TRUE AND users.confirmed_at IS NOT NULL))
- GROUP BY accounts.id, s.id
- ORDER BY followed DESC, rank DESC
- LIMIT :limit OFFSET :offset
- SQL
- DEFAULT_LIMIT = 10
- def searchable_text
- PlainTextFormatter.new(note, local?).to_s if discoverable?
- end
- def searchable_properties
- [].tap do |properties|
- properties << 'bot' if bot?
- properties << 'verified' if fields.any?(&:verified?)
- end
- end
- class_methods do
- def search_for(terms, limit: DEFAULT_LIMIT, offset: 0)
- tsquery = generate_query_for_search(terms)
- find_by_sql([BASIC_SEARCH_SQL, { limit: limit, offset: offset, tsquery: tsquery }]).tap do |records|
- ActiveRecord::Associations::Preloader.new(records: records, associations: [:account_stat, { user: :role }]).call
- end
- end
- def advanced_search_for(terms, account, limit: DEFAULT_LIMIT, following: false, offset: 0)
- tsquery = generate_query_for_search(terms)
- sql_template = following ? ADVANCED_SEARCH_WITH_FOLLOWING : ADVANCED_SEARCH_WITHOUT_FOLLOWING
- find_by_sql([sql_template, { id: account.id, limit: limit, offset: offset, tsquery: tsquery }]).tap do |records|
- ActiveRecord::Associations::Preloader.new(records: records, associations: [:account_stat, { user: :role }]).call
- end
- end
- private
- def generate_query_for_search(unsanitized_terms)
- terms = unsanitized_terms.gsub(DISALLOWED_TSQUERY_CHARACTERS, ' ')
- # The final ":*" is for prefix search.
- # The trailing space does not seem to fit any purpose, but `to_tsquery`
- # behaves differently with and without a leading space if the terms start
- # with `./`, `../`, or `.. `. I don't understand why, so, in doubt, keep
- # the same query.
- "' #{terms} ':*"
- end
- end
- end
|