Sha256: 33b0916787e7779355bc9c7ada9cfde961e10fcb06e984d7bcd98e1dec4e39a0

Contents?: true

Size: 1.52 KB

Versions: 7

Compression:

Stored size: 1.52 KB

Contents

module CMSScanner
  # Controllers Container
  class Controllers < Array
    attr_reader :option_parser

    # @param [ OptParsevalidator::OptParser ] options_parser
    def initialize(option_parser = OptParseValidator::OptParser.new(nil, 40))
      @option_parser = option_parser

      register_options_files
    end

    # Adds the potential option file paths to the option_parser
    def register_options_files
      [Dir.home, Dir.pwd].each do |dir|
        option_parser.options_files.class.supported_extensions.each do |ext|
          @option_parser.options_files << Pathname.new(dir).join(".#{NS.app_name}", "cli_options.#{ext}").to_s
        end
      end
    end

    # @param [ Controller::Base ] controller
    #
    # @retun [ Controllers ] self
    def <<(controller)
      options = controller.cli_options

      unless include?(controller)
        option_parser.add(*options) if options
        super(controller)
      end
      self
    end

    def run
      parsed_options             = option_parser.results
      first.class.option_parser  = option_parser
      first.class.parsed_options = parsed_options

      redirect_output_to_file(parsed_options[:output]) if parsed_options[:output]

      Timeout.timeout(parsed_options[:max_scan_duration], NS::MaxScanDurationReachedError) do
        each(&:before_scan)
        each(&:run)
        # Reverse is used here as the app/controllers/core#after_scan finishes the output
        # and must be the last one to be executed
        reverse_each(&:after_scan)
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
cms_scanner-0.0.41.10 lib/cms_scanner/controllers.rb
cms_scanner-0.0.41.9 lib/cms_scanner/controllers.rb
cms_scanner-0.0.41.8 lib/cms_scanner/controllers.rb
cms_scanner-0.0.41.7 lib/cms_scanner/controllers.rb
cms_scanner-0.0.41.6 lib/cms_scanner/controllers.rb
cms_scanner-0.0.41.5 lib/cms_scanner/controllers.rb
cms_scanner-0.0.41.4 lib/cms_scanner/controllers.rb