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