defmodule SEO.OpenGraph do @moduledoc """ Build OpenGraph tags. This is consumed by platforms such as Google, Facebook, Twitter, Slack, and others. For example, the following is the OpenGraph markup for the movie "The Rock" on IMDB: ```html The Rock (1996) ... ... ``` ### Resources - https://developers.google.com/search/docs/appearance/structured-data/intro-structured-data - https://developers.facebook.com/docs/sharing/webmasters/ - https://developer.twitter.com/en/docs/tweets/optimize-with-cards/overview/markup - https://developer.twitter.com/en/docs/tweets/optimize-with-cards/overview/abouts-cards """ use Phoenix.Component alias SEO.OpenGraph.Article alias SEO.OpenGraph.Audio alias SEO.OpenGraph.Book alias SEO.OpenGraph.Image alias SEO.OpenGraph.Profile alias SEO.OpenGraph.Video alias SEO.Utils defstruct [ :url, :title, :description, :determiner, :site_name, :type_detail, :image, :locale, :locale_alternate, :audio, :video, :detail ] @type t :: %__MODULE__{ title: String.t(), detail: Article.t() | Profile.t() | Book.t() | nil, url: URI.t() | String.t(), description: String.t() | nil, determiner: open_graph_determiner(), image: URI.t() | String.t() | Image.t() | nil, audio: URI.t() | String.t() | Audio.t() | nil, video: URI.t() | String.t() | Video.t() | nil, locale: language_territory() | nil, locale_alternate: language_territory() | list(language_territory()) | nil, site_name: String.t() | nil } @typedoc "language code and territory code, eg: en_US" @type language_territory :: String.t() @typedoc """ The word that appears before this item's title in a sentence. If `:auto` is chosen, the consumer of your data should chose between "a" or "an". """ @type open_graph_determiner :: :a | :an | :the | :auto | nil @doc """ Represent your items on the graph of the internet. 🤩🌐📄 ## Basic Metadata The four required properties for every page are: - `:title` - The title of your item as it should appear within the graph, e.g., "The Rock". - `:detail` - The detail of your item, e.g., `%SEO.OpenGraph.Article{}`. - `:image` - An image URL or `SEO.OpenGraph.Image` that represents your item within the graph. - `:url` - The canonical URL of your item that will be used as its permanent ID in the graph, e.g., https://www.imdb.com/title/tt0117500/. Ultimately, this is where the programs will scrape for metadata. For example, if you use a url of a YouTube video page, the scraper will use the OpenGraph tags found on that video page and not the currently-visited site. ## Optional Metadata The following properties are optional for any item and are generally recommended: - `:audio` - A URL to a complementing audio file. You may also be more detail with `SEO.OpenGraph.Audio` - `:description` - A one to two sentence description of your item. - `:determiner` - The word that appears before this item's title in a sentence. An enum of `:a`, `:an`, `:the`, `nil`, `:auto`. If `:auto` is chosen, the consumer of your data should chose between `:a` or `:an`. - `:locale` - The locale these tags are marked up in. Of the format language_TERRITORY. Unsupplied is consumed as `"en_US"`. - `:locale_alternate` - A list of other locales this page is available in and their URLs. - `:site_name` - If your item is part of a larger web site, the name which should be displayed for the overall site. e.g., "IMDb". - `:video` - A URL to a complementing video file. You may also provide more detail with `SEO.OpenGraph.Video` """ @spec build(SEO.attrs()) :: t() | nil @spec build(SEO.attrs(), SEO.config()) :: t() | nil def build(attrs, default \\ nil) def build(attrs, default) do Utils.merge_defaults(__MODULE__, attrs, default) end attr :item, __MODULE__, default: nil attr :config, :any, default: nil def meta(assigns) do assigns = assigns |> assign(:item, build(assigns[:item], assigns[:config])) |> assign_type() ~H""" <%= if @item do %> <%= if @item.title do %> <% end %><%= if @item.description do %> Utils.squash_newlines() |> Utils.truncate()} /> <% end %> <%= if @item.url do %> <% end %><%= if @item.site_name do %> <% end %><%= if @item.determiner do %> <% end %><%= if @item.locale do %> <% end %><%= if (locales = List.wrap(@item.locale_alternate)) != [] do %> <% end %><%= if @type == "book" do %> <% end %><%= if @type == "article" do %> <% end %><%= if @type == "profile" do %> <% end %><%= if (images = List.wrap(@item.image)) != [] do %> <% end %><%= if (audios = List.wrap(@item.audio)) != [] do %> <% end %><%= if (videos = List.wrap(@item.video)) != [] do %> <% end %> <% end %> """ end defp assign_type(assigns) do assign_new(assigns, :type, fn a -> case a[:item][:detail] do nil -> "website" %Article{} -> "article" %{published_time: _} -> "article" %Profile{} -> "profile" %{first_name: _} -> "profile" %Book{} -> "book" %{isbn: _} -> "book" end end) end # Access implementation @behaviour Access @impl Access @doc false def fetch(config, key), do: Map.fetch(config, key) @impl Access @doc false def get_and_update(config, key, fun) do Map.get_and_update(config, key, fun) end @impl Access @doc false def pop(config, key) do case fetch(config, key) do {:ok, val} -> {val, %{config | key: nil}} :error -> {nil, config} end end end