akkoma/lib/pleroma/config/transfer_task.ex

65 lines
1.8 KiB
Elixir
Raw Normal View History

# Pleroma: A lightweight social networking server
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule Pleroma.Config.TransferTask do
use Task
2019-09-29 08:17:38 +00:00
alias Pleroma.ConfigDB
2019-09-29 08:17:38 +00:00
alias Pleroma.Repo
require Logger
2019-08-14 15:55:17 +00:00
def start_link(_) do
load_and_update_env()
2019-09-29 08:17:38 +00:00
if Pleroma.Config.get(:env) == :test, do: Ecto.Adapters.SQL.Sandbox.checkin(Repo)
:ignore
end
def load_and_update_env do
2020-01-15 14:10:33 +00:00
with true <- Pleroma.Config.get(:configurable_from_database),
2019-09-29 08:17:38 +00:00
true <- Ecto.Adapters.SQL.table_exists?(Repo, "config"),
started_applications <- Application.started_applications() do
2019-06-23 05:16:16 +00:00
# We need to restart applications for loaded settings take effect
ConfigDB
2019-09-29 08:17:38 +00:00
|> Repo.all()
|> Enum.map(&update_env(&1))
|> Enum.uniq()
# TODO: some problem with prometheus after restart!
|> Enum.reject(&(&1 in [:pleroma, nil, :prometheus]))
|> Enum.each(&restart(started_applications, &1))
end
end
defp update_env(setting) do
try do
key = ConfigDB.from_string(setting.key)
group = ConfigDB.from_string(setting.group)
value = ConfigDB.from_binary(setting.value)
2019-12-10 09:00:40 +00:00
if group != :phoenix and key != :serve_endpoints do
:ok = Application.put_env(group, key, value)
end
2019-06-23 05:16:16 +00:00
group
rescue
e ->
Logger.warn(
"updating env causes error, key: #{inspect(setting.key)}, error: #{inspect(e)}"
)
2019-09-29 08:17:38 +00:00
nil
end
end
defp restart(started_applications, app) do
with {^app, _, _} <- List.keyfind(started_applications, app, 0),
:ok <- Application.stop(app) do
:ok = Application.start(app)
else
nil -> Logger.warn("#{app} is not started.")
error -> Logger.warn(inspect(error))
end
end
end