fedibird-fe/app/chewy/accounts_index.rb

93 lines
2.6 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
class AccountsIndex < Chewy::Index
2021-07-12 07:39:07 +00:00
settings index: {
refresh_interval: '5m',
number_of_shards: 1,
number_of_replicas: 0,
},
analysis: {
analyzer: {
content: {
tokenizer: 'whitespace',
filter: %w(lowercase asciifolding cjk_width),
},
edge_ngram: {
tokenizer: 'edge_ngram',
filter: %w(lowercase asciifolding cjk_width),
},
2020-08-15 13:25:38 +00:00
sudachi_content: {
tokenizer: 'sudachi_tokenizer',
type: 'custom',
2020-08-15 13:25:38 +00:00
filter: %w(
lowercase
cjk_width
sudachi_part_of_speech
sudachi_ja_stop
sudachi_baseform
search
),
},
},
normalizer: {
keyword: {
2020-08-15 13:25:38 +00:00
type: 'custom',
filter: %w(lowercase asciifolding cjk_width),
2020-08-15 13:25:38 +00:00
},
},
tokenizer: {
edge_ngram: {
type: 'edge_ngram',
min_gram: 1,
max_gram: 15,
},
2020-08-15 13:25:38 +00:00
sudachi_tokenizer: {
type: 'sudachi_tokenizer',
discard_punctuation: true,
2022-04-23 19:54:49 +00:00
resources_path: '/etc/elasticsearch/sudachi',
settings_path: '/etc/elasticsearch/sudachi/sudachi.json',
2020-08-15 13:25:38 +00:00
},
},
filter: {
search: {
type: 'sudachi_split',
mode: 'search',
},
},
}
2021-07-12 07:39:07 +00:00
index_scope ::Account.searchable.includes(:account_stat), delete_if: ->(account) { account.destroyed? || !account.searchable? }
2021-07-12 07:39:07 +00:00
root date_detection: false do
field :id, type: 'long'
2021-07-12 07:39:07 +00:00
field :display_name, type: 'text', analyzer: 'content' do
field :edge_ngram, type: 'text', analyzer: 'edge_ngram', search_analyzer: 'content'
end
2020-07-14 10:03:54 +00:00
2021-07-12 07:39:07 +00:00
field :acct, type: 'text', analyzer: 'content', value: ->(account) { [account.username, account.domain].compact.join('@') } do
field :edge_ngram, type: 'text', analyzer: 'edge_ngram', search_analyzer: 'content'
end
2020-08-15 13:25:38 +00:00
2021-07-12 07:39:07 +00:00
field :actor_type, type: 'keyword', normalizer: 'keyword'
2021-07-12 07:39:07 +00:00
field :text, type: 'text', value: ->(account) { account.index_text } do
2022-04-23 19:54:49 +00:00
field :edge_ngram, type: 'text', analyzer: 'edge_ngram', search_analyzer: 'content'
2021-07-12 07:39:07 +00:00
field :stemmed, type: 'text', analyzer: 'sudachi_content'
end
2021-07-12 07:39:07 +00:00
field :discoverable, type: 'boolean'
field :following_count, type: 'long', value: ->(account) { account.following.local.count }
field :followers_count, type: 'long', value: ->(account) { account.followers.local.count }
field :subscribing_count, type: 'long', value: ->(account) { account.subscribing.local.count }
field :last_status_at, type: 'date', value: ->(account) { account.last_status_at || account.created_at }
end
end