Class: Thunderbird::MailboxExporter

Inherits:
Object
  • Object
show all
Defined in:
lib/imap/backup/thunderbird/mailbox_exporter.rb

Constant Summary collapse

EXPORT_PREFIX =
"imap-backup".freeze

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(email, serializer, profile, force: false) ⇒ MailboxExporter

Returns a new instance of MailboxExporter.



16
17
18
19
20
21
# File 'lib/imap/backup/thunderbird/mailbox_exporter.rb', line 16

def initialize(email, serializer, profile, force: false)
  @email = email
  @serializer = serializer
  @profile = profile
  @force = force
end

Instance Attribute Details

#emailObject (readonly)

Returns the value of attribute email.



11
12
13
# File 'lib/imap/backup/thunderbird/mailbox_exporter.rb', line 11

def email
  @email
end

#forceObject (readonly)

Returns the value of attribute force.



14
15
16
# File 'lib/imap/backup/thunderbird/mailbox_exporter.rb', line 14

def force
  @force
end

#profileObject (readonly)

Returns the value of attribute profile.



13
14
15
# File 'lib/imap/backup/thunderbird/mailbox_exporter.rb', line 13

def profile
  @profile
end

#serializerObject (readonly)

Returns the value of attribute serializer.



12
13
14
# File 'lib/imap/backup/thunderbird/mailbox_exporter.rb', line 12

def serializer
  @serializer
end

Instance Method Details

#runObject



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
# File 'lib/imap/backup/thunderbird/mailbox_exporter.rb', line 23

def run
  if !profile_set_up
    error "The Thunderbird profile '#{profile.title}' " \
          "has not been set up. " \
          "Please set it up before trying to export"
    return false
  end

  local_folder_ok = local_folder.set_up
  if !local_folder_ok
    error "Failed to set up local folder"
    return false
  end

  skip_for_msf = check_msf
  return false if skip_for_msf

  skip_for_local_folder = check_local_folder
  return false if skip_for_local_folder

  info "Exporting account '#{email}' to folder '#{local_folder.full_path}'"
  copy_messages

  true
end