ash_postgres/lib/repo.ex

49 lines
1.3 KiB
Elixir
Raw Normal View History

2020-05-31 17:51:41 +12:00
defmodule AshPostgres.Repo do
2020-06-04 17:27:26 +12:00
@moduledoc """
Resources that use the `AshPostgres` data layer use a `Repo` to access the database.
2020-07-08 12:01:01 +12:00
This repo is a slightly modified version of an `Ecto.Repo`.
You can use `Ecto.Repo`'s `init/2` to configure your repo like normal, but
instead of returning `{:ok, config}`, use `super(config)` to pass the
configuration to the `AshPostgres.Repo` implementation.
2020-09-03 20:18:11 +12:00
Currently the only additional configuration supported is `installed_extensions`,
and the only extension that ash_postgres reacts to is `"pg_trgm"`. If this extension
is installed, then the `AshPostgres.Predicates.Trigram` custom predicate will be
available.
```
def installed_extensions() do
["pg_trgm"]
end
```
2020-06-04 17:27:26 +12:00
"""
2020-07-08 12:01:01 +12:00
@doc "Use this to inform the data layer about what extensions are installed"
2020-05-31 17:51:41 +12:00
@callback installed_extensions() :: [String.t()]
defmacro __using__(opts) do
quote bind_quoted: [opts: opts] do
otp_app = opts[:otp_app] || raise("Must configure OTP app")
use Ecto.Repo,
adapter: Ecto.Adapters.Postgres,
otp_app: otp_app
2020-06-03 14:47:41 +12:00
def installed_extensions do
2020-05-31 17:51:41 +12:00
[]
end
2020-06-28 07:11:28 +12:00
def init(_, config) do
2020-05-31 17:51:41 +12:00
new_config = Keyword.put(config, :installed_extensions, installed_extensions())
{:ok, new_config}
end
defoverridable installed_extensions: 0
end
end
end