2019-08-15 23:24:03 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class AccountsIndex < Chewy::Index
|
2023-08-14 15:46:16 +00:00
|
|
|
settings index: index_preset(refresh_interval: '30s'), analysis: {
|
2023-06-29 11:05:21 +00:00
|
|
|
filter: {
|
|
|
|
english_stop: {
|
|
|
|
type: 'stop',
|
|
|
|
stopwords: '_english_',
|
|
|
|
},
|
|
|
|
|
|
|
|
english_stemmer: {
|
|
|
|
type: 'stemmer',
|
|
|
|
language: 'english',
|
|
|
|
},
|
|
|
|
|
|
|
|
english_possessive_stemmer: {
|
|
|
|
type: 'stemmer',
|
|
|
|
language: 'possessive_english',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2019-08-15 23:24:03 +00:00
|
|
|
analyzer: {
|
2023-06-29 11:05:21 +00:00
|
|
|
natural: {
|
2023-08-28 09:36:17 +00:00
|
|
|
tokenizer: 'standard',
|
2023-06-29 11:05:21 +00:00
|
|
|
filter: %w(
|
|
|
|
lowercase
|
|
|
|
asciifolding
|
|
|
|
cjk_width
|
2023-08-28 09:36:17 +00:00
|
|
|
elision
|
|
|
|
english_possessive_stemmer
|
2023-06-29 11:05:21 +00:00
|
|
|
english_stop
|
|
|
|
english_stemmer
|
|
|
|
),
|
|
|
|
},
|
|
|
|
|
|
|
|
verbatim: {
|
2023-08-31 13:35:58 +00:00
|
|
|
tokenizer: 'standard',
|
2019-08-15 23:24:03 +00:00
|
|
|
filter: %w(lowercase asciifolding cjk_width),
|
|
|
|
},
|
|
|
|
|
|
|
|
edge_ngram: {
|
|
|
|
tokenizer: 'edge_ngram',
|
|
|
|
filter: %w(lowercase asciifolding cjk_width),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
tokenizer: {
|
|
|
|
edge_ngram: {
|
|
|
|
type: 'edge_ngram',
|
|
|
|
min_gram: 1,
|
|
|
|
max_gram: 15,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2022-05-22 20:16:43 +00:00
|
|
|
index_scope ::Account.searchable.includes(:account_stat)
|
2019-08-16 11:00:30 +00:00
|
|
|
|
2021-11-18 21:02:08 +00:00
|
|
|
root date_detection: false do
|
2023-06-29 11:05:21 +00:00
|
|
|
field(:id, type: 'long')
|
|
|
|
field(:following_count, type: 'long')
|
|
|
|
field(:followers_count, type: 'long')
|
|
|
|
field(:properties, type: 'keyword', value: ->(account) { account.searchable_properties })
|
|
|
|
field(:last_status_at, type: 'date', value: ->(account) { account.last_status_at || account.created_at })
|
|
|
|
field(:display_name, type: 'text', analyzer: 'verbatim') { field :edge_ngram, type: 'text', analyzer: 'edge_ngram', search_analyzer: 'verbatim' }
|
|
|
|
field(:username, type: 'text', analyzer: 'verbatim', value: ->(account) { [account.username, account.domain].compact.join('@') }) { field :edge_ngram, type: 'text', analyzer: 'edge_ngram', search_analyzer: 'verbatim' }
|
2023-08-28 09:36:17 +00:00
|
|
|
field(:text, type: 'text', analyzer: 'verbatim', value: ->(account) { account.searchable_text }) { field :stemmed, type: 'text', analyzer: 'natural' }
|
2019-08-15 23:24:03 +00:00
|
|
|
end
|
|
|
|
end
|