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

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

Constant Summary collapse

BODY_ATTRIBUTE =
"BODY[]".freeze
UID_FETCH_RETRY_CLASSES =
[::EOFError, ::Errno::ECONNRESET, ::IOError].freeze
APPEND_RETRY_CLASSES =
[::Net::IMAP::BadResponseError].freeze
CREATE_RETRY_CLASSES =
[::Net::IMAP::BadResponseError].freeze
EXAMINE_RETRY_CLASSES =
[::Net::IMAP::BadResponseError].freeze
PERMITTED_FLAGS =
%i(Answered Draft Flagged Seen).freeze

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.



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

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

Instance Attribute Details

#clientObject (readonly)

Returns the value of attribute client.



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

def client
  @client
end

#nameObject (readonly)

Returns the value of attribute name.



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

def name
  @name
end

Instance Method Details

#add_flags(uids, flags) ⇒ Object



117
118
119
120
121
122
# File 'lib/imap/backup/account/folder.rb', line 117

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) ⇒ Object



96
97
98
99
100
101
102
103
104
# File 'lib/imap/backup/account/folder.rb', line 96

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

#clearObject



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

def clear
  existing = uids
  return if existing.empty?

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

#createObject



42
43
44
45
46
47
48
# File 'lib/imap/backup/account/folder.rb', line 42

def create
  return if exist?

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

#delete_multi(uids) ⇒ Object



106
107
108
109
# File 'lib/imap/backup/account/folder.rb', line 106

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

#exist?Boolean

Returns:

  • (Boolean)


33
34
35
36
37
38
39
40
# File 'lib/imap/backup/account/folder.rb', line 33

def exist?
  retry_on_error(errors: EXAMINE_RETRY_CLASSES) do
    examine
  end
  true
rescue FolderNotFound
  false
end

#fetch_multi(uids, attr = [BODY_ATTRIBUTE, "FLAGS"]) ⇒ Object



75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# File 'lib/imap/backup/account/folder.rb', line 75

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) ⇒ Object



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

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

#set_flags(uids, flags) ⇒ Object



111
112
113
114
115
# File 'lib/imap/backup/account/folder.rb', line 111

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

#uid_validityObject



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

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

#uidsObject



58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# File 'lib/imap/backup/account/folder.rb', line 58

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."
  Logger.logger.warn message
  []
end

#unseen(uids) ⇒ Object



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

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