defmodule PhilomenaWeb.Api.Json.OembedView do use PhilomenaWeb, :view def render("error.json", _assigns) do %{ error: "Couldn't find an image" } end def render("show.json", %{image: image}) do %{ version: "1.0", type: "photo", title: "##{image.id} - #{tag_list(image)} - Derpibooru", author_url: image_first_source(image), author_name: artist_tags(image.tags), provider_name: "Derpibooru", provider_url: PhilomenaWeb.Endpoint.url(), cache_age: 7200, derpibooru_id: image.id, derpibooru_score: image.score, derpibooru_comments: image.comments_count, derpibooru_tags: Enum.map(image.tags, & &1.name) } end defp artist_tags(tags) do tags |> Enum.filter(&(&1.namespace == "artist")) |> Enum.map_join(", ", & &1.name_in_namespace) end end