Class: Imap::Backup::Client::Default

Inherits:
Object
  • Object
show all
Extended by:
Forwardable
Defined in:
lib/imap/backup/client/default.rb

Direct Known Subclasses

AppleMail

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(server, account, options) ⇒ Default

Returns a new instance of Default.



21
22
23
24
25
26
# File 'lib/imap/backup/client/default.rb', line 21

def initialize(server, , options)
  @account = 
  @options = options
  @server = server
  @state = nil
end

Instance Attribute Details

#accountObject (readonly)

Returns the value of attribute account.



16
17
18
# File 'lib/imap/backup/client/default.rb', line 16

def 
  @account
end

#optionsObject (readonly)

Returns the value of attribute options.



17
18
19
# File 'lib/imap/backup/client/default.rb', line 17

def options
  @options
end

#serverObject (readonly)

Returns the value of attribute server.



18
19
20
# File 'lib/imap/backup/client/default.rb', line 18

def server
  @server
end

#stateObject

Returns the value of attribute state.



19
20
21
# File 'lib/imap/backup/client/default.rb', line 19

def state
  @state
end

Instance Method Details

#disconnectObject

Track mailbox selection during delegation to Net::IMAP instance



54
55
56
57
# File 'lib/imap/backup/client/default.rb', line 54

def disconnect
  imap.disconnect
  self.state = nil
end

#examine(mailbox) ⇒ Object



59
60
61
62
63
64
65
# File 'lib/imap/backup/client/default.rb', line 59

def examine(mailbox)
  return if state == [:examine, mailbox]

  result = imap.examine(mailbox)
  self.state = [:examine, mailbox]
  result
end

#listObject



28
29
30
31
32
33
34
35
# File 'lib/imap/backup/client/default.rb', line 28

def list
  root = provider_root
  mailbox_lists = imap.list(root, "*")

  return [] if mailbox_lists.nil?

  mailbox_lists.map { |ml| extract_name(ml) }
end

#loginObject



37
38
39
40
41
# File 'lib/imap/backup/client/default.rb', line 37

def 
  Logger.logger.debug "Logging in: #{.username}/#{masked_password}"
  imap.(.username, .password)
  Logger.logger.debug "Login complete"
end

#reconnectObject



43
44
45
46
# File 'lib/imap/backup/client/default.rb', line 43

def reconnect
  disconnect
  
end

#select(mailbox) ⇒ Object



67
68
69
70
71
72
# File 'lib/imap/backup/client/default.rb', line 67

def select(mailbox)
  return if state == [:select, mailbox]

  imap.select(mailbox)
  self.state = [:select, mailbox]
end

#usernameObject



48
49
50
# File 'lib/imap/backup/client/default.rb', line 48

def username
  .username
end