| 
									
										
										
										
											2017-04-27 14:42:22 +02:00
										 |  |  | # frozen_string_literal: true | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class ProviderDiscovery < OEmbed::ProviderDiscovery | 
					
						
							|  |  |  |   class << self | 
					
						
							| 
									
										
										
										
											2017-12-13 12:15:28 +01:00
										 |  |  |     def get(url, **options) | 
					
						
							|  |  |  |       provider = discover_provider(url, options) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       options.delete(:html) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       provider.get(url, options) | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-06 19:41:57 +09:00
										 |  |  |     def discover_provider(url, **options) | 
					
						
							| 
									
										
										
										
											2017-04-27 14:42:22 +02:00
										 |  |  |       format = options[:format] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-13 12:15:28 +01:00
										 |  |  |       if options[:html] | 
					
						
							|  |  |  |         html = Nokogiri::HTML(options[:html]) | 
					
						
							|  |  |  |       else | 
					
						
							|  |  |  |         res = Request.new(:get, url).perform | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         raise OEmbed::NotFound, url if res.code != 200 || res.mime_type != 'text/html' | 
					
						
							| 
									
										
										
										
											2017-04-27 14:42:22 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-13 12:15:28 +01:00
										 |  |  |         html = Nokogiri::HTML(res.to_s) | 
					
						
							|  |  |  |       end | 
					
						
							| 
									
										
										
										
											2017-04-27 14:42:22 +02: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-27 11:29:49 +09:00
										 |  |  |         provider_endpoint ||= html.at_xpath('//link[@type="text/xml+oembed"]')&.attribute('href')&.value | 
					
						
							| 
									
										
										
										
											2017-04-27 14:42:22 +02:00
										 |  |  |         format ||= :xml if provider_endpoint | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-08 02:00:40 +09:00
										 |  |  |       raise OEmbed::NotFound, url if provider_endpoint.nil? | 
					
						
							| 
									
										
										
										
											2017-04-27 14:42:22 +02: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 21:59:40 +09:00
										 |  |  |       OEmbed::Provider.new(provider_endpoint, format) | 
					
						
							| 
									
										
										
										
											2017-04-27 14:42:22 +02:00
										 |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | end |