Sha256: 15a3c91d2050b8f2afe862136dce35ad20d71ca7ab53106544349fb09806d6d1

Contents?: true

Size: 1.54 KB

Versions: 1

Compression:

Stored size: 1.54 KB

Contents

# frozen_string_literal: true

require 'r2-oas/schema/manager/file/path_item_file_manager'
require 'r2-oas/helpers/file_helper'

module R2OAS
  module Configuration
    class PathsConfig
      include Helpers::FileHelper

      def initialize(root_dir_path, schema_save_dir_name)
        @root_dir_path = root_dir_path
        @schema_save_dir_path = "#{root_dir_path}/#{schema_save_dir_name}"
      end

      def abs_paths_path
        File.expand_path("#{@root_dir_path}/.paths")
      end

      def all_load_paths?
        many_paths_file_paths.present?
      end

      def many_paths_file_paths
        @many_paths_file_paths ||= File.read(abs_paths_path).split("\n").each_with_object([]) do |relative_path, result|
          abs_path = File.expand_path("#{@schema_save_dir_path}/paths/#{relative_path}")
          result.push(abs_path) if FileTest.exists?(abs_path) && FileTest.file?(abs_path)
        end.uniq.compact.reject(&:empty?)
      end

      def create_dot_paths(silent = true)
        abs_root_path = File.expand_path(@root_dir_path)

        mkdir_p_dir_or_skip(abs_root_path, silent)
        write_file_or_skip(abs_paths_path, '', silent)
      end

      def many_components_file_paths
        @many_components_file_paths ||= many_paths_file_paths.each_with_object([]) do |unit_paths_path, result|
          file_manager = Schema::PathItemFileManager.new(unit_paths_path, :full)
          components_file_paths_at_path = file_manager.descendants_ref_paths
          result.push(*components_file_paths_at_path)
        end.uniq
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
r2-oas-0.5.0 lib/r2-oas/configuration/paths_config.rb