pleroma/lib/pleroma/release_tasks.ex

67 lines
1.6 KiB
Elixir
Raw Normal View History

2019-06-08 16:40:40 +02:00
# Pleroma: A lightweight social networking server
2020-03-03 23:44:49 +01:00
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
2019-06-08 16:40:40 +02:00
# SPDX-License-Identifier: AGPL-3.0-only
defmodule Pleroma.ReleaseTasks do
2019-06-09 12:33:44 +02:00
@repo Pleroma.Repo
2019-06-08 16:40:40 +02:00
def run(args) do
[task | args] = String.split(args)
case task do
"migrate" -> migrate(args)
2019-06-09 12:33:44 +02:00
"create" -> create()
"rollback" -> rollback(args)
2019-06-08 16:40:40 +02:00
task -> mix_task(task, args)
end
end
defp mix_task(task, args) do
Application.load(:pleroma)
2019-06-08 16:40:40 +02:00
{:ok, modules} = :application.get_key(:pleroma, :modules)
module =
Enum.find(modules, fn module ->
module = Module.split(module)
match?(["Mix", "Tasks", "Pleroma" | _], module) and
String.downcase(List.last(module)) == task
end)
if module do
module.run(args)
else
IO.puts("The task #{task} does not exist")
end
end
def migrate(args) do
Mix.Tasks.Pleroma.Ecto.Migrate.run(args)
2019-06-09 12:33:44 +02:00
end
def rollback(args) do
Mix.Tasks.Pleroma.Ecto.Rollback.run(args)
2019-06-09 12:33:44 +02:00
end
def create do
Application.load(:pleroma)
2019-06-09 12:33:44 +02:00
case @repo.__adapter__.storage_up(@repo.config) do
:ok ->
IO.puts("The database for #{inspect(@repo)} has been created")
{:error, :already_up} ->
IO.puts("The database for #{inspect(@repo)} has already been created")
{:error, term} when is_binary(term) ->
IO.puts(:stderr, "The database for #{inspect(@repo)} couldn't be created: #{term}")
{:error, term} ->
IO.puts(
:stderr,
"The database for #{inspect(@repo)} couldn't be created: #{inspect(term)}"
)
end
2019-06-08 16:40:40 +02:00
end
end