mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 12:37:58 +01:00
52 lines
1.2 KiB
Elixir
52 lines
1.2 KiB
Elixir
defmodule Mix.Tasks.ReindexAll do
|
|
use Mix.Task
|
|
|
|
alias Philomena.Elasticsearch
|
|
|
|
alias Philomena.{
|
|
Comments.Comment,
|
|
Galleries.Gallery,
|
|
Posts.Post,
|
|
Images.Image,
|
|
Reports.Report,
|
|
Tags.Tag
|
|
}
|
|
|
|
alias Philomena.{Comments, Galleries, Posts, Images, Tags}
|
|
alias Philomena.Polymorphic
|
|
alias Philomena.Repo
|
|
import Ecto.Query
|
|
|
|
@shortdoc "Destroys and recreates all Elasticsearch indices."
|
|
def run(_) do
|
|
if Mix.env() == :prod do
|
|
raise "do not run this task in production"
|
|
end
|
|
|
|
{:ok, _apps} = Application.ensure_all_started(:philomena)
|
|
|
|
for {context, schema} <- [
|
|
{Images, Image},
|
|
{Comments, Comment},
|
|
{Galleries, Gallery},
|
|
{Tags, Tag},
|
|
{Posts, Post}
|
|
] do
|
|
Elasticsearch.delete_index!(schema)
|
|
Elasticsearch.create_index!(schema)
|
|
|
|
Elasticsearch.reindex(preload(schema, ^context.indexing_preloads()), schema)
|
|
end
|
|
|
|
# Reports are a bit special
|
|
|
|
Elasticsearch.delete_index!(Report)
|
|
Elasticsearch.create_index!(Report)
|
|
|
|
Report
|
|
|> preload([:user, :admin])
|
|
|> Repo.all()
|
|
|> Polymorphic.load_polymorphic(reportable: [reportable_id: :reportable_type])
|
|
|> Enum.map(&Elasticsearch.index_document(&1, Report))
|
|
end
|
|
end
|