Sha256: 131f0aa27521fd0cc90e52aa1a48d7e71aeff29e7ebfce40bc9ef5ba7260d67c

Contents?: true

Size: 1.2 KB

Versions: 5

Compression:

Stored size: 1.2 KB

Contents

module Roadie
  # Asset provider that looks for files on your local filesystem.
  #
  # It will be locked to a specific path and it will not access files above
  # that directory.
  class FilesystemProvider
    # Raised when FilesystemProvider is asked to access a file that lies above
    # the base path.
    class InsecurePathError < Error; end

    include AssetProvider
    attr_reader :path

    def initialize(path = Dir.pwd)
      @path = path
    end

    # @return [Stylesheet, nil]
    def find_stylesheet(name)
      file_path = build_file_path(name)
      if File.exist? file_path
        Stylesheet.new file_path, File.read(file_path)
      end
    end

    # @raise InsecurePathError
    # @return [Stylesheet]
    def find_stylesheet!(name)
      file_path = build_file_path(name)
      if File.exist? file_path
        Stylesheet.new file_path, File.read(file_path)
      else
        basename = File.basename file_path
        raise CssNotFound.new(basename, %{#{file_path} does not exist. (Original name was "#{name}")}, self)
      end
    end

    private
    def build_file_path(name)
      raise InsecurePathError, name if name.include?("..")
      File.join(@path, name[/^([^?]+)/])
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
roadie-3.0.5 lib/roadie/filesystem_provider.rb
roadie-3.0.4 lib/roadie/filesystem_provider.rb
roadie-3.0.3 lib/roadie/filesystem_provider.rb
roadie-3.0.2 lib/roadie/filesystem_provider.rb
roadie-3.0.1 lib/roadie/filesystem_provider.rb