Sha256: db5b30f2ee1b06638f86fb50e92fae570d243c10b84e0497cd52ee377c47d572
Contents?: true
Size: 966 Bytes
Versions: 28
Compression:
Stored size: 966 Bytes
Contents
module Onebox module Engine class GooglePlayAppOnebox include Engine include LayoutSupport include HTML DEFAULTS = { MAX_DESCRIPTION_CHARS: 500 } matches_regexp Regexp.new("^https?://play\\.(?:(?:\\w)+\\.)?(google)\\.com(?:/)?/store/apps/") always_https private def data price = raw.css("meta[itemprop=price]").first["content"] rescue "Free" result = { link: link, title: raw.css("meta[property='og:title']").first["content"].gsub(" - Apps on Google Play", ""), image: ::Onebox::Helpers.normalize_url_for_output(raw.css("meta[property='og:image']").first["content"]), description: raw.css("meta[name=description]").first["content"][0..DEFAULTS[:MAX_DESCRIPTION_CHARS]].chop + "...", price: price } if result[:price] == "0" result[:price] = "Free" end result end end end end
Version data entries
28 entries across 28 versions & 1 rubygems