Class: Jekyll::SeoTag::JSONLDDrop

Inherits:
Drops::Drop
  • Object
show all
Extended by:
Forwardable
Defined in:
lib/jekyll-seo-tag/json_ld_drop.rb

Instance Method Summary collapse

Constructor Details

#initialize(page_drop) ⇒ JSONLDDrop

page_drop should be an instance of Jekyll::SeoTag::Drop



27
28
29
30
# File 'lib/jekyll-seo-tag/json_ld_drop.rb', line 27

def initialize(page_drop)
  @mutations = {}
  @page_drop = page_drop
end

Instance Method Details

#authorObject



38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# File 'lib/jekyll-seo-tag/json_ld_drop.rb', line 38

def author
  return unless page_drop.author["name"]

  author_type = page_drop.author["type"]
  return if author_type && !VALID_AUTHOR_TYPES.include?(author_type)

  hash = {
    "@type" => author_type || "Person",
    "name"  => page_drop.author["name"],
  }

  author_url = page_drop.author["url"]
  hash["url"] = author_url if author_url

  hash
end

#fallback_dataObject



32
33
34
35
36
# File 'lib/jekyll-seo-tag/json_ld_drop.rb', line 32

def fallback_data
  @fallback_data ||= {
    "@context" => "https://schema.org",
  }
end

#imageObject



55
56
57
58
59
60
61
62
63
# File 'lib/jekyll-seo-tag/json_ld_drop.rb', line 55

def image
  return unless page_drop.image
  return page_drop.image.path if page_drop.image.keys.length == 1

  hash = page_drop.image.to_h
  hash["url"]   = hash.delete("path")
  hash["@type"] = "imageObject"
  hash
end

#publisherObject



65
66
67
68
69
70
71
72
73
74
75
76
77
# File 'lib/jekyll-seo-tag/json_ld_drop.rb', line 65

def publisher
  return unless 

  output = {
    "@type" => "Organization",
    "logo"  => {
      "@type" => "ImageObject",
      "url"   => ,
    },
  }
  output["name"] = page_drop.author.name if page_drop.author.name
  output
end

#to_json(state = nil) ⇒ Object

Returns a JSON-encoded object containing the JSON-LD data. Keys are sorted.



92
93
94
95
96
97
# File 'lib/jekyll-seo-tag/json_ld_drop.rb', line 92

def to_json(state = nil)
  keys.sort.each_with_object({}) do |(key, _), result|
    v = self[key]
    result[key] = v unless v.nil?
  end.to_json(state)
end