e14007bac5
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
38 lines
1.0 KiB
Elixir
38 lines
1.0 KiB
Elixir
defmodule EventosWeb.ActivityPub.ObjectView do
|
|
use EventosWeb, :view
|
|
alias Eventos.Service.ActivityPub.Transmogrifier
|
|
@base %{
|
|
"@context" => [
|
|
"https://www.w3.org/ns/activitystreams",
|
|
"https://w3id.org/security/v1",
|
|
%{
|
|
"manuallyApprovesFollowers" => "as:manuallyApprovesFollowers",
|
|
"sensitive" => "as:sensitive",
|
|
"Hashtag" => "as:Hashtag",
|
|
"toot" => "http://joinmastodon.org/ns#",
|
|
"Emoji" => "toot:Emoji"
|
|
}
|
|
]
|
|
}
|
|
|
|
def render("event.json", %{event: event}) do
|
|
|
|
|
|
event = %{
|
|
"type" => "Event",
|
|
"id" => event.url,
|
|
"name" => event.title,
|
|
"category" => %{"title" => event.category.title},
|
|
"content" => event.description,
|
|
"mediaType" => "text/markdown",
|
|
"published" => Timex.format!(event.inserted_at, "{ISO:Extended}"),
|
|
"updated" => Timex.format!(event.updated_at, "{ISO:Extended}"),
|
|
}
|
|
Map.merge(event, @base)
|
|
end
|
|
|
|
def render("category.json", %{category: category}) do
|
|
category
|
|
end
|
|
end
|