Class: Imap::Backup::CLI::Utils

Inherits:
Thor
  • Object
show all
Includes:
Helpers, Thor::Actions
Defined in:
lib/imap/backup/cli/utils.rb

Overview

Implements the CLI utility functions

Instance Method Summary collapse

Methods included from Helpers

#account, included, #load_config, #options, #requested_accounts

Instance Method Details

#export_to_thunderbird(email) ⇒ void

This method returns an undefined value.

Exports the account’s emails to Thunderbird



71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# File 'lib/imap/backup/cli/utils.rb', line 71

def export_to_thunderbird(email)
  Imap::Backup::Logger.setup_logging options
  force = options.key?(:force) ? options[:force] : false
  profile_name = options[:profile]

  config = load_config(**options)
   = (config, email)
  profile = thunderbird_profile(profile_name)

  if !profile
    raise "Thunderbird profile '#{profile_name}' not found" if profile_name

    raise "Default Thunderbird profile not found"
  end

  serialized_folders = Account::SerializedFolders.new(account: )

  raise "No serialized folders were found for account '#{email}'" if serialized_folders.none?

  serialized_folders.each_key do |serializer|
    Thunderbird::MailboxExporter.new(
      email, serializer, profile, force: force
    ).run
  end
end

#ignore_history(email) ⇒ void

This method returns an undefined value.

Creates fake downloaded emails so that only the account’s future emails will really get backed up



31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# File 'lib/imap/backup/cli/utils.rb', line 31

def ignore_history(email)
  Logger.setup_logging options
  config = load_config(**options)
   = (config, email)

  backup_folders = Account::BackupFolders.new(
    client: .client, account: 
  )
  backup_folders.each do |folder|
    next if !folder.exist?

    serializer = Serializer.new(.local_path, folder.name)
    do_ignore_folder_history(folder, serializer)
  end
end