2017-04-27 08:42:22 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ProviderDiscovery < OEmbed::ProviderDiscovery
|
|
|
|
class << self
|
2017-12-13 06:15:28 -05:00
|
|
|
def get(url, **options)
|
|
|
|
provider = discover_provider(url, options)
|
|
|
|
|
|
|
|
options.delete(:html)
|
|
|
|
|
|
|
|
provider.get(url, options)
|
|
|
|
end
|
|
|
|
|
2017-12-06 05:41:57 -05:00
|
|
|
def discover_provider(url, **options)
|
2017-04-27 08:42:22 -04:00
|
|
|
format = options[:format]
|
|
|
|
|
2018-03-24 07:49:54 -04:00
|
|
|
html = if options[:html]
|
|
|
|
Nokogiri::HTML(options[:html])
|
|
|
|
else
|
|
|
|
Request.new(:get, url).perform do |res|
|
|
|
|
raise OEmbed::NotFound, url if res.code != 200 || res.mime_type != 'text/html'
|
2018-03-26 08:02:10 -04:00
|
|
|
Nokogiri::HTML(res.body_with_limit)
|
2018-03-24 07:49:54 -04:00
|
|
|
end
|
|
|
|
end
|
2017-04-27 08:42:22 -04:00
|
|
|
|
|
|
|
if format.nil? || format == :json
|
|
|
|
provider_endpoint ||= html.at_xpath('//link[@type="application/json+oembed"]')&.attribute('href')&.value
|
|
|
|
format ||= :json if provider_endpoint
|
|
|
|
end
|
|
|
|
|
|
|
|
if format.nil? || format == :xml
|
2017-12-26 21:29:49 -05:00
|
|
|
provider_endpoint ||= html.at_xpath('//link[@type="text/xml+oembed"]')&.attribute('href')&.value
|
2017-04-27 08:42:22 -04:00
|
|
|
format ||= :xml if provider_endpoint
|
|
|
|
end
|
|
|
|
|
2017-05-07 13:00:40 -04:00
|
|
|
raise OEmbed::NotFound, url if provider_endpoint.nil?
|
2017-04-27 08:42:22 -04:00
|
|
|
begin
|
|
|
|
provider_endpoint = Addressable::URI.parse(provider_endpoint)
|
|
|
|
provider_endpoint.query = nil
|
|
|
|
provider_endpoint = provider_endpoint.to_s
|
|
|
|
rescue Addressable::URI::InvalidURIError
|
|
|
|
raise OEmbed::NotFound, url
|
|
|
|
end
|
|
|
|
|
2017-06-04 08:59:40 -04:00
|
|
|
OEmbed::Provider.new(provider_endpoint, format)
|
2017-04-27 08:42:22 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|