Class: Imap::Backup::Account::Folder
- Inherits:
-
Object
- Object
- Imap::Backup::Account::Folder
- 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
- #client ⇒ Client::Default readonly
-
#name ⇒ String
readonly
The name of the folder.
Instance Method Summary collapse
-
#add_flags(uids, flags) ⇒ void
Adds one or more flags to a group of messages.
-
#append(message) ⇒ void
Uploads a message.
-
#clear ⇒ void
Deletes all messages from the folder.
-
#create ⇒ void
Creates the folder on the server.
-
#delete_multi(uids) ⇒ void
Deletes multiple messages.
- #exist? ⇒ Boolean
-
#fetch_multi(uids, attr = [BODY_ATTRIBUTE, "FLAGS"]) ⇒ Array<Hash>?
The requested messages.
-
#initialize(client, name) ⇒ Folder
constructor
A new instance of Folder.
-
#remove_flags(uids, flags) ⇒ void
Removes one or more flags from a group of messages.
-
#set_flags(uids, flags) ⇒ void
Sets one or more flags on a group of messages.
-
#uid_validity ⇒ Integer
The folder’s UID validity.
-
#uids ⇒ Array<Integer>
The folders message UIDs.
-
#unseen(uids) ⇒ Array<Integer>
The UIDs of messages with the ‘UNSEEN’ flag.
Methods included from RetryOnError
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
#client ⇒ Client::Default (readonly)
22 23 24 |
# File 'lib/imap/backup/account/folder.rb', line 22 def client @client end |
#name ⇒ String (readonly)
Returns 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() body = .imap_body date = .date&.to_time flags = .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 |
#clear ⇒ void
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 |
#create ⇒ void
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
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.
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_validity ⇒ Integer
Returns the folder’s UID validity.
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 |
#uids ⇒ Array<Integer>
Returns the folders message UIDs.
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 = "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 [] end |
#unseen(uids) ⇒ Array<Integer>
Returns the UIDs of messages with the ‘UNSEEN’ flag.
166 167 168 169 170 171 172 173 174 175 |
# File 'lib/imap/backup/account/folder.rb', line 166 def unseen(uids) = uids.map(&:to_s).join(",") examine client.uid_search(["UID", , "UNSEEN"]) rescue NoMethodError # Apple Mail returns an empty response when searches have no results [] rescue FolderNotFound nil end |