Sha256: c976898bbf47d0c41cff00f0a37c6cdc3a3ec23e6d60f076e97d2f1f6466458c
Contents?: true
Size: 594 Bytes
Versions: 2
Compression:
Stored size: 594 Bytes
Contents
module Plagiarism module Strategies class Duck < Engine URL = 'https://duckduckgo.com/html' class << self def fetch(content, params) Typhoeus.get(URL, params: params.merge(q: content)) end def exists?(response) doc = Nokogiri::HTML response doc.css('.results_links_deep:not(.result--no-result)').all? do |row| href = row.at_css('.result__a').attributes['href'].value rescue '' uri = URI.parse href uri.host =~ whitelists_regex end end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
plagiarism2-0.0.3 | lib/plagiarism/strategries/duck.rb |
plagiarism2-0.0.2 | lib/plagiarism/strategries/duck.rb |