48 lines
1.3 KiB
Ruby
48 lines
1.3 KiB
Ruby
module Search
|
|
class User < Base
|
|
INDEX_NAME = "users_#{Rails.env}".freeze
|
|
INDEX_ALIAS = "users_#{Rails.env}_alias".freeze
|
|
MAPPINGS = JSON.parse(File.read("config/elasticsearch/mappings/users.json"), symbolize_names: true).freeze
|
|
DEFAULT_PAGE = 0
|
|
DEFAULT_PER_PAGE = 20
|
|
|
|
class << self
|
|
private
|
|
|
|
def prepare_doc(hit)
|
|
source = hit.dig("_source")
|
|
{
|
|
"user" => {
|
|
"username" => source["username"],
|
|
"name" => source["username"],
|
|
"profile_image_90" => source["profile_image_90"]
|
|
},
|
|
"title" => source["name"],
|
|
"path" => source["path"],
|
|
"id" => source["id"],
|
|
"class_name" => "User",
|
|
"positive_reactions_count" => source["positive_reactions_count"],
|
|
"comments_count" => source["comments_count"],
|
|
"badge_achievements_count" => source["badge_achievements_count"],
|
|
"last_comment_at" => source["last_comment_at"],
|
|
"roles" => source["roles"],
|
|
"user_id" => source["id"]
|
|
}
|
|
end
|
|
|
|
def index_settings
|
|
if Rails.env.production?
|
|
{
|
|
number_of_shards: 10,
|
|
number_of_replicas: 1
|
|
}
|
|
else
|
|
{
|
|
number_of_shards: 1,
|
|
number_of_replicas: 0
|
|
}
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|