social.metadata.moe/lib/pleroma/web/rich_media/parsers/twitter_card.ex

16 lines
514 B
Elixir
Raw Normal View History

# Pleroma: A lightweight social networking server
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
2019-01-11 03:09:56 +09:00
defmodule Pleroma.Web.RichMedia.Parsers.TwitterCard do
2019-08-07 05:19:28 +09:00
alias Pleroma.Web.RichMedia.Parsers.MetaTagsParser
2020-06-11 22:57:31 +09:00
@spec parse(list(), map()) :: map()
2019-01-11 03:09:56 +09:00
def parse(html, data) do
2019-08-07 05:19:28 +09:00
data
2020-06-11 22:57:31 +09:00
|> MetaTagsParser.parse(html, "og", "property")
|> MetaTagsParser.parse(html, "twitter", "name")
|> MetaTagsParser.parse(html, "twitter", "property")
2019-01-11 03:09:56 +09:00
end
end