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 Pleroma.Repo do
8 adapter: Ecto.Adapters.Postgres,
9 migration_timestamps: [type: :naive_datetime_usec]
13 defmodule Instrumenter do
14 use Prometheus.EctoInstrumenter
18 Dynamically loads the repository url from the
19 DATABASE_URL environment variable.
22 {:ok, Keyword.put(opts, :url, System.get_env("DATABASE_URL"))}
25 @doc "find resource based on prepared query"
26 @spec find_resource(Ecto.Query.t()) :: {:ok, struct()} | {:error, :not_found}
27 def find_resource(%Ecto.Query{} = query) do
28 case __MODULE__.one(query) do
29 nil -> {:error, :not_found}
30 resource -> {:ok, resource}
34 def find_resource(_query), do: {:error, :not_found}
37 Gets association from cache or loads if need
41 iex> Repo.get_assoc(token, :user)
45 @spec get_assoc(struct(), atom()) :: {:ok, struct()} | {:error, :not_found}
46 def get_assoc(resource, association) do
47 case __MODULE__.preload(resource, association) do
48 %{^association => assoc} when not is_nil(assoc) -> {:ok, assoc}
49 _ -> {:error, :not_found}
53 def check_migrations_applied!() do
54 unless Pleroma.Config.get(
55 [:i_am_aware_this_may_cause_data_loss, :disable_migration_check],
58 Ecto.Migrator.with_repo(__MODULE__, fn repo ->
60 Ecto.Migrator.migrations(repo)
63 {:down, _, _} -> false
66 if length(down_migrations) > 0 do
67 down_migrations_text =
68 Enum.map(down_migrations, fn {:down, id, name} -> "- #{name} (#{id})\n" end)
71 "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"
74 raise Pleroma.Repo.UnappliedMigrationsError
83 defmodule Pleroma.Repo.UnappliedMigrationsError do
84 defexception message: "Unapplied Migrations detected"