1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Mix.Pleroma do
19 @cachex_children ["object", "user", "scrubber", "web_resp"]
20 @doc "Common functions to be reused in mix tasks"
22 Pleroma.Config.Holder.save_default()
23 Pleroma.Config.Oban.warn()
24 Pleroma.Application.limiters_setup()
25 Application.put_env(:phoenix, :serve_endpoints, false, persistent: true)
27 proxy_url = Pleroma.Config.get([:http, :proxy_url])
28 proxy = Pleroma.HTTP.AdapterHelper.format_proxy(proxy_url)
32 |> Pleroma.Config.get([])
33 |> Pleroma.HTTP.AdapterHelper.maybe_add_proxy_pool(proxy)
34 |> Keyword.put(:name, MyFinch)
36 unless System.get_env("DEBUG") do
37 Logger.remove_backend(:console)
40 Enum.each(@apps, &Application.ensure_all_started/1)
54 {Pleroma.Config.TransferTask, false},
56 {Finch, finch_config},
59 [name: Pleroma.MajicPool, pool_size: Pleroma.Config.get([:majic_pool, :size], 2)]}
61 elasticsearch_children()
63 cachex_children = Enum.map(@cachex_children, &Pleroma.Application.build_cachex(&1, []))
65 Supervisor.start_link(children ++ cachex_children,
66 strategy: :one_for_one,
67 name: Pleroma.Supervisor
70 if Pleroma.Config.get(:env) not in [:test, :benchmark] do
75 defp pleroma_rebooted? do
76 if Restarter.Pleroma.rebooted?() do
85 Application.load(:pleroma)
88 def get_option(options, opt, prompt, defval \\ nil, defname \\ nil) do
89 Keyword.get(options, opt) || shell_prompt(prompt, defval, defname)
92 def shell_prompt(prompt, defval \\ nil, defname \\ nil) do
93 prompt_message = "#{prompt} [#{defname || defval}] "
97 do: Mix.shell().prompt(prompt_message),
98 else: :io.get_line(prompt_message)
104 shell_prompt(prompt, defval, defname)
115 def shell_info(message) do
117 do: Mix.shell().info(message),
118 else: IO.puts(message)
121 def shell_error(message) do
123 do: Mix.shell().error(message),
124 else: IO.puts(:stderr, message)
127 @doc "Performs a safe check whether `Mix.shell/0` is available (does not raise if Mix is not loaded)"
128 def mix_shell?, do: :erlang.function_exported(Mix, :shell, 0)
130 def escape_sh_path(path) do
131 ~S(') <> String.replace(path, ~S('), ~S(\')) <> ~S(')
134 def elasticsearch_children do
135 config = Pleroma.Config.get([Pleroma.Search, :module])
137 if config == Pleroma.Search.Elasticsearch do
138 [Pleroma.Search.Elasticsearch.Cluster]