Class: Imap::Backup::Account::Folder

Inherits:
Object
  • Object
show all
Extended by:
Forwardable
Includes:
RetryOnError
Defined in:
lib/imap/backup/account/folder.rb

Overview

Handles access to a folder on an IMAP server

Defined Under Namespace

Classes: FolderNotFound

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from RetryOnError

#retry_on_error

Constructor Details

#initialize(client, name) ⇒ Folder

Returns a new instance of Folder.



26
27
28
29
30
# File 'lib/imap/backup/account/folder.rb', line 26

def initialize(client, name)
  @client = client
  @name = name
  @uid_validity = nil
end

Instance Attribute Details

#clientClient::Default (readonly)

Returns:



22
23
24
# File 'lib/imap/backup/account/folder.rb', line 22

def client
  @client
end

#nameString (readonly)

Returns the name of the folder.

Returns:

  • (String)

    the name of the folder



24
25
26
# File 'lib/imap/backup/account/folder.rb', line 24

def name
  @name
end

Instance Method Details

#add_flags(uids, flags) ⇒ void

This method returns an undefined value.

Adds one or more flags to a group of messages



140
141
142
143
144
145
# File 'lib/imap/backup/account/folder.rb', line 140

def add_flags(uids, flags)
  # Use read-write access, via `select`
  client.select(utf7_encoded_name)
  flags.reject! { |f| f == :Recent }
  client.uid_store(uids, "+FLAGS", flags)
end

#append(message) ⇒ void

This method returns an undefined value.

Uploads a message



113
114
115
116
117
118
119
120
121
# File 'lib/imap/backup/account/folder.rb', line 113

def append(message)
  body = message.imap_body
  date = message.date&.to_time
  flags = message.flags & PERMITTED_FLAGS
  retry_on_error(errors: APPEND_RETRY_CLASSES, limit: 3) do
    response = client.append(utf7_encoded_name, body, flags, date)
    extract_uid(response)
  end
end

#clearvoid

This method returns an undefined value.

Deletes all messages from the folder



156
157
158
159
160
161
162
# File 'lib/imap/backup/account/folder.rb', line 156

def clear
  existing = uids
  return if existing.empty?

  add_flags(existing, [:Deleted])
  client.expunge
end

#createvoid

This method returns an undefined value.

Creates the folder on the server



51
52
53
54
55
56
57
# File 'lib/imap/backup/account/folder.rb', line 51

def create
  return if exist?

  retry_on_error(errors: CREATE_RETRY_CLASSES) do
    client.create(utf7_encoded_name)
  end
end

#delete_multi(uids) ⇒ void

This method returns an undefined value.

Deletes multiple messages



125
126
127
128
# File 'lib/imap/backup/account/folder.rb', line 125

def delete_multi(uids)
  add_flags(uids, [:Deleted])
  client.expunge
end

#exist?Boolean

Returns:

  • (Boolean)

Raises:

  • any error that occurs more than 10 times



33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# File 'lib/imap/backup/account/folder.rb', line 33

def exist?
  previous_level = Imap::Backup::Logger.logger.level
  previous_debug = Net::IMAP.debug
  Imap::Backup::Logger.logger.level = ::Logger::Severity::UNKNOWN
  Net::IMAP.debug = false
  retry_on_error(errors: EXAMINE_RETRY_CLASSES) do
    examine
  end
  true
rescue FolderNotFound
  false
ensure
  Imap::Backup::Logger.logger.level = previous_level
  Net::IMAP.debug = previous_debug
end

#fetch_multi(uids, attr = [BODY_ATTRIBUTE, "FLAGS"]) ⇒ Array<Hash>?

Returns the requested messages.

Returns:

  • (Array<Hash>, nil)

    the requested messages

Raises:

  • any error that occurs more than 10 times



90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
# File 'lib/imap/backup/account/folder.rb', line 90

def fetch_multi(uids, attr = [BODY_ATTRIBUTE, "FLAGS"])
  examine
  fetch_data_items =
    retry_on_error(errors: UID_FETCH_RETRY_CLASSES) do
      client.uid_fetch(uids, attr)
    end
  return nil if fetch_data_items.nil?

  fetch_data_items.map do |item|
    attributes = item.attr

    {
      uid: attributes["UID"],
      body: attributes[BODY_ATTRIBUTE],
      flags: attributes["FLAGS"]
    }
  end
rescue FolderNotFound
  nil
end

#remove_flags(uids, flags) ⇒ void

This method returns an undefined value.

Removes one or more flags from a group of messages



149
150
151
152
# File 'lib/imap/backup/account/folder.rb', line 149

def remove_flags(uids, flags)
  client.select(utf7_encoded_name)
  client.uid_store(uids, "-FLAGS", flags)
end

#set_flags(uids, flags) ⇒ void

This method returns an undefined value.

Sets one or more flags on a group of messages



132
133
134
135
136
# File 'lib/imap/backup/account/folder.rb', line 132

def set_flags(uids, flags)
  client.select(utf7_encoded_name)
  flags.reject! { |f| f == :Recent }
  client.uid_store(uids, "FLAGS", flags)
end

#uid_validityInteger

Returns the folder’s UID validity.

Returns:

  • (Integer)

    the folder’s UID validity

Raises:

  • any error that occurs more than 10 times



61
62
63
64
65
66
67
# File 'lib/imap/backup/account/folder.rb', line 61

def uid_validity
  @uid_validity ||=
    begin
      examine
      client.responses["UIDVALIDITY"][-1]
    end
end

#uidsArray<Integer>

Returns the folders message UIDs.

Returns:

  • (Array<Integer>)

    the folders message UIDs

Raises:

  • any error that occurs more than 10 times



71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# File 'lib/imap/backup/account/folder.rb', line 71

def uids
  examine
  client.uid_search(["ALL"]).sort
rescue FolderNotFound
  []
rescue NoMethodError
  message =
    "Folder '#{name}' caused a NoMethodError. " \
    "Probably this was `undefined method `[]' for nil:NilClass (NoMethodError)` " \
    "in `search_internal` in stdlib net/imap.rb. " \
    'This is caused by `@responses["SEARCH"] being unset/undefined. ' \
    "Among others, Apple Mail servers send empty responses when " \
    "folders are empty, causing this error."
  Imap::Backup::Logger.logger.warn message
  []
end

#unseen(uids) ⇒ Array<Integer>

Returns the UIDs of messages with the ‘UNSEEN’ flag.

Returns:

  • (Array<Integer>)

    the UIDs of messages with the ‘UNSEEN’ flag

Raises:

  • any error that occurs more than 10 times



166
167
168
169
170
171
172
173
174
175
# File 'lib/imap/backup/account/folder.rb', line 166

def unseen(uids)
  messages = uids.map(&:to_s).join(",")
  examine
  client.uid_search(["UID", messages, "UNSEEN"])
rescue NoMethodError
  # Apple Mail returns an empty response when searches have no results
  []
rescue FolderNotFound
  nil
end