1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Mix.Pleroma do
6 @doc "Common functions to be reused in mix tasks"
8 Application.put_env(:phoenix, :serve_endpoints, false, persistent: true)
9 {:ok, _} = Application.ensure_all_started(:pleroma)
13 Application.load(:pleroma)
16 def get_option(options, opt, prompt, defval \\ nil, defname \\ nil) do
17 Keyword.get(options, opt) || shell_prompt(prompt, defval, defname)
20 def shell_prompt(prompt, defval \\ nil, defname \\ nil) do
21 prompt_message = "#{prompt} [#{defname || defval}] "
25 do: Mix.shell().prompt(prompt_message),
26 else: :io.get_line(prompt_message)
32 shell_prompt(prompt, defval, defname)
43 def shell_yes?(message) do
45 do: Mix.shell().yes?("Continue?"),
46 else: shell_prompt(message, "Continue?") in ~w(Yn Y y)
49 def shell_info(message) do
51 do: Mix.shell().info(message),
52 else: IO.puts(message)
55 def shell_error(message) do
57 do: Mix.shell().error(message),
58 else: IO.puts(:stderr, message)
61 @doc "Performs a safe check whether `Mix.shell/0` is available (does not raise if Mix is not loaded)"
62 def mix_shell?, do: :erlang.function_exported(Mix, :shell, 0)
64 def escape_sh_path(path) do
65 ~S(') <> String.replace(path, ~S('), ~S(\')) <> ~S(')