Sha256: 4bb8c04fc78a4ec96441d116cd2d7ac5ef5956c9e631ee4e1093fdb35838c5c1

Contents?: true

Size: 1.02 KB

Versions: 6

Compression:

Stored size: 1.02 KB

Contents

# frozen_string_literal: true

module Lcms
  module Engine
    class MediaEmbed
      SUBJECT_COLORS = { math: '00a699', ela: 'f75b28', default: 'a269bf' }.freeze

      def self.soundcloud(url, subject)
        color = SUBJECT_COLORS[subject || :default]
        oembed_url = "http://soundcloud.com/oembed?url=#{url}&iframe=true&maxheight=166&" \
                 "color=#{color}&auto_play=false&format=json"
        RestClient.get(oembed_url) do |response|
          if response.code == 200
            oembed = JSON.parse(response)['html']
            return oembed.sub!('visual=true&', '') if oembed.present?
          end
        end
        nil
      end

      def self.video_id(url)
        case url
        when /youtube/
          query = URI(url).query
          Rack::Utils.parse_query(query)['v']
        when /vimeo\.com/
          url.match(%r{https?://(www\.)?vimeo.com/(\d+)}).try(:[], 2)
        when /youtu\.be/
          url.match(%r{https?://(www\.)?youtu\.be/([^"&?\/]+)}).try(:[], 2)
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
lcms-engine-0.1.4 app/entities/lcms/engine/media_embed.rb
lcms-engine-0.3.0 app/entities/lcms/engine/media_embed.rb
lcms-engine-0.1.3 app/entities/lcms/engine/media_embed.rb
lcms-engine-0.2.0 app/entities/lcms/engine/media_embed.rb
lcms-engine-0.1.2 app/entities/lcms/engine/media_embed.rb
lcms-engine-0.1.0 app/entities/lcms/engine/media_embed.rb