2020-01-26 21:36:50 +01:00
|
|
|
defmodule Mobilizon.Web.JsonLD.ObjectView do
|
|
|
|
use Mobilizon.Web, :view
|
2019-03-04 18:38:30 +01:00
|
|
|
|
|
|
|
alias Mobilizon.Actors.Actor
|
|
|
|
alias Mobilizon.Addresses.Address
|
2019-09-22 16:26:23 +02:00
|
|
|
alias Mobilizon.Events.Event
|
2020-07-09 17:24:28 +02:00
|
|
|
alias Mobilizon.Posts.Post
|
2020-09-02 17:42:17 +02:00
|
|
|
alias Mobilizon.Web.{Endpoint, MediaProxy}
|
2020-01-26 21:36:50 +01:00
|
|
|
alias Mobilizon.Web.JsonLD.ObjectView
|
2019-03-04 18:38:30 +01:00
|
|
|
|
2020-09-02 10:00:39 +02:00
|
|
|
def render("group.json", %{group: %Actor{} = group}) do
|
|
|
|
%{
|
|
|
|
"@context" => "http://schema.org",
|
|
|
|
"@type" => "Organization",
|
|
|
|
"url" => group.url,
|
|
|
|
"name" => group.name || group.preferred_username,
|
|
|
|
"address" => render_address(group)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2019-03-04 18:38:30 +01:00
|
|
|
def render("event.json", %{event: %Event{} = event}) do
|
2020-07-09 17:24:28 +02:00
|
|
|
organizer = %{
|
|
|
|
"@type" => if(event.organizer_actor.type == :Group, do: "Organization", else: "Person"),
|
|
|
|
"name" => Actor.display_name(event.organizer_actor)
|
|
|
|
}
|
2019-05-22 14:12:11 +02:00
|
|
|
|
2019-03-04 18:38:30 +01:00
|
|
|
json_ld = %{
|
|
|
|
"@context" => "https://schema.org",
|
|
|
|
"@type" => "Event",
|
|
|
|
"name" => event.title,
|
|
|
|
"description" => event.description,
|
2020-07-09 17:24:28 +02:00
|
|
|
# We assume for now performer == organizer
|
|
|
|
"performer" => organizer,
|
|
|
|
"organizer" => organizer,
|
2020-08-10 16:22:15 +02:00
|
|
|
"location" => render_location(event),
|
2020-07-09 17:24:28 +02:00
|
|
|
"eventStatus" =>
|
|
|
|
if(event.status == :cancelled,
|
|
|
|
do: "https://schema.org/EventCancelled",
|
|
|
|
else: "https://schema.org/EventScheduled"
|
2020-09-02 17:42:17 +02:00
|
|
|
),
|
|
|
|
"image" =>
|
|
|
|
if(event.picture,
|
|
|
|
do: [
|
|
|
|
event.picture.file.url |> MediaProxy.url()
|
|
|
|
],
|
|
|
|
else: ["#{Endpoint.url()}/img/mobilizon_default_card.png"]
|
2020-07-09 17:24:28 +02:00
|
|
|
)
|
2019-03-04 18:38:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
json_ld =
|
|
|
|
if event.begins_on,
|
|
|
|
do: Map.put(json_ld, "startDate", DateTime.to_iso8601(event.begins_on)),
|
|
|
|
else: json_ld
|
|
|
|
|
|
|
|
json_ld =
|
|
|
|
if event.ends_on,
|
|
|
|
do: Map.put(json_ld, "endDate", DateTime.to_iso8601(event.ends_on)),
|
|
|
|
else: json_ld
|
|
|
|
|
|
|
|
json_ld
|
|
|
|
end
|
|
|
|
|
|
|
|
def render("place.json", %{address: %Address{} = address}) do
|
|
|
|
%{
|
|
|
|
"@type" => "Place",
|
|
|
|
"name" => address.description,
|
2020-09-02 10:00:39 +02:00
|
|
|
"address" => render_one(address, ObjectView, "address.json", as: :address)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def render("address.json", %{address: %Address{} = address}) do
|
|
|
|
%{
|
|
|
|
"@type" => "PostalAddress",
|
|
|
|
"streetAddress" => address.street,
|
|
|
|
"addressLocality" => address.locality,
|
|
|
|
"postalCode" => address.postal_code,
|
|
|
|
"addressRegion" => address.region,
|
|
|
|
"addressCountry" => address.country
|
2019-03-04 18:38:30 +01:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2020-07-09 17:24:28 +02:00
|
|
|
def render("post.json", %{post: %Post{} = post}) do
|
|
|
|
%{
|
|
|
|
"@context" => "https://schema.org",
|
|
|
|
"@type" => "Article",
|
|
|
|
"name" => post.title,
|
|
|
|
"author" => %{
|
|
|
|
"@type" => "Organization",
|
|
|
|
"name" => Actor.display_name(post.attributed_to)
|
|
|
|
},
|
|
|
|
"datePublished" => post.publish_at,
|
|
|
|
"dateModified" => post.updated_at
|
|
|
|
}
|
|
|
|
end
|
2020-08-10 16:22:15 +02:00
|
|
|
|
2020-09-02 10:00:39 +02:00
|
|
|
defp render_location(%{physical_address: %Address{} = address}),
|
2020-08-10 16:22:15 +02:00
|
|
|
do: render_one(address, ObjectView, "place.json", as: :address)
|
|
|
|
|
|
|
|
# For now the Virtual Location of an event is it's own URL,
|
|
|
|
# but in the future it will be a special field
|
|
|
|
defp render_location(%Event{url: event_url}) do
|
|
|
|
%{
|
|
|
|
"@type" => "VirtualLocation",
|
|
|
|
"url" => event_url
|
|
|
|
}
|
|
|
|
end
|
2020-09-02 10:00:39 +02:00
|
|
|
|
|
|
|
defp render_location(_), do: nil
|
|
|
|
|
|
|
|
defp render_address(%{physical_address: %Address{} = address}),
|
|
|
|
do: render_one(address, ObjectView, "address.json", as: :address)
|
|
|
|
|
|
|
|
defp render_address(_), do: nil
|
2019-03-04 18:38:30 +01:00
|
|
|
end
|