fedibird-fe/app/chewy/statuses_index.rb

84 lines
2.9 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
class StatusesIndex < Chewy::Index
2021-07-12 07:39:07 +00:00
settings index: {
refresh_interval: '15m',
number_of_shards: 1,
number_of_replicas: 0,
},
analysis: {
2019-06-27 20:50:16 +00:00
tokenizer: {
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',
},
},
analyzer: {
content: {
filter: %w(
lowercase
cjk_width
2019-06-27 20:50:16 +00:00
sudachi_part_of_speech
sudachi_ja_stop
sudachi_baseform
2020-08-15 13:25:38 +00:00
search
),
2019-06-27 20:50:16 +00:00
tokenizer: 'sudachi_tokenizer',
type: 'custom',
},
},
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 ::Status.unscoped.kept.without_reblogs.includes(:media_attachments, :preloadable_poll)
2021-07-12 07:39:07 +00:00
crutch :mentions do |collection|
data = ::Mention.where(status_id: collection.map(&:id)).where(account: Account.local, silent: false).pluck(:status_id, :account_id)
data.each.with_object({}) { |(id, name), result| (result[id] ||= []).push(name) }
end
2021-07-12 07:39:07 +00:00
crutch :favourites do |collection|
data = ::Favourite.where(status_id: collection.map(&:id)).where(account: Account.local).pluck(:status_id, :account_id)
data.each.with_object({}) { |(id, name), result| (result[id] ||= []).push(name) }
end
2021-07-12 07:39:07 +00:00
crutch :reblogs do |collection|
data = ::Status.where(reblog_of_id: collection.map(&:id)).where(account: Account.local).pluck(:reblog_of_id, :account_id)
data.each.with_object({}) { |(id, name), result| (result[id] ||= []).push(name) }
end
2020-03-22 01:40:03 +00:00
2021-07-12 07:39:07 +00:00
crutch :bookmarks do |collection|
data = ::Bookmark.where(status_id: collection.map(&:id)).where(account: Account.local).pluck(:status_id, :account_id)
data.each.with_object({}) { |(id, name), result| (result[id] ||= []).push(name) }
end
2021-05-19 05:58:27 +00:00
2021-07-12 07:39:07 +00:00
crutch :emoji_reactions do |collection|
data = ::EmojiReaction.where(status_id: collection.map(&:id)).where(account: Account.local).pluck(:status_id, :account_id)
data.each.with_object({}) { |(id, name), result| (result[id] ||= []).push(name) }
end
2022-03-17 14:25:16 +00:00
crutch :status_references do |collection|
data = ::StatusReference.joins(:status).where(target_status_id: collection.map(&:id)).where(status: { account: Account.local }).pluck(:target_status_id, :'status.account_id')
data.each.with_object({}) { |(id, name), result| (result[id] ||= []).push(name) }
end
2021-07-12 07:39:07 +00:00
root date_detection: false do
field :id, type: 'long'
field :account_id, type: 'long'
2021-07-12 07:39:07 +00:00
field :text, type: 'text', value: ->(status) { status.index_text } do
field :stemmed, type: 'text', analyzer: 'content'
end
2021-07-12 07:39:07 +00:00
field :searchable_by, type: 'long', value: ->(status, crutches) { status.searchable_by(crutches) }
2022-08-23 05:14:23 +00:00
field :searchability, type: 'keyword', value: ->(status) { status.compute_searchability }
end
end