forked from potsda.mn/mobilizon
b315e1d7ff
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
91 lines
2.5 KiB
Elixir
91 lines
2.5 KiB
Elixir
defmodule Mobilizon.Service.Activity.Renderer.Event do
|
|
@moduledoc """
|
|
Insert an event activity
|
|
"""
|
|
alias Mobilizon.Activities.Activity
|
|
alias Mobilizon.Actors.Actor
|
|
alias Mobilizon.Service.Activity.Renderer
|
|
use Mobilizon.Web, :verified_routes
|
|
import Mobilizon.Web.Gettext, only: [dgettext: 3]
|
|
|
|
@behaviour Renderer
|
|
|
|
@impl Renderer
|
|
def render(%Activity{} = activity, options) do
|
|
locale = Keyword.get(options, :locale, "en")
|
|
Gettext.put_locale(locale)
|
|
|
|
case activity.subject do
|
|
:event_created ->
|
|
%{
|
|
body:
|
|
dgettext("activity", "The event %{event} was created by %{profile}.", %{
|
|
profile: profile(activity),
|
|
event: title(activity)
|
|
}),
|
|
url: event_url(activity)
|
|
}
|
|
|
|
:event_updated ->
|
|
%{
|
|
body:
|
|
dgettext("activity", "The event %{event} was updated by %{profile}.", %{
|
|
profile: profile(activity),
|
|
event: title(activity)
|
|
}),
|
|
url: event_url(activity)
|
|
}
|
|
|
|
:event_deleted ->
|
|
%{
|
|
body:
|
|
dgettext("activity", "The event %{event} was deleted by %{profile}.", %{
|
|
profile: profile(activity),
|
|
event: title(activity)
|
|
}),
|
|
url: nil
|
|
}
|
|
|
|
:comment_posted ->
|
|
if activity.subject_params["comment_reply_to"] do
|
|
%{
|
|
body:
|
|
dgettext("activity", "%{profile} replied to a comment on the event %{event}.", %{
|
|
profile: profile(activity),
|
|
event: title(activity)
|
|
}),
|
|
url: event_url(activity)
|
|
}
|
|
else
|
|
%{
|
|
body:
|
|
dgettext("activity", "%{profile} posted a comment on the event %{event}.", %{
|
|
profile: profile(activity),
|
|
event: title(activity)
|
|
}),
|
|
url: event_url(activity)
|
|
}
|
|
end
|
|
|
|
:event_new_participation ->
|
|
%{
|
|
body:
|
|
dgettext("activity", "%{profile} joined your event %{event}.", %{
|
|
profile: profile(activity),
|
|
event: title(activity)
|
|
}),
|
|
url: event_url(activity)
|
|
}
|
|
end
|
|
end
|
|
|
|
defp event_url(activity) do
|
|
~p"/events/#{activity.subject_params["event_uuid"]}"
|
|
|> url()
|
|
|> URI.decode()
|
|
end
|
|
|
|
defp profile(activity), do: Actor.display_name_and_username(activity.author)
|
|
defp title(activity), do: activity.subject_params["event_title"]
|
|
end
|