class Jekyll::JekyllNewsSitemap

Constants

INCLUDED_EXTENSIONS
MINIFY_REGEX

Matches all whitespace that follows

1. A '>' followed by a newline or
2. A '}' which closes a Liquid tag

We will strip all of this whitespace to minify the template

Public Instance Methods

generate(site) click to toggle source

Main plugin action, called by Jekyll-core

# File lib/jekyll/jekyll-news-sitemap.rb, line 11
def generate(site)
  @site = site
  @site.pages << sitemap unless file_exists?("sitemap_news.xml")
end

Private Instance Methods

destination_path(file = "sitemap_news.xml") click to toggle source

Destination for sitemap_news.xml file within the site source directory

# File lib/jekyll/jekyll-news-sitemap.rb, line 43
def destination_path(file = "sitemap_news.xml")
  @site.in_dest_dir(file)
end
file_exists?(file_path) click to toggle source

Checks if a file already exists in the site source

# File lib/jekyll/jekyll-news-sitemap.rb, line 57
def file_exists?(file_path)
  pages_and_files.any? { |p| p.url == "/#{file_path}" }
end
pages_and_files() click to toggle source
# File lib/jekyll/jekyll-news-sitemap.rb, line 61
def pages_and_files
  @pages_and_files ||= @site.pages + @site.static_files
end
sitemap() click to toggle source
# File lib/jekyll/jekyll-news-sitemap.rb, line 47
def sitemap
  site_map = PageWithoutAFile.new(@site, __dir__, "", "sitemap_news.xml")
  site_map.content = File.read(source_path).gsub(MINIFY_REGEX, "")
  site_map.data["layout"] = nil
  site_map.data["static_files"] = static_files.map(&:to_liquid)
  site_map.data["xsl"] = file_exists?("sitemap.xsl")
  site_map
end
source_path(file = "sitemap_news.xml") click to toggle source

Path to sitemap_news.xml template file

# File lib/jekyll/jekyll-news-sitemap.rb, line 38
def source_path(file = "sitemap_news.xml")
  File.expand_path "../#{file}", __dir__
end
static_files() click to toggle source

Array of all non-jekyll site files with an HTML extension

# File lib/jekyll/jekyll-news-sitemap.rb, line 33
def static_files
  @site.static_files.select { |file| INCLUDED_EXTENSIONS.include? file.extname }
end