Class: CSVTasks

Inherits:
Thor
  • Object
show all
Defined in:
lib/tasks/thorfile.rb

Instance Method Summary collapse

Instance Method Details

#exportObject



8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# File 'lib/tasks/thorfile.rb', line 8

def export
  require 'config/environment'

  report_path = options.output || Rails.root.join('tmp')
  unless report_path.to_s =~ /\.csv\z/
    date = DateTime.now.strftime("%Y-%m-%d")
    base_filename = "dradis-report_#{date}.csv"

    report_filename = NamingService.name_file(
      original_filename: base_filename,
      pathname: Pathname.new(report_path)
    )

    report_path = File.join(report_path, report_filename)
  end

  detect_and_set_project_scope

  exporter = Dradis::Plugins::CSVExport::Exporter.new(task_options)
  csv = exporter.export()

  File.open(report_path, 'w') { |f| f.write csv }

  logger.info "Report file created at:\n\t#{report_path}"
end