mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-27 13:47:58 +01:00
Clean up remainder of ArtistLinks context
This commit is contained in:
parent
9b9a30621e
commit
0ac4a898d8
2 changed files with 74 additions and 23 deletions
|
@ -10,18 +10,18 @@ defmodule Philomena.ArtistLinks do
|
||||||
alias Philomena.ArtistLinks.ArtistLink
|
alias Philomena.ArtistLinks.ArtistLink
|
||||||
alias Philomena.ArtistLinks.AutomaticVerifier
|
alias Philomena.ArtistLinks.AutomaticVerifier
|
||||||
alias Philomena.ArtistLinks.BadgeAwarder
|
alias Philomena.ArtistLinks.BadgeAwarder
|
||||||
alias Philomena.Tags.Tag
|
alias Philomena.Tags
|
||||||
|
|
||||||
@doc """
|
@doc """
|
||||||
Updates all links pending verification to transition to link verified or reset
|
Updates all artist links pending verification, by transitioning to link verified state
|
||||||
next update time.
|
or resetting next update time.
|
||||||
"""
|
"""
|
||||||
def automatic_verify! do
|
def automatic_verify! do
|
||||||
Enum.each(AutomaticVerifier.generate_updates(), &Repo.update!/1)
|
Enum.each(AutomaticVerifier.generate_updates(), &Repo.update!/1)
|
||||||
end
|
end
|
||||||
|
|
||||||
@doc """
|
@doc """
|
||||||
Gets a single artist_link.
|
Gets a single artist link.
|
||||||
|
|
||||||
Raises `Ecto.NoResultsError` if the Artist link does not exist.
|
Raises `Ecto.NoResultsError` if the Artist link does not exist.
|
||||||
|
|
||||||
|
@ -37,7 +37,7 @@ defmodule Philomena.ArtistLinks do
|
||||||
def get_artist_link!(id), do: Repo.get!(ArtistLink, id)
|
def get_artist_link!(id), do: Repo.get!(ArtistLink, id)
|
||||||
|
|
||||||
@doc """
|
@doc """
|
||||||
Creates a artist_link.
|
Creates an artist link.
|
||||||
|
|
||||||
## Examples
|
## Examples
|
||||||
|
|
||||||
|
@ -49,7 +49,7 @@ defmodule Philomena.ArtistLinks do
|
||||||
|
|
||||||
"""
|
"""
|
||||||
def create_artist_link(user, attrs \\ %{}) do
|
def create_artist_link(user, attrs \\ %{}) do
|
||||||
tag = fetch_tag(attrs["tag_name"])
|
tag = Tags.get_tag_or_alias_by_name(attrs["tag_name"])
|
||||||
|
|
||||||
%ArtistLink{}
|
%ArtistLink{}
|
||||||
|> ArtistLink.creation_changeset(attrs, user, tag)
|
|> ArtistLink.creation_changeset(attrs, user, tag)
|
||||||
|
@ -57,7 +57,7 @@ defmodule Philomena.ArtistLinks do
|
||||||
end
|
end
|
||||||
|
|
||||||
@doc """
|
@doc """
|
||||||
Updates a artist_link.
|
Updates an artist link.
|
||||||
|
|
||||||
## Examples
|
## Examples
|
||||||
|
|
||||||
|
@ -69,7 +69,7 @@ defmodule Philomena.ArtistLinks do
|
||||||
|
|
||||||
"""
|
"""
|
||||||
def update_artist_link(%ArtistLink{} = artist_link, attrs) do
|
def update_artist_link(%ArtistLink{} = artist_link, attrs) do
|
||||||
tag = fetch_tag(attrs["tag_name"])
|
tag = Tags.get_tag_or_alias_by_name(attrs["tag_name"])
|
||||||
|
|
||||||
artist_link
|
artist_link
|
||||||
|> ArtistLink.edit_changeset(attrs, tag)
|
|> ArtistLink.edit_changeset(attrs, tag)
|
||||||
|
@ -77,7 +77,7 @@ defmodule Philomena.ArtistLinks do
|
||||||
end
|
end
|
||||||
|
|
||||||
@doc """
|
@doc """
|
||||||
Transitions an artist_link to the verified state.
|
Transitions an artist link to the verified state.
|
||||||
|
|
||||||
## Examples
|
## Examples
|
||||||
|
|
||||||
|
@ -104,12 +104,36 @@ defmodule Philomena.ArtistLinks do
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@doc """
|
||||||
|
Transitions an artist link to the rejected state.
|
||||||
|
|
||||||
|
## Examples
|
||||||
|
|
||||||
|
iex> reject_artist_link(artist_link)
|
||||||
|
{:ok, %ArtistLink{}}
|
||||||
|
|
||||||
|
iex> reject_artist_link(artist_link)
|
||||||
|
{:error, %Ecto.Changeset{}}
|
||||||
|
|
||||||
|
"""
|
||||||
def reject_artist_link(%ArtistLink{} = artist_link) do
|
def reject_artist_link(%ArtistLink{} = artist_link) do
|
||||||
artist_link
|
artist_link
|
||||||
|> ArtistLink.reject_changeset()
|
|> ArtistLink.reject_changeset()
|
||||||
|> Repo.update()
|
|> Repo.update()
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@doc """
|
||||||
|
Transitions an artist link to the contacted state.
|
||||||
|
|
||||||
|
## Examples
|
||||||
|
|
||||||
|
iex> contact_artist_link(artist_link)
|
||||||
|
{:ok, %ArtistLink{}}
|
||||||
|
|
||||||
|
iex> contact_artist_link(artist_link)
|
||||||
|
{:error, %Ecto.Changeset{}}
|
||||||
|
|
||||||
|
"""
|
||||||
def contact_artist_link(%ArtistLink{} = artist_link, user) do
|
def contact_artist_link(%ArtistLink{} = artist_link, user) do
|
||||||
artist_link
|
artist_link
|
||||||
|> ArtistLink.contact_changeset(user)
|
|> ArtistLink.contact_changeset(user)
|
||||||
|
@ -117,7 +141,7 @@ defmodule Philomena.ArtistLinks do
|
||||||
end
|
end
|
||||||
|
|
||||||
@doc """
|
@doc """
|
||||||
Deletes a ArtistLink.
|
Deletes an artist link.
|
||||||
|
|
||||||
## Examples
|
## Examples
|
||||||
|
|
||||||
|
@ -133,7 +157,7 @@ defmodule Philomena.ArtistLinks do
|
||||||
end
|
end
|
||||||
|
|
||||||
@doc """
|
@doc """
|
||||||
Returns an `%Ecto.Changeset{}` for tracking artist_link changes.
|
Returns an `%Ecto.Changeset{}` for tracking artist link changes.
|
||||||
|
|
||||||
## Examples
|
## Examples
|
||||||
|
|
||||||
|
@ -145,24 +169,26 @@ defmodule Philomena.ArtistLinks do
|
||||||
ArtistLink.changeset(artist_link, %{})
|
ArtistLink.changeset(artist_link, %{})
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@doc """
|
||||||
|
Counts the number of artist links which are pending moderation action, or
|
||||||
|
nil if the user is not permitted to moderate artist links.
|
||||||
|
|
||||||
|
## Examples
|
||||||
|
|
||||||
|
iex> count_artist_links(normal_user)
|
||||||
|
nil
|
||||||
|
|
||||||
|
iex> count_artist_links(admin_user)
|
||||||
|
0
|
||||||
|
|
||||||
|
"""
|
||||||
def count_artist_links(user) do
|
def count_artist_links(user) do
|
||||||
if Canada.Can.can?(user, :index, %ArtistLink{}) do
|
if Canada.Can.can?(user, :index, %ArtistLink{}) do
|
||||||
ArtistLink
|
ArtistLink
|
||||||
|> where([ul], ul.aasm_state in ^["unverified", "link_verified"])
|
|> where([ul], ul.aasm_state in ^["unverified", "link_verified"])
|
||||||
|> Repo.aggregate(:count, :id)
|
|> Repo.aggregate(:count)
|
||||||
else
|
else
|
||||||
nil
|
nil
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
defp fetch_tag(name) do
|
|
||||||
Tag
|
|
||||||
|> preload(:aliased_tag)
|
|
||||||
|> where(name: ^name)
|
|
||||||
|> Repo.one()
|
|
||||||
|> case do
|
|
||||||
nil -> nil
|
|
||||||
tag -> tag.aliased_tag || tag
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
|
@ -81,6 +81,31 @@ defmodule Philomena.Tags do
|
||||||
"""
|
"""
|
||||||
def get_tag!(id), do: Repo.get!(Tag, id)
|
def get_tag!(id), do: Repo.get!(Tag, id)
|
||||||
|
|
||||||
|
@doc """
|
||||||
|
Gets a single tag by its name, or the tag it is aliased to, if it is aliased.
|
||||||
|
|
||||||
|
Returns nil if the tag does not exist.
|
||||||
|
|
||||||
|
## Examples
|
||||||
|
|
||||||
|
iex> get_tag_or_alias_by_name("safe")
|
||||||
|
%Tag{}
|
||||||
|
|
||||||
|
iex> get_tag_or_alias_by_name("nonexistent")
|
||||||
|
nil
|
||||||
|
|
||||||
|
"""
|
||||||
|
def get_tag_or_alias_by_name(name) do
|
||||||
|
Tag
|
||||||
|
|> where(name: ^name)
|
||||||
|
|> preload(:aliased_tag)
|
||||||
|
|> Repo.one()
|
||||||
|
|> case do
|
||||||
|
nil -> nil
|
||||||
|
tag -> tag.aliased_tag || tag
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
@doc """
|
@doc """
|
||||||
Creates a tag.
|
Creates a tag.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue