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