add common.ex
authorRin Toshaka <rinpatch@sdf.org>
Fri, 7 Dec 2018 05:12:39 +0000 (06:12 +0100)
committerRin Toshaka <rinpatch@sdf.org>
Fri, 7 Dec 2018 05:12:39 +0000 (06:12 +0100)
lib/mix/tasks/pleroma/common.ex [new file with mode: 0644]

diff --git a/lib/mix/tasks/pleroma/common.ex b/lib/mix/tasks/pleroma/common.ex
new file mode 100644 (file)
index 0000000..2e246c4
--- /dev/null
@@ -0,0 +1,24 @@
+defmodule Mix.Tasks.Pleroma.Common do
+  @shortdoc "Common functions to be reused in mix tasks"
+  def start_pleroma do
+    Mix.Task.run("app.start")
+  end
+
+  def get_option(options, opt, prompt, def \\ nil, defname \\ nil) do
+    Keyword.get(options, opt) ||
+      case Mix.shell().prompt("#{prompt} [#{defname || def}]") do
+        "\n" ->
+          case def do
+            nil -> get_option(options, opt, prompt, def)
+            def -> def
+          end
+
+        opt ->
+          opt |> String.trim()
+      end
+  end
+
+  def escape_sh_path(path) do
+    ~S(') <> String.replace(path, ~S('), ~S(\')) <> ~S(')
+  end
+end