]> git.cworth.org Git - sup/blob - lib/sup/imap.rb
yet more error handling updates
[sup] / lib / sup / imap.rb
1 require 'uri'
2 require 'net/imap'
3 require 'stringio'
4 require 'time'
5 require 'rmail'
6
7 ## fucking imap fucking sucks. what the FUCK kind of committee of
8 ## dunces designed this shit.
9
10 ## imap talks about 'unique ids' for messages, to be used for
11 ## cross-session identification. great---just what sup needs! except
12 ## it turns out the uids can be invalidated every time the
13 ## 'uidvalidity' value changes on the server, and 'uidvalidity' can
14 ## change without restriction. it can change any time you log in. it
15 ## can change EVERY time you log in. of course the imap spec "strongly
16 ## recommends" that it never change, but there's nothing to stop
17 ## people from just setting it to the current timestamp, and in fact
18 ## that's exactly what the one imap server i have at my disposal
19 ## does. thus the so-called uids are absolutely useless and imap
20 ## provides no cross-session way of uniquely identifying a
21 ## message. but thanks for the "strong recommendation", guys!
22
23 ## so right now i'm using the 'internal date' and the size of each
24 ## message to uniquely identify it, and i scan over the entire mailbox
25 ## each time i open it to map those things to message ids. that can be
26 ## slow for large mailboxes, and we'll just have to hope that there
27 ## are no collisions. ho ho! a perfectly reasonable solution!
28
29 ## fuck you, imap committee. you managed to design something nearly as
30 ## shitty as mbox but goddamn THIRTY YEARS LATER.
31 module Redwood
32
33 class IMAP < Source
34   SCAN_INTERVAL = 60 # seconds
35
36   ## upon these errors we'll try to rereconnect a few times
37   RECOVERABLE_ERRORS = [ Errno::EPIPE, Errno::ETIMEDOUT ]
38
39   attr_accessor :username, :password
40
41   def initialize uri, username, password, last_idate=nil, usual=true, archived=false, id=nil
42     raise ArgumentError, "username and password must be specified" unless username && password
43     raise ArgumentError, "not an imap uri" unless uri =~ %r!imaps?://!
44
45     super uri, last_idate, usual, archived, id
46
47     @parsed_uri = URI(uri)
48     @username = username
49     @password = password
50     @imap = nil
51     @imap_ids = {}
52     @ids = []
53     @last_scan = nil
54     @labels = [:unread]
55     @labels << mailbox.intern unless mailbox =~ /inbox/i
56     @mutex = Mutex.new
57   end
58
59   def host; @parsed_uri.host; end
60   def port; @parsed_uri.port || (ssl? ? 993 : 143); end
61   def mailbox
62     x = @parsed_uri.path[1..-1]
63     x.nil? || x.empty? ? 'INBOX' : x
64   end
65   def ssl?; @parsed_uri.scheme == 'imaps' end
66
67   def check
68     ids = 
69       @mutex.synchronize do
70         unsynchronized_scan_mailbox
71         @ids
72       end
73
74     start = ids.index(cur_offset || start_offset) or raise OutOfSyncSourceError, "Unknown message id #{cur_offset || start_offset}."
75   end
76
77   ## is this necessary? TODO: remove maybe
78   def == o; o.is_a?(IMAP) && o.uri == self.uri && o.username == self.username; end
79
80   def load_header id
81     MBox::read_header StringIO.new(raw_header(id))
82   end
83
84   def load_message id
85     RMail::Parser.read raw_full_message(id)
86   end
87
88   def raw_header id
89     unsynchronized_scan_mailbox
90     header, flags = get_imap_fields id, 'RFC822.HEADER', 'FLAGS'
91     header = header + "Status: RO\n" if flags.include? :Seen # fake an mbox-style read header # TODO: improve source-marked-as-read reporting system
92     header.gsub(/\r\n/, "\n")
93   end
94   synchronized :raw_header
95
96   def raw_full_message id
97     unsynchronized_scan_mailbox
98     get_imap_fields(id, 'RFC822').first.gsub(/\r\n/, "\n")
99   end
100   synchronized :raw_full_message
101
102   def connect
103     return if @imap
104     safely { } # do nothing!
105   end
106   synchronized :connect
107
108   def scan_mailbox
109     return if @last_scan && (Time.now - @last_scan) < SCAN_INTERVAL
110     last_id = safely do
111       @imap.examine mailbox
112       @imap.responses["EXISTS"].last
113     end
114     @last_scan = Time.now
115
116     return if last_id == @ids.length
117
118     Redwood::log "fetching IMAP headers #{(@ids.length + 1) .. last_id}"
119     values = safely { @imap.fetch((@ids.length + 1) .. last_id, ['RFC822.SIZE', 'INTERNALDATE']) }
120     values.each do |v|
121       id = make_id v
122       @ids << id
123       @imap_ids[id] = v.seqno
124     end
125   end
126   synchronized :scan_mailbox
127
128   def each
129     ids = 
130       @mutex.synchronize do
131         unsynchronized_scan_mailbox
132         @ids
133       end
134
135     start = ids.index(cur_offset || start_offset) or raise OutOfSyncSourceError, "Unknown message id #{cur_offset || start_offset}."
136
137     start.upto(ids.length - 1) do |i|         
138       id = ids[i]
139       self.cur_offset = id
140       yield id, @labels.clone
141     end
142   end
143
144   def start_offset
145     unsynchronized_scan_mailbox
146     @ids.first
147   end
148   synchronized :start_offset
149
150   def end_offset
151     unsynchronized_scan_mailbox
152     @ids.last
153   end
154   synchronized :end_offset
155
156   def pct_done; 100.0 * (@ids.index(cur_offset) || 0).to_f / (@ids.length - 1).to_f; end
157
158 private
159
160   def unsafe_connect
161     say "Connecting to IMAP server #{host}:#{port}..."
162
163     ## apparently imap.rb does a lot of threaded stuff internally and
164     ## if an exception occurs, it will catch it and re-raise it on the
165     ## calling thread. but i can't seem to catch that exception, so
166     ## i've resorted to initializing it in its own thread. surely
167     ## there's a better way.
168     exception = nil
169     ::Thread.new do
170       begin
171         #raise Net::IMAP::ByeResponseError, "simulated imap failure"
172         @imap = Net::IMAP.new host, port, ssl?
173         say "Logging in..."
174
175         ## although RFC1730 claims that "If an AUTHENTICATE command
176         ## fails with a NO response, the client may try another", in
177         ## practice it seems like they can also send a BAD response.
178         begin
179           @imap.authenticate 'CRAM-MD5', @username, @password
180         rescue Net::IMAP::BadResponseError, Net::IMAP::NoResponseError => e
181           Redwood::log "CRAM-MD5 authentication failed: #{e.class}. Trying LOGIN auth..."
182           begin
183             @imap.authenticate 'LOGIN', @username, @password
184           rescue Net::IMAP::BadResponseError, Net::IMAP::NoResponseError => e
185             Redwood::log "LOGIN authentication failed: #{e.class}. Trying plain-text LOGIN..."
186             @imap.login @username, @password
187           end
188         end
189         say "Successfully connected to #{@parsed_uri}."
190       rescue Exception => e
191         exception = e
192       ensure
193         shutup
194       end
195     end.join
196
197     raise exception if exception
198   end
199
200   def say s
201     @say_id = BufferManager.say s, @say_id if BufferManager.instantiated?
202     Redwood::log s
203   end
204
205   def shutup
206     BufferManager.clear @say_id if BufferManager.instantiated?
207     @say_id = nil
208   end
209
210   def make_id imap_stuff
211     # use 7 digits for the size. why 7? seems nice.
212     msize, mdate = imap_stuff.attr['RFC822.SIZE'] % 10000000, Time.parse(imap_stuff.attr["INTERNALDATE"])
213     sprintf("%d%07d", mdate.to_i, msize).to_i
214   end
215
216   def get_imap_fields id, *fields
217     imap_id = @imap_ids[id] or raise OutOfSyncSourceError, "Unknown message id #{id}"
218
219     retried = false
220     results = safely { @imap.fetch imap_id, (fields + ['RFC822.SIZE', 'INTERNALDATE']).uniq }.first
221     got_id = make_id results
222     raise OutOfSyncSourceError, "IMAP message mismatch: requested #{id}, got #{got_id}." unless got_id == id
223
224     fields.map { |f| results.attr[f] }
225   end
226
227   ## execute a block, connected if unconnected, re-connected up to 3
228   ## times if a recoverable error occurs, and properly dying if an
229   ## unrecoverable error occurs.
230   def safely
231     retries = 0
232     begin
233       begin
234         unsafe_connect unless @imap
235         yield
236       rescue *RECOVERABLE_ERRORS
237         if (retries += 1) <= 3
238           @imap = nil
239           retry
240         end
241         raise
242       end
243     rescue SocketError, Net::IMAP::Error, SystemCallError, IOError => e
244       raise FatalSourceError, "While communicating with IMAP server: #{e.message}"
245     end
246   end
247
248 end
249
250 Redwood::register_yaml(IMAP, %w(uri username password cur_offset usual archived id))
251
252 end