1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.ApplicationRequirements do
7 The module represents the collection of validations to runs before start server.
10 defmodule VerifyError, do: defexception([:message])
16 @spec verify!() :: :ok | VerifyError.t()
19 |> check_migrations_applied!()
24 defp handle_result(:ok), do: :ok
25 defp handle_result({:error, message}), do: raise(VerifyError, message: message)
27 # Checks for pending migrations.
29 def check_migrations_applied!(:ok) do
30 unless Pleroma.Config.get(
31 [:i_am_aware_this_may_cause_data_loss, :disable_migration_check],
35 Ecto.Migrator.with_repo(Pleroma.Repo, fn repo ->
37 Ecto.Migrator.migrations(repo)
40 {:down, _, _} -> false
43 if length(down_migrations) > 0 do
44 down_migrations_text =
45 Enum.map(down_migrations, fn {:down, id, name} -> "- #{name} (#{id})\n" end)
48 "The following migrations were not applied:\n#{down_migrations_text}If you want to start Pleroma anyway, set\nconfig :pleroma, :i_am_aware_this_may_cause_data_loss, disable_migration_check: true"
51 {:error, "Unapplied Migrations detected"}
63 def check_migrations_applied!(result), do: result
65 # Checks for settings of RUM indexes.
67 defp check_rum!(:ok) do
69 Ecto.Migrator.with_repo(Pleroma.Repo, fn repo ->
72 where: o.table_name == "objects",
73 where: o.column_name == "fts_content"
75 |> repo.exists?(prefix: "information_schema")
77 setting = Pleroma.Config.get([:database, :rum_enabled], false)
79 do_check_rum!(setting, migrate)
85 defp check_rum!(result), do: result
87 defp do_check_rum!(setting, migrate) do
88 case {setting, migrate} do
91 "Use `RUM` index is enabled, but were not applied migrations for it.\nIf you want to start Pleroma anyway, set\nconfig :pleroma, :database, rum_enabled: false\nOtherwise apply the following migrations:\n`mix ecto.migrate --migrations-path priv/repo/optional_migrations/rum_indexing/`"
94 {:error, "Unapplied RUM Migrations detected"}
98 "Detected applied migrations to use `RUM` index, but `RUM` isn't enable in settings.\nIf you want to use `RUM`, set\nconfig :pleroma, :database, rum_enabled: true\nOtherwise roll `RUM` migrations back.\n`mix ecto.rollback --migrations-path priv/repo/optional_migrations/rum_indexing/`"
101 {:error, "RUM Migrations detected"}