2019-07-10 05:13:23 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2019-06-14 15:45:05 +00:00
|
|
|
defmodule Mix.Tasks.Pleroma.Config do
|
|
|
|
use Mix.Task
|
2019-06-19 23:05:19 +00:00
|
|
|
import Mix.Pleroma
|
2019-06-14 15:45:05 +00:00
|
|
|
alias Pleroma.Repo
|
|
|
|
alias Pleroma.Web.AdminAPI.Config
|
|
|
|
@shortdoc "Manages the location of the config"
|
2019-10-03 11:12:57 +00:00
|
|
|
@moduledoc File.read!("docs/administration/CLI_tasks/config.md")
|
2019-09-29 08:17:38 +00:00
|
|
|
|
|
|
|
@groups [
|
|
|
|
:pleroma,
|
|
|
|
:logger,
|
|
|
|
:quack,
|
|
|
|
:mime,
|
|
|
|
:tesla,
|
|
|
|
:phoenix,
|
|
|
|
:cors_plug,
|
|
|
|
:auto_linker,
|
|
|
|
:esshd,
|
|
|
|
:ueberauth,
|
|
|
|
:prometheus,
|
|
|
|
:http_signatures,
|
|
|
|
:web_push_encryption,
|
|
|
|
:joken
|
|
|
|
]
|
|
|
|
|
2019-06-14 15:45:05 +00:00
|
|
|
def run(["migrate_to_db"]) do
|
2019-06-19 23:05:19 +00:00
|
|
|
start_pleroma()
|
2019-06-14 15:45:05 +00:00
|
|
|
|
|
|
|
if Pleroma.Config.get([:instance, :dynamic_configuration]) do
|
2019-09-29 08:17:38 +00:00
|
|
|
Enum.each(@groups, &load_and_create(&1))
|
2019-06-14 15:45:05 +00:00
|
|
|
else
|
|
|
|
Mix.shell().info(
|
|
|
|
"Migration is not allowed by config. You can change this behavior in instance settings."
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-09-29 08:17:38 +00:00
|
|
|
def run(["migrate_from_db" | options]) do
|
2019-06-19 23:05:19 +00:00
|
|
|
start_pleroma()
|
2019-06-14 15:45:05 +00:00
|
|
|
|
2019-09-29 08:17:38 +00:00
|
|
|
{opts, _} =
|
|
|
|
OptionParser.parse!(options,
|
|
|
|
strict: [env: :string, delete_from_db: :boolean],
|
|
|
|
aliases: [d: :delete_from_db]
|
|
|
|
)
|
2019-06-14 15:45:05 +00:00
|
|
|
|
2019-09-29 08:17:38 +00:00
|
|
|
with {:active?, true} <- {:active?, Pleroma.Config.get([:instance, :dynamic_configuration])},
|
|
|
|
env_path when is_binary(env_path) <- opts[:env],
|
|
|
|
config_path <- "config/#{env_path}.exported_from_db.secret.exs",
|
|
|
|
{:ok, file} <- File.open(config_path, [:write, :utf8]) do
|
2019-06-20 17:43:57 +00:00
|
|
|
IO.write(file, "use Mix.Config\r\n")
|
2019-06-14 15:45:05 +00:00
|
|
|
|
2019-09-29 08:17:38 +00:00
|
|
|
Config
|
|
|
|
|> Repo.all()
|
|
|
|
|> Enum.each(&write_to_file_with_deletion(&1, file, opts[:delete_from_db]))
|
2019-06-14 15:45:05 +00:00
|
|
|
|
|
|
|
File.close(file)
|
|
|
|
System.cmd("mix", ["format", config_path])
|
|
|
|
else
|
2019-09-29 08:17:38 +00:00
|
|
|
{:active?, false} ->
|
|
|
|
Mix.shell().info(
|
|
|
|
"migration is not allowed by config. You can change this behavior in instance settings."
|
|
|
|
)
|
|
|
|
|
|
|
|
error ->
|
|
|
|
Mix.shell().info("error occuried while opening file. #{inspect(error)}")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
defp load_and_create(group) do
|
|
|
|
group
|
|
|
|
|> Application.get_all_env()
|
|
|
|
|> Enum.reject(fn {k, _v} -> k in [Pleroma.Repo, :env] end)
|
|
|
|
|> Enum.each(fn {key, value} ->
|
|
|
|
key_str = inspect(key)
|
|
|
|
|
|
|
|
{:ok, _} = Config.update_or_create(%{group: ":#{group}", key: key_str, value: value})
|
|
|
|
Mix.shell().info("settings for key #{key_str} migrated.")
|
|
|
|
end)
|
|
|
|
|
|
|
|
Mix.shell().info("settings for group :#{group} migrated.")
|
|
|
|
end
|
|
|
|
|
|
|
|
defp write_to_file_with_deletion(config, file, with_deletion) do
|
|
|
|
IO.write(
|
|
|
|
file,
|
|
|
|
"config #{config.group}, #{config.key}, #{
|
|
|
|
inspect(Config.from_binary(config.value), limit: :infinity)
|
|
|
|
}\r\n\r\n"
|
|
|
|
)
|
|
|
|
|
|
|
|
if with_deletion do
|
|
|
|
{:ok, _} = Repo.delete(config)
|
|
|
|
Mix.shell().info("#{config.key} deleted from DB.")
|
2019-06-14 15:45:05 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|