Class: Imap::Backup::CLI::Local::Check

Inherits:
Object
  • Object
show all
Includes:
Helpers
Defined in:
lib/imap/backup/cli/local/check.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Helpers

#account, included, #load_config, #requested_accounts

Constructor Details

#initialize(options) ⇒ Check

Returns a new instance of Check.



12
13
14
# File 'lib/imap/backup/cli/local/check.rb', line 12

def initialize(options)
  @options = options
end

Instance Attribute Details

#optionsObject (readonly)

Returns the value of attribute options.



10
11
12
# File 'lib/imap/backup/cli/local/check.rb', line 10

def options
  @options
end

Instance Method Details

#configObject



58
59
60
# File 'lib/imap/backup/cli/local/check.rb', line 58

def config
  @config ||= load_config(**options)
end


45
46
47
# File 'lib/imap/backup/cli/local/check.rb', line 45

def print_check_results_as_json(results)
  Kernel.puts results.to_json
end


49
50
51
52
53
54
55
56
# File 'lib/imap/backup/cli/local/check.rb', line 49

def print_check_results_as_text(results)
  results.each do ||
    Kernel.puts "Account: #{[:account]}"
    [:folders].each do |folder_results|
      Kernel.puts "\t#{folder_results[:name]}: #{folder_results[:result]}"
    end
  end
end

#runObject



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
# File 'lib/imap/backup/cli/local/check.rb', line 16

def run
  results = requested_accounts(config).map do ||
    serialized_folders = Account::SerializedFolders.new(account: )
    folder_results = serialized_folders.map do |serializer, _folder|
      serializer.check_integrity!
      {name: serializer.folder, result: "OK"}
    rescue Serializer::FolderIntegrityError => e
      message = e.to_s
      if options[:delete_corrupt]
        serializer.delete
        message << " and has been deleted"
      end

      {
        name: serializer.folder,
        result: message
      }
    end
    {account: .username, folders: folder_results}
  end

  case options[:format]
  when "json"
    print_check_results_as_json(results)
  else
    print_check_results_as_text(results)
  end
end