]> git.cworth.org Git - sup/blob - lib/sup/imap.rb
improved source error handling
[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   ## is this necessary? TODO: remove maybe
68   def == o; o.is_a?(IMAP) && o.uri == self.uri && o.username == self.username; end
69
70   def load_header id
71     MBox::read_header StringIO.new(raw_header(id))
72   end
73
74   def load_message id
75     RMail::Parser.read raw_full_message(id)
76   end
77
78   def raw_header id
79     unsynchronized_scan_mailbox
80     header, flags = get_imap_fields id, 'RFC822.HEADER', 'FLAGS'
81     header = header + "Status: RO\n" if flags.include? :Seen # fake an mbox-style read header # TODO: improve source-marked-as-read reporting system
82     header.gsub(/\r\n/, "\n")
83   end
84   synchronized :raw_header
85
86   def raw_full_message id
87     unsynchronized_scan_mailbox
88     get_imap_fields(id, 'RFC822').first.gsub(/\r\n/, "\n")
89   end
90   synchronized :raw_full_message
91
92   def connect
93     return if @imap
94     safely { } # do nothing!
95   end
96   synchronized :connect
97
98   def scan_mailbox
99     return if @last_scan && (Time.now - @last_scan) < SCAN_INTERVAL
100     last_id = safely do
101       @imap.examine mailbox
102       @imap.responses["EXISTS"].last
103     end
104     @last_scan = Time.now
105
106     return if last_id == @ids.length
107
108     Redwood::log "fetching IMAP headers #{(@ids.length + 1) .. last_id}"
109     values = safely { @imap.fetch((@ids.length + 1) .. last_id, ['RFC822.SIZE', 'INTERNALDATE']) }
110     values.each do |v|
111       id = make_id v
112       @ids << id
113       @imap_ids[id] = v.seqno
114     end
115   end
116   synchronized :scan_mailbox
117
118   def each
119     ids = 
120       @mutex.synchronize do
121         unsynchronized_scan_mailbox
122         @ids
123       end
124
125     start = ids.index(cur_offset || start_offset) or raise OutOfSyncSourceError, "Unknown message id #{cur_offset || start_offset}."
126
127     start.upto(ids.length - 1) do |i|         
128       id = ids[i]
129       self.cur_offset = id
130       yield id, @labels.clone
131     end
132   end
133
134   def start_offset
135     unsynchronized_scan_mailbox
136     @ids.first
137   end
138   synchronized :start_offset
139
140   def end_offset
141     unsynchronized_scan_mailbox
142     @ids.last
143   end
144   synchronized :end_offset
145
146   def pct_done; 100.0 * (@ids.index(cur_offset) || 0).to_f / (@ids.length - 1).to_f; end
147
148 private
149
150   def unsafe_connect
151     say "Connecting to IMAP server #{host}:#{port}..."
152
153     ## apparently imap.rb does a lot of threaded stuff internally and
154     ## if an exception occurs, it will catch it and re-raise it on the
155     ## calling thread. but i can't seem to catch that exception, so
156     ## i've resorted to initializing it in its own thread. surely
157     ## there's a better way.
158     exception = nil
159     ::Thread.new do
160       begin
161         #raise Net::IMAP::ByeResponseError, "simulated imap failure"
162         @imap = Net::IMAP.new host, port, ssl?
163         say "Logging in..."
164
165         ## although RFC1730 claims that "If an AUTHENTICATE command
166         ## fails with a NO response, the client may try another", in
167         ## practice it seems like they can also send a BAD response.
168         begin
169           @imap.authenticate 'CRAM-MD5', @username, @password
170         rescue Net::IMAP::BadResponseError, Net::IMAP::NoResponseError => e
171           Redwood::log "CRAM-MD5 authentication failed: #{e.class}. Trying LOGIN auth..."
172           begin
173             @imap.authenticate 'LOGIN', @username, @password
174           rescue Net::IMAP::BadResponseError, Net::IMAP::NoResponseError => e
175             Redwood::log "LOGIN authentication failed: #{e.class}. Trying plain-text LOGIN..."
176             @imap.login @username, @password
177           end
178         end
179         say "Successfully connected to #{@parsed_uri}."
180       rescue Exception => e
181         exception = e
182       ensure
183         shutup
184       end
185     end.join
186
187     raise exception if exception
188   end
189
190   def say s
191     @say_id = BufferManager.say s, @say_id if BufferManager.instantiated?
192     Redwood::log s
193   end
194
195   def shutup
196     BufferManager.clear @say_id if BufferManager.instantiated?
197     @say_id = nil
198   end
199
200   def make_id imap_stuff
201     # use 7 digits for the size. why 7? seems nice.
202     msize, mdate = imap_stuff.attr['RFC822.SIZE'] % 10000000, Time.parse(imap_stuff.attr["INTERNALDATE"])
203     sprintf("%d%07d", mdate.to_i, msize).to_i
204   end
205
206   def get_imap_fields id, *fields
207     imap_id = @imap_ids[id] or raise OutOfSyncSourceError, "Unknown message id #{id}"
208
209     retried = false
210     results = safely { @imap.fetch imap_id, (fields + ['RFC822.SIZE', 'INTERNALDATE']).uniq }.first
211     got_id = make_id results
212     raise OutOfSyncSourceError, "IMAP message mismatch: requested #{id}, got #{got_id}." unless got_id == id
213
214     fields.map { |f| results.attr[f] }
215   end
216
217   ## execute a block, connected if unconnected, re-connected up to 3
218   ## times if a recoverable error occurs, and properly dying if an
219   ## unrecoverable error occurs.
220   def safely
221     retries = 0
222     begin
223       begin
224         unsafe_connect unless @imap
225         yield
226       rescue *RECOVERABLE_ERRORS
227         if (retries += 1) <= 3
228           @imap = nil
229           retry
230         end
231         raise
232       end
233     rescue Net, SocketError, Net::IMAP::Error, SystemCallError => e
234       raise FatalSourceError, "While communicating with IMAP server: #{e.message}"
235     end
236   end
237
238 end
239
240 Redwood::register_yaml(IMAP, %w(uri username password cur_offset usual archived id))
241
242 end