memEx/lib/memex/notes.ex

216 lines
5.4 KiB
Elixir
Raw Normal View History

2022-07-25 20:08:40 -04:00
defmodule Memex.Notes do
@moduledoc """
The Notes context.
"""
import Ecto.Query, warn: false
2022-11-17 22:38:52 -05:00
alias Ecto.Changeset
alias Memex.{Accounts.User, Notes.Note, Repo}
2022-07-25 20:08:40 -04:00
@doc """
Returns the list of notes.
## Examples
2022-11-17 22:38:52 -05:00
iex> list_notes(%User{id: 123})
[%Note{}, ...]
iex> list_notes("my note", %User{id: 123})
[%Note{title: "my note"}, ...]
"""
@spec list_notes(User.t()) :: [Note.t()]
2022-11-19 00:21:14 -05:00
@spec list_notes(search :: String.t() | nil, User.t()) :: [Note.t()]
def list_notes(search \\ nil, user)
def list_notes(search, %{id: user_id}) when search |> is_nil() or search == "" do
2022-11-17 22:38:52 -05:00
Repo.all(from n in Note, where: n.user_id == ^user_id, order_by: n.title)
end
2022-11-19 00:21:14 -05:00
def list_notes(search, %{id: user_id}) when search |> is_binary() do
trimmed_search = String.trim(search)
Repo.all(
from n in Note,
where: n.user_id == ^user_id,
where:
fragment(
"search @@ to_tsquery(websearch_to_tsquery(?)::text || ':*')",
^trimmed_search
),
order_by: {
:desc,
fragment(
"ts_rank_cd(search, to_tsquery(websearch_to_tsquery(?)::text || ':*'), 4)",
^trimmed_search
)
}
)
end
2022-11-17 22:38:52 -05:00
@doc """
Returns the list of public notes for viewing
## Examples
iex> list_public_notes()
2022-07-25 20:08:40 -04:00
[%Note{}, ...]
2022-11-17 22:38:52 -05:00
iex> list_public_notes("my note")
[%Note{title: "my note"}, ...]
2022-07-25 20:08:40 -04:00
"""
2022-11-17 22:38:52 -05:00
@spec list_public_notes() :: [Note.t()]
2022-11-19 00:21:14 -05:00
@spec list_public_notes(search :: String.t() | nil) :: [Note.t()]
def list_public_notes(search \\ nil)
def list_public_notes(search) when search |> is_nil() or search == "" do
2022-11-17 22:38:52 -05:00
Repo.all(from n in Note, where: n.visibility == :public, order_by: n.title)
2022-07-25 20:08:40 -04:00
end
2022-11-19 00:21:14 -05:00
def list_public_notes(search) when search |> is_binary() do
trimmed_search = String.trim(search)
Repo.all(
from n in Note,
where: n.visibility == :public,
where:
fragment(
"search @@ to_tsquery(websearch_to_tsquery(?)::text || ':*')",
^trimmed_search
),
order_by: {
:desc,
fragment(
"ts_rank_cd(search, to_tsquery(websearch_to_tsquery(?)::text || ':*'), 4)",
^trimmed_search
)
}
)
end
2022-07-25 20:08:40 -04:00
@doc """
Gets a single note.
Raises `Ecto.NoResultsError` if the Note does not exist.
## Examples
2022-11-17 22:38:52 -05:00
iex> get_note!(123, %User{id: 123})
2022-07-25 20:08:40 -04:00
%Note{}
2022-11-17 22:38:52 -05:00
iex> get_note!(456, %User{id: 123})
2022-07-25 20:08:40 -04:00
** (Ecto.NoResultsError)
"""
2022-11-17 22:38:52 -05:00
@spec get_note!(Note.id(), User.t()) :: Note.t()
def get_note!(id, %{id: user_id}) do
Repo.one!(
from n in Note,
where: n.id == ^id,
where: n.user_id == ^user_id or n.visibility in [:public, :unlisted]
)
end
def get_note!(id, _invalid_user) do
Repo.one!(
from n in Note,
where: n.id == ^id,
where: n.visibility in [:public, :unlisted]
)
end
2022-07-25 20:08:40 -04:00
@doc """
Creates a note.
## Examples
2022-11-17 22:38:52 -05:00
iex> create_note(%{field: value}, %User{id: 123})
2022-07-25 20:08:40 -04:00
{:ok, %Note{}}
2022-11-17 22:38:52 -05:00
iex> create_note(%{field: bad_value}, %User{id: 123})
2022-07-25 20:08:40 -04:00
{:error, %Ecto.Changeset{}}
"""
2022-11-17 22:38:52 -05:00
@spec create_note(User.t()) :: {:ok, Note.t()} | {:error, Note.changeset()}
@spec create_note(attrs :: map(), User.t()) :: {:ok, Note.t()} | {:error, Note.changeset()}
def create_note(attrs \\ %{}, user) do
Note.create_changeset(attrs, user) |> Repo.insert()
2022-07-25 20:08:40 -04:00
end
@doc """
Updates a note.
## Examples
2022-11-17 22:38:52 -05:00
iex> update_note(note, %{field: new_value}, %User{id: 123})
2022-07-25 20:08:40 -04:00
{:ok, %Note{}}
2022-11-17 22:38:52 -05:00
iex> update_note(note, %{field: bad_value}, %User{id: 123})
2022-07-25 20:08:40 -04:00
{:error, %Ecto.Changeset{}}
"""
2022-11-17 22:38:52 -05:00
@spec update_note(Note.t(), attrs :: map(), User.t()) ::
{:ok, Note.t()} | {:error, Note.changeset()}
def update_note(%Note{} = note, attrs, user) do
2022-07-25 20:08:40 -04:00
note
2022-11-17 22:38:52 -05:00
|> Note.update_changeset(attrs, user)
2022-07-25 20:08:40 -04:00
|> Repo.update()
end
@doc """
Deletes a note.
## Examples
2022-11-17 22:38:52 -05:00
iex> delete_note(%Note{user_id: 123}, %User{id: 123})
{:ok, %Note{}}
iex> delete_note(%Note{}, %User{role: :admin})
2022-07-25 20:08:40 -04:00
{:ok, %Note{}}
2022-11-17 22:38:52 -05:00
iex> delete_note(%Note{}, %User{id: 123})
2022-07-25 20:08:40 -04:00
{:error, %Ecto.Changeset{}}
"""
2022-11-17 22:38:52 -05:00
@spec delete_note(Note.t(), User.t()) :: {:ok, Note.t()} | {:error, Note.changeset()}
def delete_note(%Note{user_id: user_id} = note, %{id: user_id}) do
note |> Repo.delete()
end
def delete_note(%Note{} = note, %{role: :admin}) do
note |> Repo.delete()
2022-07-25 20:08:40 -04:00
end
@doc """
Returns an `%Ecto.Changeset{}` for tracking note changes.
## Examples
2022-11-17 22:38:52 -05:00
iex> change_note(note, %User{id: 123})
2022-07-25 20:08:40 -04:00
%Ecto.Changeset{data: %Note{}}
2022-11-17 22:38:52 -05:00
iex> change_note(note, %{title: "new title"}, %User{id: 123})
%Ecto.Changeset{data: %Note{}}
"""
@spec change_note(Note.t(), User.t()) :: Note.changeset()
@spec change_note(Note.t(), attrs :: map(), User.t()) :: Note.changeset()
def change_note(%Note{} = note, attrs \\ %{}, user) do
note |> Note.update_changeset(attrs, user)
end
@doc """
Gets a canonical string representation of the `:tags` field for a Note
2022-07-25 20:08:40 -04:00
"""
2022-11-17 22:38:52 -05:00
@spec get_tags_string(Note.t() | Note.changeset() | [String.t()] | nil) :: String.t()
def get_tags_string(nil), do: ""
def get_tags_string(tags) when tags |> is_list(), do: tags |> Enum.join(",")
def get_tags_string(%Note{tags: tags}), do: tags |> get_tags_string()
def get_tags_string(%Changeset{} = changeset) do
changeset
|> Changeset.get_field(:tags)
|> get_tags_string()
2022-07-25 20:08:40 -04:00
end
end