Sha256: 5816118df5192237389e167eb68a1caafc8b80967dc588f1a2eba0a5e5d273ef

Contents?: true

Size: 1.51 KB

Versions: 11

Compression:

Stored size: 1.51 KB

Contents

# frozen_string_literal: true

module Nanoc::Helpers
  # @see http://nanoc.ws/doc/reference/helpers/#xmlsitemap
  module XMLSitemap
    # @option params [Array] :items
    # @option params [Proc] :rep_select
    #
    # @return [String]
    def xml_sitemap(params = {})
      require 'builder'

      # Extract parameters
      items       = params.fetch(:items) { @items.reject { |i| i[:is_hidden] } }
      select_proc = params.fetch(:rep_select, nil)

      # Create builder
      buffer = String.new
      xml = Builder::XmlMarkup.new(target: buffer, indent: 2)

      # Check for required attributes
      if @config[:base_url].nil?
        raise 'The Nanoc::Helpers::XMLSitemap helper requires the site configuration to specify the base URL for the site.'
      end

      # Build sitemap
      xml.instruct!
      xml.urlset(xmlns: 'http://www.sitemaps.org/schemas/sitemap/0.9') do
        # Add item
        items.sort_by(&:identifier).each do |item|
          reps = item.reps.select(&:path)
          reps.select! { |r| select_proc[r] } if select_proc
          reps.sort_by { |r| r.name.to_s }.each do |rep|
            xml.url do
              xml.loc URI.escape(@config[:base_url] + rep.path)
              xml.lastmod item[:mtime].__nanoc_to_iso8601_date unless item[:mtime].nil?
              xml.changefreq item[:changefreq] unless item[:changefreq].nil?
              xml.priority item[:priority] unless item[:priority].nil?
            end
          end
        end
      end

      # Return sitemap
      buffer
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
nanoc-4.8.5 lib/nanoc/helpers/xml_sitemap.rb
nanoc-4.8.4 lib/nanoc/helpers/xml_sitemap.rb
nanoc-4.8.3 lib/nanoc/helpers/xml_sitemap.rb
nanoc-4.8.2 lib/nanoc/helpers/xml_sitemap.rb
nanoc-4.8.1 lib/nanoc/helpers/xml_sitemap.rb
nanoc-4.8.0 lib/nanoc/helpers/xml_sitemap.rb
nanoc-4.7.14 lib/nanoc/helpers/xml_sitemap.rb
nanoc-4.7.13 lib/nanoc/helpers/xml_sitemap.rb
nanoc-4.7.12 lib/nanoc/helpers/xml_sitemap.rb
nanoc-4.7.11 lib/nanoc/helpers/xml_sitemap.rb
nanoc-4.7.10 lib/nanoc/helpers/xml_sitemap.rb