Sha256: 474aab3bd40dc1a4851dcd29bd3835039b1d33e27e2840bf469516ed2bdce13a

Contents?: true

Size: 1.68 KB

Versions: 31

Compression:

Stored size: 1.68 KB

Contents

# frozen_string_literal: true

require_relative "template_support"

module Onebox
  class Layout < Mustache
    include TemplateSupport

    VERSION = "1.0.0"

    attr_reader :cache
    attr_reader :record
    attr_reader :view

    def initialize(name, record, cache)
      @cache = cache
      @record = Onebox::Helpers.symbolize_keys(record)

      # Fix any relative paths
      if @record[:image] && @record[:image] =~ /^\/[^\/]/
        @record[:image] = "#{uri.scheme}://#{uri.host}/#{@record[:image]}"
      end

      @md5 = Digest::MD5.new
      @view = View.new(name, @record)
      @template_name = "_layout"
      @template_path = load_paths.last
    end

    def to_html
      result = cache.fetch(checksum) { render(details) }
      cache[checksum] = result if cache.respond_to?(:key?)
      result
    end

    private

    def uri
      @uri = URI(link)
    end

    def checksum
      @md5.hexdigest("#{VERSION}:#{link}")
    end

    def link
      ::Onebox::Helpers.normalize_url_for_output(record[:link])
    end

    def domain
      record[:domain] || URI(link || '').host.to_s.sub(/^www\./, '')
    end

    def details
      {
        link: record[:link],
        title: record[:title],
        favicon: record[:favicon],
        domain: domain,
        article_published_time: record[:article_published_time],
        article_published_time_title: record[:article_published_time_title],
        metadata_1_label: record[:metadata_1_label],
        metadata_1_value: record[:metadata_1_value],
        metadata_2_label: record[:metadata_2_label],
        metadata_2_value: record[:metadata_2_value],
        subname: view.template_name,
        view: view.to_html
      }
    end
  end
end

Version data entries

31 entries across 31 versions & 1 rubygems

Version Path
onebox-1.9.20 lib/onebox/layout.rb
onebox-1.9.19 lib/onebox/layout.rb
onebox-1.9.18 lib/onebox/layout.rb
onebox-1.9.17 lib/onebox/layout.rb
onebox-1.9.16 lib/onebox/layout.rb
onebox-1.9.15 lib/onebox/layout.rb
onebox-1.9.14 lib/onebox/layout.rb
onebox-1.9.13 lib/onebox/layout.rb
onebox-1.9.12 lib/onebox/layout.rb
onebox-1.9.11 lib/onebox/layout.rb
onebox-1.9.10 lib/onebox/layout.rb
onebox-1.9.9 lib/onebox/layout.rb
onebox-1.9.8 lib/onebox/layout.rb
onebox-1.9.7 lib/onebox/layout.rb
onebox-1.9.6 lib/onebox/layout.rb
onebox-1.9.5 lib/onebox/layout.rb
onebox-1.9.4 lib/onebox/layout.rb
onebox-1.9.3 lib/onebox/layout.rb
onebox-1.9.2 lib/onebox/layout.rb
onebox-1.9.1 lib/onebox/layout.rb