Sha256: dfbfce41f16d7588f7d85f2302a16155879b33edfec458ed40f378a173de65b2

Contents?: true

Size: 1.82 KB

Versions: 15

Compression:

Stored size: 1.82 KB

Contents

module Jekyll
  class DataReader
    attr_reader :site, :content
    def initialize(site)
      @site = site
      @content = {}
    end

    # Read all the files in <source>/<dir>/_drafts and create a new Draft
    # object with each one.
    #
    # dir - The String relative path of the directory to read.
    #
    # Returns nothing.
    def read(dir)
      base = site.in_source_dir(dir)
      read_data_to(base, @content)
      @content
    end

    # Read and parse all yaml files under <dir> and add them to the
    # <data> variable.
    #
    # dir - The string absolute path of the directory to read.
    # data - The variable to which data will be added.
    #
    # Returns nothing
    def read_data_to(dir, data)
      return unless File.directory?(dir) && (!site.safe || !File.symlink?(dir))

      entries = Dir.chdir(dir) do
        Dir['*.{yaml,yml,json,csv}'] + Dir['*'].select { |fn| File.directory?(fn) }
      end

      entries.each do |entry|
        path = @site.in_source_dir(dir, entry)
        next if File.symlink?(path) && site.safe

        key = sanitize_filename(File.basename(entry, '.*'))
        if File.directory?(path)
          read_data_to(path, data[key] = {})
        else
          data[key] = read_data_file(path)
        end
      end
    end

    # Determines how to read a data file.
    #
    # Returns the contents of the data file.
    def read_data_file(path)
      case File.extname(path).downcase
      when '.csv'
        CSV.read(path, {
                         :headers => true,
                         :encoding => site.config['encoding']
                     }).map(&:to_hash)
      else
        SafeYAML.load_file(path)
      end
    end

    def sanitize_filename(name)
      name.gsub!(/[^\w\s-]+/, '')
      name.gsub!(/(^|\b\s)\s+($|\s?\b)/, '\\1\\2')
      name.gsub(/\s+/, '_')
    end
  end
end

Version data entries

15 entries across 15 versions & 3 rubygems

Version Path
blackboard-3.1.9 lib/jekyll/readers/data_reader.rb
blackboard-3.1.8 lib/jekyll/readers/data_reader.rb
blackboard-3.1.7 lib/jekyll/readers/data_reader.rb
jekyll-3.1.6 lib/jekyll/readers/data_reader.rb
jekyll-3.1.5 lib/jekyll/readers/data_reader.rb
jekyll-3.1.4 lib/jekyll/readers/data_reader.rb
jekyll-3.1.3 lib/jekyll/readers/data_reader.rb
jekyll-3.1.2 lib/jekyll/readers/data_reader.rb
jekyllplusadmin-1.1.0 lib/jekyll/readers/data_reader.rb
jekyllplusadmin-1.0.0 lib/jekyll/readers/data_reader.rb
jekyll-3.1.1 lib/jekyll/readers/data_reader.rb
jekyll-3.1.0 lib/jekyll/readers/data_reader.rb
jekyll-3.1.0.pre.rc3 lib/jekyll/readers/data_reader.rb
jekyll-3.1.0.pre.rc2 lib/jekyll/readers/data_reader.rb
jekyll-3.1.0.pre.rc1 lib/jekyll/readers/data_reader.rb