2022-07-25 20:11:08 -04:00
|
|
|
defmodule Memex.Contexts do
|
|
|
|
@moduledoc """
|
|
|
|
The Contexts context.
|
|
|
|
"""
|
|
|
|
|
|
|
|
import Ecto.Query, warn: false
|
2022-11-24 12:44:34 -05:00
|
|
|
alias Memex.{Accounts.User, Contexts.Context, Repo}
|
2022-07-25 20:11:08 -04:00
|
|
|
|
|
|
|
@doc """
|
|
|
|
Returns the list of contexts.
|
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
2022-11-24 12:44:34 -05:00
|
|
|
iex> list_contexts(%User{id: 123})
|
2022-07-25 20:11:08 -04:00
|
|
|
[%Context{}, ...]
|
|
|
|
|
2022-11-24 12:44:34 -05:00
|
|
|
iex> list_contexts("my context", %User{id: 123})
|
2022-11-26 14:51:18 -05:00
|
|
|
[%Context{slug: "my context"}, ...]
|
2022-11-24 12:44:34 -05:00
|
|
|
|
2022-07-25 20:11:08 -04:00
|
|
|
"""
|
2022-11-24 12:44:34 -05:00
|
|
|
@spec list_contexts(User.t()) :: [Context.t()]
|
|
|
|
@spec list_contexts(search :: String.t() | nil, User.t()) :: [Context.t()]
|
|
|
|
def list_contexts(search \\ nil, user)
|
|
|
|
|
|
|
|
def list_contexts(search, %{id: user_id}) when search |> is_nil() or search == "" do
|
2022-11-26 14:51:18 -05:00
|
|
|
Repo.all(from c in Context, where: c.user_id == ^user_id, order_by: c.slug)
|
2022-11-24 12:44:34 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def list_contexts(search, %{id: user_id}) when search |> is_binary() do
|
|
|
|
trimmed_search = String.trim(search)
|
|
|
|
|
|
|
|
Repo.all(
|
|
|
|
from c in Context,
|
|
|
|
where: c.user_id == ^user_id,
|
|
|
|
where:
|
|
|
|
fragment(
|
2022-11-27 21:10:54 -05:00
|
|
|
"search @@ websearch_to_tsquery('english', ?)",
|
2022-11-24 12:44:34 -05:00
|
|
|
^trimmed_search
|
|
|
|
),
|
|
|
|
order_by: {
|
|
|
|
:desc,
|
|
|
|
fragment(
|
2022-11-27 21:10:54 -05:00
|
|
|
"ts_rank_cd(search, websearch_to_tsquery('english', ?), 4)",
|
2022-11-24 12:44:34 -05:00
|
|
|
^trimmed_search
|
|
|
|
)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Returns the list of public contexts for viewing.
|
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
|
|
|
iex> list_public_contexts()
|
|
|
|
[%Context{}, ...]
|
|
|
|
|
|
|
|
iex> list_public_contexts("my context")
|
2022-11-26 14:51:18 -05:00
|
|
|
[%Context{slug: "my context"}, ...]
|
2022-11-24 12:44:34 -05:00
|
|
|
|
|
|
|
"""
|
|
|
|
@spec list_public_contexts() :: [Context.t()]
|
|
|
|
@spec list_public_contexts(search :: String.t() | nil) :: [Context.t()]
|
|
|
|
def list_public_contexts(search \\ nil)
|
|
|
|
|
|
|
|
def list_public_contexts(search) when search |> is_nil() or search == "" do
|
2022-11-26 14:51:18 -05:00
|
|
|
Repo.all(from c in Context, where: c.visibility == :public, order_by: c.slug)
|
2022-11-24 12:44:34 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def list_public_contexts(search) when search |> is_binary() do
|
|
|
|
trimmed_search = String.trim(search)
|
|
|
|
|
|
|
|
Repo.all(
|
|
|
|
from c in Context,
|
|
|
|
where: c.visibility == :public,
|
|
|
|
where:
|
|
|
|
fragment(
|
2022-11-27 21:10:54 -05:00
|
|
|
"search @@ websearch_to_tsquery('english', ?)",
|
2022-11-24 12:44:34 -05:00
|
|
|
^trimmed_search
|
|
|
|
),
|
|
|
|
order_by: {
|
|
|
|
:desc,
|
|
|
|
fragment(
|
2022-11-27 21:10:54 -05:00
|
|
|
"ts_rank_cd(search, websearch_to_tsquery('english', ?), 4)",
|
2022-11-24 12:44:34 -05:00
|
|
|
^trimmed_search
|
|
|
|
)
|
|
|
|
}
|
|
|
|
)
|
2022-07-25 20:11:08 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Gets a single context.
|
|
|
|
|
|
|
|
Raises `Ecto.NoResultsError` if the Context does not exist.
|
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
2022-11-24 12:44:34 -05:00
|
|
|
iex> get_context!(123, %User{id: 123})
|
2022-07-25 20:11:08 -04:00
|
|
|
%Context{}
|
|
|
|
|
2022-11-24 12:44:34 -05:00
|
|
|
iex> get_context!(456, %User{id: 123})
|
2022-07-25 20:11:08 -04:00
|
|
|
** (Ecto.NoResultsError)
|
|
|
|
|
|
|
|
"""
|
2022-11-24 12:44:34 -05:00
|
|
|
@spec get_context!(Context.id(), User.t()) :: Context.t()
|
|
|
|
def get_context!(id, %{id: user_id}) do
|
|
|
|
Repo.one!(
|
|
|
|
from c in Context,
|
|
|
|
where: c.id == ^id,
|
|
|
|
where: c.user_id == ^user_id or c.visibility in [:public, :unlisted]
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def get_context!(id, _invalid_user) do
|
|
|
|
Repo.one!(
|
|
|
|
from c in Context,
|
|
|
|
where: c.id == ^id,
|
|
|
|
where: c.visibility in [:public, :unlisted]
|
|
|
|
)
|
|
|
|
end
|
2022-07-25 20:11:08 -04:00
|
|
|
|
2022-11-26 14:51:18 -05:00
|
|
|
@doc """
|
|
|
|
Gets a single context by a slug.
|
|
|
|
|
|
|
|
Raises `Ecto.NoResultsError` if the Context does not exist.
|
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
|
|
|
iex> get_context_by_slug("my-context", %User{id: 123})
|
|
|
|
%Context{}
|
|
|
|
|
|
|
|
iex> get_context_by_slug("my-context", %User{id: 123})
|
|
|
|
** (Ecto.NoResultsError)
|
|
|
|
|
|
|
|
"""
|
|
|
|
@spec get_context_by_slug(Context.slug(), User.t()) :: Context.t() | nil
|
|
|
|
def get_context_by_slug(slug, %{id: user_id}) do
|
|
|
|
Repo.one(
|
|
|
|
from c in Context,
|
|
|
|
where: c.slug == ^slug,
|
|
|
|
where: c.user_id == ^user_id or c.visibility in [:public, :unlisted]
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def get_context_by_slug(slug, _invalid_user) do
|
|
|
|
Repo.one(
|
|
|
|
from c in Context,
|
|
|
|
where: c.slug == ^slug,
|
|
|
|
where: c.visibility in [:public, :unlisted]
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2022-07-25 20:11:08 -04:00
|
|
|
@doc """
|
|
|
|
Creates a context.
|
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
2022-11-24 12:44:34 -05:00
|
|
|
iex> create_context(%{field: value}, %User{id: 123})
|
2022-07-25 20:11:08 -04:00
|
|
|
{:ok, %Context{}}
|
|
|
|
|
2022-11-24 12:44:34 -05:00
|
|
|
iex> create_context(%{field: bad_value}, %User{id: 123})
|
2022-07-25 20:11:08 -04:00
|
|
|
{:error, %Ecto.Changeset{}}
|
|
|
|
|
|
|
|
"""
|
2022-11-24 12:44:34 -05:00
|
|
|
@spec create_context(User.t()) :: {:ok, Context.t()} | {:error, Context.changeset()}
|
|
|
|
@spec create_context(attrs :: map(), User.t()) ::
|
|
|
|
{:ok, Context.t()} | {:error, Context.changeset()}
|
|
|
|
def create_context(attrs \\ %{}, user) do
|
|
|
|
Context.create_changeset(attrs, user) |> Repo.insert()
|
2022-07-25 20:11:08 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Updates a context.
|
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
2022-11-24 12:44:34 -05:00
|
|
|
iex> update_context(context, %{field: new_value}, %User{id: 123})
|
2022-07-25 20:11:08 -04:00
|
|
|
{:ok, %Context{}}
|
|
|
|
|
2022-11-24 12:44:34 -05:00
|
|
|
iex> update_context(context, %{field: bad_value}, %User{id: 123})
|
2022-07-25 20:11:08 -04:00
|
|
|
{:error, %Ecto.Changeset{}}
|
|
|
|
|
|
|
|
"""
|
2022-11-24 12:44:34 -05:00
|
|
|
@spec update_context(Context.t(), attrs :: map(), User.t()) ::
|
|
|
|
{:ok, Context.t()} | {:error, Context.changeset()}
|
|
|
|
def update_context(%Context{} = context, attrs, user) do
|
2022-07-25 20:11:08 -04:00
|
|
|
context
|
2022-11-24 12:44:34 -05:00
|
|
|
|> Context.update_changeset(attrs, user)
|
2022-07-25 20:11:08 -04:00
|
|
|
|> Repo.update()
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Deletes a context.
|
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
2022-11-24 12:44:34 -05:00
|
|
|
iex> delete_context(%Context{user_id: 123}, %User{id: 123})
|
|
|
|
{:ok, %Context{}}
|
|
|
|
|
|
|
|
iex> delete_context(%Context{user_id: 123}, %User{role: :admin})
|
2022-07-25 20:11:08 -04:00
|
|
|
{:ok, %Context{}}
|
|
|
|
|
2022-11-24 12:44:34 -05:00
|
|
|
iex> delete_context(%Context{}, %User{id: 123})
|
2022-07-25 20:11:08 -04:00
|
|
|
{:error, %Ecto.Changeset{}}
|
|
|
|
|
|
|
|
"""
|
2022-11-24 12:44:34 -05:00
|
|
|
@spec delete_context(Context.t(), User.t()) ::
|
|
|
|
{:ok, Context.t()} | {:error, Context.changeset()}
|
|
|
|
def delete_context(%Context{user_id: user_id} = context, %{id: user_id}) do
|
|
|
|
context |> Repo.delete()
|
|
|
|
end
|
|
|
|
|
|
|
|
def delete_context(%Context{} = context, %{role: :admin}) do
|
|
|
|
context |> Repo.delete()
|
2022-07-25 20:11:08 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Returns an `%Ecto.Changeset{}` for tracking context changes.
|
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
|
|
|
iex> change_context(context)
|
|
|
|
%Ecto.Changeset{data: %Context{}}
|
|
|
|
|
|
|
|
"""
|
2022-11-24 12:44:34 -05:00
|
|
|
@spec change_context(Context.t(), User.t()) :: Context.changeset()
|
|
|
|
@spec change_context(Context.t(), attrs :: map(), User.t()) :: Context.changeset()
|
|
|
|
def change_context(%Context{} = context, attrs \\ %{}, user) do
|
|
|
|
context |> Context.update_changeset(attrs, user)
|
|
|
|
end
|
2023-03-18 23:09:36 -04:00
|
|
|
|
2024-02-23 22:17:56 -05:00
|
|
|
@spec owner_or_admin?(Context.t(), User.t()) :: boolean()
|
|
|
|
def owner_or_admin?(%{user_id: user_id}, %{id: user_id}), do: true
|
|
|
|
def owner_or_admin?(_context, %{role: :admin}), do: true
|
|
|
|
def owner_or_admin?(_context, _other_user), do: false
|
2023-03-18 23:09:36 -04:00
|
|
|
|
2024-02-23 22:18:25 -05:00
|
|
|
@spec owner?(Context.t(), User.t()) :: boolean()
|
|
|
|
def owner?(%{user_id: user_id}, %{id: user_id}), do: true
|
|
|
|
def owner?(_context, _other_user), do: false
|
2022-07-25 20:11:08 -04:00
|
|
|
end
|