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 ⇒ Object
readonly
Returns the value of attribute client.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Instance Method Summary collapse
- #add_flags(uids, flags) ⇒ Object
- #append(message) ⇒ Object
- #clear ⇒ Object
- #create ⇒ Object
- #delete_multi(uids) ⇒ Object
- #exist? ⇒ Boolean
- #fetch_multi(uids, attr = [BODY_ATTRIBUTE, "FLAGS"]) ⇒ Object
-
#initialize(client, name) ⇒ Folder
constructor
A new instance of Folder.
- #remove_flags(uids, flags) ⇒ Object
- #set_flags(uids, flags) ⇒ Object
- #uid_validity ⇒ Object
- #uids ⇒ Object
- #unseen(uids) ⇒ Object
Methods included from RetryOnError
Constructor Details
#initialize(client, name) ⇒ Folder
Returns a new instance of Folder.
23 24 25 26 27 |
# File 'lib/imap/backup/account/folder.rb', line 23 def initialize(client, name) @client = client @name = name @uid_validity = nil end |
Instance Attribute Details
#client ⇒ Object (readonly)
Returns the value of attribute client.
20 21 22 |
# File 'lib/imap/backup/account/folder.rb', line 20 def client @client end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
21 22 23 |
# File 'lib/imap/backup/account/folder.rb', line 21 def name @name end |
Instance Method Details
#add_flags(uids, flags) ⇒ Object
120 121 122 123 124 125 |
# File 'lib/imap/backup/account/folder.rb', line 120 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
99 100 101 102 103 104 105 106 107 |
# File 'lib/imap/backup/account/folder.rb', line 99 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 ⇒ Object
132 133 134 135 136 137 138 |
# File 'lib/imap/backup/account/folder.rb', line 132 def clear existing = uids return if existing.empty? add_flags(existing, [:Deleted]) client.expunge end |
#create ⇒ Object
45 46 47 48 49 50 51 |
# File 'lib/imap/backup/account/folder.rb', line 45 def create return if exist? retry_on_error(errors: CREATE_RETRY_CLASSES) do client.create(utf7_encoded_name) end end |
#delete_multi(uids) ⇒ Object
109 110 111 112 |
# File 'lib/imap/backup/account/folder.rb', line 109 def delete_multi(uids) add_flags(uids, [:Deleted]) client.expunge end |
#exist? ⇒ Boolean
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
# File 'lib/imap/backup/account/folder.rb', line 29 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"]) ⇒ Object
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 |
# File 'lib/imap/backup/account/folder.rb', line 78 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
127 128 129 130 |
# File 'lib/imap/backup/account/folder.rb', line 127 def remove_flags(uids, flags) client.select(utf7_encoded_name) client.uid_store(uids, "-FLAGS", flags) end |
#set_flags(uids, flags) ⇒ Object
114 115 116 117 118 |
# File 'lib/imap/backup/account/folder.rb', line 114 def set_flags(uids, flags) client.select(utf7_encoded_name) flags.reject! { |f| f == :Recent } client.uid_store(uids, "FLAGS", flags) end |
#uid_validity ⇒ Object
53 54 55 56 57 58 59 |
# File 'lib/imap/backup/account/folder.rb', line 53 def uid_validity @uid_validity ||= begin examine client.responses["UIDVALIDITY"][-1] end end |
#uids ⇒ Object
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 |
# File 'lib/imap/backup/account/folder.rb', line 61 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) ⇒ Object
140 141 142 143 144 145 146 147 148 149 |
# File 'lib/imap/backup/account/folder.rb', line 140 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 |