2018-12-23 20:05:55 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 20:05:55 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2019-06-19 23:05:19 +00:00
|
|
|
defmodule Mix.Pleroma do
|
2020-07-09 16:13:16 +00:00
|
|
|
@apps [
|
|
|
|
:restarter,
|
|
|
|
:ecto,
|
|
|
|
:ecto_sql,
|
|
|
|
:postgrex,
|
|
|
|
:db_connection,
|
|
|
|
:cachex,
|
|
|
|
:flake_id,
|
|
|
|
:swoosh,
|
2020-12-12 14:30:08 +00:00
|
|
|
:timex,
|
2021-01-17 06:58:41 +00:00
|
|
|
:fast_html,
|
|
|
|
:oban
|
2020-07-09 16:13:16 +00:00
|
|
|
]
|
2020-11-17 15:15:53 +00:00
|
|
|
@cachex_children ["object", "user", "scrubber", "web_resp"]
|
2018-12-09 09:12:48 +00:00
|
|
|
@doc "Common functions to be reused in mix tasks"
|
2018-12-07 05:12:39 +00:00
|
|
|
def start_pleroma do
|
2020-07-09 08:17:43 +00:00
|
|
|
Pleroma.Config.Holder.save_default()
|
2020-09-06 09:13:26 +00:00
|
|
|
Pleroma.Config.Oban.warn()
|
2020-11-20 08:37:01 +00:00
|
|
|
Pleroma.Application.limiters_setup()
|
2019-06-07 09:37:20 +00:00
|
|
|
Application.put_env(:phoenix, :serve_endpoints, false, persistent: true)
|
2019-11-20 17:55:30 +00:00
|
|
|
|
2020-11-25 18:52:39 +00:00
|
|
|
unless System.get_env("DEBUG") do
|
|
|
|
Logger.remove_backend(:console)
|
2019-11-20 17:55:30 +00:00
|
|
|
end
|
|
|
|
|
2020-07-24 17:05:42 +00:00
|
|
|
adapter = Application.get_env(:tesla, :adapter)
|
|
|
|
|
2020-07-03 16:18:08 +00:00
|
|
|
apps =
|
2020-07-24 17:05:42 +00:00
|
|
|
if adapter == Tesla.Adapter.Gun do
|
2020-07-03 16:18:08 +00:00
|
|
|
[:gun | @apps]
|
|
|
|
else
|
|
|
|
[:hackney | @apps]
|
|
|
|
end
|
|
|
|
|
|
|
|
Enum.each(apps, &Application.ensure_all_started/1)
|
|
|
|
|
2020-12-12 14:30:08 +00:00
|
|
|
oban_config = [
|
|
|
|
crontab: [],
|
|
|
|
repo: Pleroma.Repo,
|
|
|
|
log: false,
|
|
|
|
queues: [],
|
|
|
|
plugins: []
|
|
|
|
]
|
|
|
|
|
2020-07-24 17:05:42 +00:00
|
|
|
children =
|
|
|
|
[
|
|
|
|
Pleroma.Repo,
|
2020-12-12 14:30:08 +00:00
|
|
|
Pleroma.Emoji,
|
2020-07-24 17:05:42 +00:00
|
|
|
{Pleroma.Config.TransferTask, false},
|
2020-07-24 17:06:56 +00:00
|
|
|
Pleroma.Web.Endpoint,
|
2020-12-12 14:30:08 +00:00
|
|
|
{Oban, oban_config},
|
|
|
|
{Majic.Pool,
|
|
|
|
[name: Pleroma.MajicPool, pool_size: Pleroma.Config.get([:majic_pool, :size], 2)]}
|
2020-07-24 17:05:42 +00:00
|
|
|
] ++
|
|
|
|
http_children(adapter)
|
2020-07-03 16:18:08 +00:00
|
|
|
|
2020-07-09 16:13:16 +00:00
|
|
|
cachex_children = Enum.map(@cachex_children, &Pleroma.Application.build_cachex(&1, []))
|
2020-07-03 16:18:08 +00:00
|
|
|
|
2020-07-09 16:13:16 +00:00
|
|
|
Supervisor.start_link(children ++ cachex_children,
|
2020-07-03 16:18:08 +00:00
|
|
|
strategy: :one_for_one,
|
|
|
|
name: Pleroma.Supervisor
|
|
|
|
)
|
2020-02-18 15:10:39 +00:00
|
|
|
|
|
|
|
if Pleroma.Config.get(:env) not in [:test, :benchmark] do
|
|
|
|
pleroma_rebooted?()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
defp pleroma_rebooted? do
|
|
|
|
if Restarter.Pleroma.rebooted?() do
|
|
|
|
:ok
|
|
|
|
else
|
|
|
|
Process.sleep(10)
|
|
|
|
pleroma_rebooted?()
|
|
|
|
end
|
2018-12-07 05:12:39 +00:00
|
|
|
end
|
|
|
|
|
2019-06-22 01:17:04 +00:00
|
|
|
def load_pleroma do
|
|
|
|
Application.load(:pleroma)
|
|
|
|
end
|
|
|
|
|
2018-12-07 06:46:13 +00:00
|
|
|
def get_option(options, opt, prompt, defval \\ nil, defname \\ nil) do
|
2019-06-08 14:40:40 +00:00
|
|
|
Keyword.get(options, opt) || shell_prompt(prompt, defval, defname)
|
2018-12-07 05:12:39 +00:00
|
|
|
end
|
|
|
|
|
2019-06-08 14:40:40 +00:00
|
|
|
def shell_prompt(prompt, defval \\ nil, defname \\ nil) do
|
2019-06-19 23:05:19 +00:00
|
|
|
prompt_message = "#{prompt} [#{defname || defval}] "
|
2019-06-08 14:40:40 +00:00
|
|
|
|
|
|
|
input =
|
|
|
|
if mix_shell?(),
|
|
|
|
do: Mix.shell().prompt(prompt_message),
|
|
|
|
else: :io.get_line(prompt_message)
|
|
|
|
|
|
|
|
case input do
|
|
|
|
"\n" ->
|
|
|
|
case defval do
|
|
|
|
nil ->
|
|
|
|
shell_prompt(prompt, defval, defname)
|
|
|
|
|
|
|
|
defval ->
|
|
|
|
defval
|
|
|
|
end
|
|
|
|
|
|
|
|
input ->
|
|
|
|
String.trim(input)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def shell_info(message) do
|
|
|
|
if mix_shell?(),
|
|
|
|
do: Mix.shell().info(message),
|
|
|
|
else: IO.puts(message)
|
|
|
|
end
|
|
|
|
|
|
|
|
def shell_error(message) do
|
|
|
|
if mix_shell?(),
|
|
|
|
do: Mix.shell().error(message),
|
|
|
|
else: IO.puts(:stderr, message)
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc "Performs a safe check whether `Mix.shell/0` is available (does not raise if Mix is not loaded)"
|
|
|
|
def mix_shell?, do: :erlang.function_exported(Mix, :shell, 0)
|
|
|
|
|
2018-12-07 05:12:39 +00:00
|
|
|
def escape_sh_path(path) do
|
|
|
|
~S(') <> String.replace(path, ~S('), ~S(\')) <> ~S(')
|
|
|
|
end
|
2020-07-24 17:05:42 +00:00
|
|
|
|
|
|
|
defp http_children(Tesla.Adapter.Gun) do
|
|
|
|
Pleroma.Gun.ConnectionPool.children() ++
|
|
|
|
[{Task, &Pleroma.HTTP.AdapterHelper.Gun.limiter_setup/0}]
|
|
|
|
end
|
|
|
|
|
|
|
|
defp http_children(_), do: []
|
2018-12-07 05:12:39 +00:00
|
|
|
end
|