Sha256: 0f335e00402d0301938b6633f0cfa806aaec57ed93b9853e24ec4b0e15f65282

Contents?: true

Size: 1.54 KB

Versions: 12

Compression:

Stored size: 1.54 KB

Contents

# frozen_string_literal: true

module LicenseFinder
  class ProjectFinder
    def initialize(main_project_path, strict_matching = false)
      @package_managers = LicenseFinder::Scanner::PACKAGE_MANAGERS
      @strict_matching = strict_matching
      @main_project_path = main_project_path
    end

    def find_projects
      project_paths = []
      all_paths = find_all_paths
      until all_paths.empty?
        project_paths << collect_project_path(all_paths)
        all_paths.shift
      end
      project_paths.compact
    end

    def collect_project_path(all_paths)
      potential_project_path = all_paths.first
      is_active_project = active_project?(potential_project_path)
      return unless is_active_project

      potential_project_path.to_s
    end

    private

    def find_all_paths
      Dir.glob("#{@main_project_path}/**/").map { |path| full_path(path) }
    end

    def remove_nested(pathname, paths)
      return if project_root?(pathname)

      paths.reject! { |path| nested_path?(path, pathname) }
    end

    def project_root?(pathname)
      full_path(@main_project_path).to_s == pathname.to_s
    end

    def active_project?(project_path)
      active_project = @package_managers.map do |pm|
        pm.new(project_path: project_path, strict_matching: @strict_matching).active?
      end
      active_project.include?(true)
    end

    def full_path(rel_path)
      Pathname.new(rel_path).expand_path
    end

    def nested_path?(path, pathname)
      path.to_s.start_with?(pathname.to_s) && path.to_s != pathname.to_s
    end
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
license_finder-5.10.2 lib/license_finder/project_finder.rb
license_finder-5.10.1 lib/license_finder/project_finder.rb
license_finder-5.10.0 lib/license_finder/project_finder.rb
license_finder-5.9.2 lib/license_finder/project_finder.rb
license_finder-5.9.1 lib/license_finder/project_finder.rb
license_finder-5.9.0 lib/license_finder/project_finder.rb
license_finder-5.8.0 lib/license_finder/project_finder.rb
license_finder-5.7.1 lib/license_finder/project_finder.rb
license_finder-5.7.0 lib/license_finder/project_finder.rb
license_finder-5.6.2 lib/license_finder/project_finder.rb
license_finder-5.6.1 lib/license_finder/project_finder.rb
license_finder-5.6.0 lib/license_finder/project_finder.rb