2018-02-09 22:04:47 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class StatusesIndex < Chewy::Index
|
|
|
|
settings index: { refresh_interval: '15m' }, analysis: {
|
2019-06-27 20:50:16 +00:00
|
|
|
tokenizer: {
|
|
|
|
sudachi_tokenizer: {
|
|
|
|
type: 'sudachi_tokenizer',
|
|
|
|
discard_punctuation: true,
|
|
|
|
resources_path: '/etc/elasticsearch',
|
|
|
|
settings_path: '/etc/elasticsearch/sudachi.json',
|
|
|
|
additional_settings: {
|
|
|
|
systemDict: 'system_full.dic',
|
|
|
|
userDict: [],
|
|
|
|
},
|
2018-02-09 22:04:47 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
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
|
2018-02-09 22:04:47 +00:00
|
|
|
),
|
2019-06-27 20:50:16 +00:00
|
|
|
tokenizer: 'sudachi_tokenizer',
|
|
|
|
type: 'custom',
|
2018-02-09 22:04:47 +00:00
|
|
|
},
|
|
|
|
},
|
2020-08-15 13:25:38 +00:00
|
|
|
filter: {
|
|
|
|
search: {
|
|
|
|
type: 'sudachi_split',
|
|
|
|
mode: 'search',
|
|
|
|
},
|
|
|
|
},
|
2018-02-09 22:04:47 +00:00
|
|
|
}
|
|
|
|
|
2020-07-14 16:10:35 +00:00
|
|
|
define_type ::Status.unscoped.kept.without_reblogs.includes(:media_attachments, :preloadable_poll) do
|
2018-02-09 22:04:47 +00:00
|
|
|
crutch :mentions do |collection|
|
2020-05-23 03:47:25 +00:00
|
|
|
data = ::Mention.where(status_id: collection.map(&:id)).where(account: Account.local, silent: false).pluck(:status_id, :account_id)
|
2018-02-09 22:04:47 +00:00
|
|
|
data.each.with_object({}) { |(id, name), result| (result[id] ||= []).push(name) }
|
|
|
|
end
|
|
|
|
|
|
|
|
crutch :favourites do |collection|
|
2019-10-02 18:04:46 +00:00
|
|
|
data = ::Favourite.where(status_id: collection.map(&:id)).where(account: Account.local).pluck(:status_id, :account_id)
|
2018-02-09 22:04:47 +00:00
|
|
|
data.each.with_object({}) { |(id, name), result| (result[id] ||= []).push(name) }
|
|
|
|
end
|
|
|
|
|
|
|
|
crutch :reblogs do |collection|
|
2019-10-02 18:04:46 +00:00
|
|
|
data = ::Status.where(reblog_of_id: collection.map(&:id)).where(account: Account.local).pluck(:reblog_of_id, :account_id)
|
2018-02-09 22:04:47 +00:00
|
|
|
data.each.with_object({}) { |(id, name), result| (result[id] ||= []).push(name) }
|
|
|
|
end
|
|
|
|
|
2020-03-22 01:40:03 +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
|
|
|
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
|
|
|
|
|
2018-02-09 22:04:47 +00:00
|
|
|
root date_detection: false do
|
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
|
|
|
field :id, type: 'long'
|
2018-02-09 22:04:47 +00:00
|
|
|
field :account_id, type: 'long'
|
|
|
|
|
2019-08-30 08:02:41 +00:00
|
|
|
field :text, type: 'text', value: ->(status) { status.index_text } do
|
2018-02-09 22:04:47 +00:00
|
|
|
field :stemmed, type: 'text', analyzer: 'content'
|
|
|
|
end
|
|
|
|
|
|
|
|
field :searchable_by, type: 'long', value: ->(status, crutches) { status.searchable_by(crutches) }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|