class PathList::Walkers::GitignoreCollectingFileSystem

Public Class Methods

new(rule_groups) click to toggle source
# File lib/path_list/walkers/gitignore_collecting_file_system.rb, line 6
def initialize(rule_groups)
  @rule_groups = rule_groups
end

Public Instance Methods

allowed?(path, directory: nil, content: nil) click to toggle source
# File lib/path_list/walkers/gitignore_collecting_file_system.rb, line 10
def allowed?(path, directory: nil, content: nil)
  full_path = ::File.expand_path(path)
  return false if directory.nil? ? ::File.lstat(full_path).directory? : directory

  @rule_groups.add_gitignore_to_root(full_path)

  candidate = ::PathList::RootCandidate.new(full_path, nil, directory, content)
  @rule_groups.allowed_recursive?(candidate)
rescue ::Errno::ENOENT, ::Errno::EACCES, ::Errno::ENOTDIR, ::Errno::ELOOP, ::Errno::ENAMETOOLONG
  false
end
each(parent_full_path, parent_relative_path) { |relative_path| ... } click to toggle source
# File lib/path_list/walkers/gitignore_collecting_file_system.rb, line 22
def each(parent_full_path, parent_relative_path, &block) # rubocop:disable Metrics/MethodLength
  children = ::Dir.children(parent_full_path)
  @rule_groups.add_gitignore(parent_full_path) if children.include?('.gitignore')

  children.each do |filename|
    begin
      full_path = parent_full_path + filename
      relative_path = parent_relative_path + filename
      dir = ::File.lstat(full_path).directory?
      candidate = ::PathList::RootCandidate.new(full_path, filename, dir, nil)

      next unless @rule_groups.allowed_unrecursive?(candidate)

      if dir
        each(full_path + '/', relative_path + '/', &block)
      else
        yield relative_path
      end
    rescue ::Errno::ENOENT, ::Errno::EACCES, ::Errno::ENOTDIR, ::Errno::ELOOP, ::Errno::ENAMETOOLONG
      nil
    end
  end
end