Sha256: d88af2cefd2475e91ee1022d8f1db403fa7b80ef959017ce210b85a3cd9fad2a

Contents?: true

Size: 1.63 KB

Versions: 2

Compression:

Stored size: 1.63 KB

Contents

# frozen_string_literal: true

module Onebox
  module Engine
    class StackExchangeOnebox
      include Engine
      include LayoutSupport
      include JSON

      def self.domains
        %w(stackexchange.com stackoverflow.com superuser.com serverfault.com askubuntu.com stackapps.com mathoverflow.net)
          .map { |domain| Regexp.escape(domain) }
      end

      matches_regexp(/^https?:\/\/(?:(?:(?<subsubdomain>\w*)\.)?(?<subdomain>\w*)\.)?(?<domain>#{domains.join('|')})\/((?:questions|q)\/(?<question_id>\d*)(\/.*\/(?<answer_id1>\d*))?|(a\/(?<answer_id2>\d*)))/)

      def always_https?
        uri.host.split('.').length <= 3
      end

      private

      def match
        @match ||= @url.match(@@matcher)
      end

      def url
        domain = URI(@url).host
        question_id = match[:question_id]
        answer_id = match[:answer_id2] || match[:answer_id1]

        if answer_id
          "https://api.stackexchange.com/2.2/answers/#{answer_id}?site=#{domain}&filter=!.FjueITQdx6-Rq3Ue9PWG.QZ2WNdW"
        else
          "https://api.stackexchange.com/2.2/questions/#{question_id}?site=#{domain}&filter=!5-duuxrJa-iw9oVvOA(JNimB5VIisYwZgwcfNI"
        end
      end

      def data
        return @data if defined?(@data)

        result = raw['items'][0]
        if result
          result['creation_date'] =
              Time.at(result['creation_date'].to_i).strftime("%I:%M%p - %d %b %y %Z")

          result['tags'] = result['tags'].take(4).join(', ')
          result['is_answer'] = result.key?('answer_id')
          result['is_question'] = result.key?('question_id')
        end

        @data = result
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
onebox-2.2.14 lib/onebox/engine/stack_exchange_onebox.rb
onebox-2.2.13 lib/onebox/engine/stack_exchange_onebox.rb