Class: Imap::Backup::Account::Backup
- Inherits:
-
Object
- Object
- Imap::Backup::Account::Backup
- Defined in:
- lib/imap/backup/account/backup.rb
Overview
Carries out the backup of the configured folders of the account
Instance Method Summary collapse
-
#initialize(account:, refresh: false) ⇒ Backup
constructor
A new instance of Backup.
- #run ⇒ Object
Constructor Details
#initialize(account:, refresh: false) ⇒ Backup
Returns a new instance of Backup.
13 14 15 16 |
# File 'lib/imap/backup/account/backup.rb', line 13 def initialize(account:, refresh: false) @account = account @refresh = refresh end |
Instance Method Details
#run ⇒ Object
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
# File 'lib/imap/backup/account/backup.rb', line 18 def run Logger.logger.info "Running backup of account: #{account.username}" # start the connection so we get logging messages in the right order account.client.login Account::FolderEnsurer.new(account: account).run Account::LocalOnlyFolderDeleter.new(account: account).run if account.mirror_mode backup_folders = Account::BackupFolders.new( client: account.client, account: account ) if backup_folders.none? Logger.logger.warn "Account #{account.username}: No folders found to backup" return end backup_folders.each do |folder| Account::FolderBackup.new(account: account, folder: folder, refresh: refresh).run end end |