Class: AwsS3WebsiteSync::Preview

Inherits:
Object
  • Object
show all
Defined in:
lib/aws_s3_website_sync/preview.rb

Class Method Summary collapse

Class Method Details

.run(changeset_path:, silent:) ⇒ Object



3
4
5
6
7
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# File 'lib/aws_s3_website_sync/preview.rb', line 3

def self.run changeset_path:, silent:
  silent_actions = silent.split(',')
  json = File.read changeset_path
  data = JSON.parse json
  puts "---[ Plan ]------------------------------------------------------------"
  puts "ChangeSet: #{File.basename(changeset_path,'.json')}"
  puts ""
  puts "WebSync will perform the following operations:"
  puts ""
  data = data.sort_by { |t| t["path"] }

  summary = {
    ignore: 0,
    delete: 0,
    create: 0,
    update: 0,
    no_change: 0
  }
  data.each do |item|
    action =
    case item['action']
    when 'ignore'
      summary[:ignore] += 1
      AwsS3WebsiteSync::Color.grey item['action']
    when 'delete'
      summary[:delete] += 1
      AwsS3WebsiteSync::Color.red item['action']
    when 'create'
      summary[:create] += 1
      AwsS3WebsiteSync::Color.green item['action']
    when 'update'
      summary[:update] += 1
      AwsS3WebsiteSync::Color.cyan item['action']
    when 'no_change'
      summary[:no_change] += 1
      AwsS3WebsiteSync::Color.yellow item['action']
    end

    unless silent_actions.include?(item["action"])
      puts "\t#{action} #{item["path"]}"
    end
  end # data.each
  puts "--------------------------------------------------------------------"
  puts [
    AwsS3WebsiteSync::Color.grey("ignore: #{summary[:ignore]}"),
    AwsS3WebsiteSync::Color.red("delete: #{summary[:delete]}"),
    AwsS3WebsiteSync::Color.green("create: #{summary[:create]}"),
    AwsS3WebsiteSync::Color.cyan("update: #{summary[:update]}"),
    AwsS3WebsiteSync::Color.yellow("no_change: #{summary[:no_change]}")
  ].join('   ')
  puts ""
end