2021-12-11 17:36:49 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Mix.Tasks.Pleroma.Search do
|
|
|
|
use Mix.Task
|
|
|
|
import Mix.Pleroma
|
|
|
|
import Ecto.Query
|
|
|
|
alias Pleroma.Activity
|
|
|
|
alias Pleroma.Pagination
|
|
|
|
|
|
|
|
@shortdoc "Manages elasticsearch"
|
|
|
|
|
2021-12-12 17:23:44 +00:00
|
|
|
def run(["import" | _rest]) do
|
2021-12-11 17:36:49 +00:00
|
|
|
start_pleroma()
|
|
|
|
|
2021-12-12 17:23:44 +00:00
|
|
|
from(a in Activity, where: not ilike(a.actor, "%/relay"))
|
|
|
|
|> Activity.with_preloaded_object()
|
|
|
|
|> Activity.with_preloaded_user_actor()
|
2021-12-11 17:36:49 +00:00
|
|
|
|> get_all
|
|
|
|
end
|
|
|
|
|
|
|
|
defp get_all(query, max_id \\ nil) do
|
|
|
|
params = %{limit: 20}
|
2021-12-12 17:23:44 +00:00
|
|
|
|
|
|
|
params =
|
|
|
|
if max_id == nil do
|
2021-12-11 17:36:49 +00:00
|
|
|
params
|
2021-12-12 17:23:44 +00:00
|
|
|
else
|
2021-12-11 17:36:49 +00:00
|
|
|
Map.put(params, :max_id, max_id)
|
2021-12-12 17:23:44 +00:00
|
|
|
end
|
2021-12-11 17:36:49 +00:00
|
|
|
|
2021-12-12 17:23:44 +00:00
|
|
|
res =
|
|
|
|
query
|
|
|
|
|> Pagination.fetch_paginated(params)
|
2021-12-11 17:36:49 +00:00
|
|
|
|
|
|
|
if res == [] do
|
|
|
|
:ok
|
|
|
|
else
|
|
|
|
res
|
|
|
|
|> Pleroma.Elasticsearch.bulk_post(:activities)
|
|
|
|
|
|
|
|
get_all(query, List.last(res).id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|