]> git.cworth.org Git - sup/blob - lib/sup/modes/edit-message-mode.rb
Merge branch 'master' into next
[sup] / lib / sup / modes / edit-message-mode.rb
1 require 'tempfile'
2 require 'socket' # just for gethostname!
3 require 'pathname'
4 require 'rmail'
5
6 module Redwood
7
8 class SendmailCommandFailed < StandardError; end
9
10 class EditMessageMode < LineCursorMode
11   DECORATION_LINES = 1
12
13   FORCE_HEADERS = %w(From To Cc Bcc Subject)
14   MULTI_HEADERS = %w(To Cc Bcc)
15   NON_EDITABLE_HEADERS = %w(Message-Id Date)
16
17   HookManager.register "signature", <<EOS
18 Generates a message signature.
19 Variables:
20       header: an object that supports string-to-string hashtable-style access
21               to the raw headers for the message. E.g., header["From"],
22               header["To"], etc.
23   from_email: the email part of the From: line, or nil if empty
24 Return value:
25   A string (multi-line ok) containing the text of the signature, or nil to
26   use the default signature.
27 EOS
28
29   HookManager.register "before-edit", <<EOS
30 Modifies message body and headers before editing a new message. Variables
31 should be modified in place.
32 Variables:
33         header: a hash of headers. See 'signature' hook for documentation.
34         body: an array of lines of body text.
35 Return value:
36         none
37 EOS
38
39   attr_reader :status
40   attr_accessor :body, :header
41   bool_reader :edited
42
43   register_keymap do |k|
44     k.add :send_message, "Send message", 'y'
45     k.add :edit_message_or_field, "Edit selected field", 'e'
46     k.add :edit_to, "Edit To:", 't'
47     k.add :edit_cc, "Edit Cc:", 'c'
48     k.add :edit_subject, "Edit Subject", 's'
49     k.add :edit_message, "Edit message", :enter
50     k.add :save_as_draft, "Save as draft", 'P'
51     k.add :attach_file, "Attach a file", 'a'
52     k.add :delete_attachment, "Delete an attachment", 'd'
53     k.add :move_cursor_right, "Move selector to the right", :right, 'l'
54     k.add :move_cursor_left, "Move selector to the left", :left, 'h'
55   end
56
57   def initialize opts={}
58     @header = opts.delete(:header) || {} 
59     @header_lines = []
60
61     @body = opts.delete(:body) || []
62     @body += sig_lines if $config[:edit_signature] && !opts.delete(:have_signature)
63
64     if opts[:attachments]
65       @attachments = opts[:attachments].values
66       @attachment_names = opts[:attachments].keys
67     else
68       @attachments = []
69       @attachment_names = []
70     end
71
72     @message_id = "<#{Time.now.to_i}-sup-#{rand 10000}@#{Socket.gethostname}>"
73     @edited = false
74     @selectors = []
75     @selector_label_width = 0
76
77     @crypto_selector =
78       if CryptoManager.have_crypto?
79         HorizontalSelector.new "Crypto:", [:none] + CryptoManager::OUTGOING_MESSAGE_OPERATIONS.keys, ["None"] + CryptoManager::OUTGOING_MESSAGE_OPERATIONS.values
80       end
81     add_selector @crypto_selector if @crypto_selector
82     
83     HookManager.run "before-edit", :header => @header, :body => @body
84
85     super opts
86     regen_text
87   end
88
89   def lines; @text.length + (@selectors.empty? ? 0 : (@selectors.length + DECORATION_LINES)) end
90   
91   def [] i
92     if @selectors.empty?
93       @text[i]
94     elsif i < @selectors.length
95       @selectors[i].line @selector_label_width
96     elsif i == @selectors.length
97       ""
98     else
99       @text[i - @selectors.length - DECORATION_LINES]
100     end
101   end
102
103   ## hook for subclasses. i hate this style of programming.
104   def handle_new_text header, body; end
105
106   def edit_message_or_field
107     lines = DECORATION_LINES + @selectors.size
108     if lines > curpos
109       return
110     elsif (curpos - lines) >= @header_lines.length
111       edit_message
112     else
113       edit_field @header_lines[curpos - lines]
114     end
115   end
116
117   def edit_to; edit_field "To" end
118   def edit_cc; edit_field "Cc" end
119   def edit_subject; edit_field "Subject" end
120
121   def edit_message
122     @file = Tempfile.new "sup.#{self.class.name.gsub(/.*::/, '').camel_to_hyphy}"
123     @file.puts format_headers(@header - NON_EDITABLE_HEADERS).first
124     @file.puts
125     @file.puts @body
126     @file.close
127
128     editor = $config[:editor] || ENV['EDITOR'] || "/usr/bin/vi"
129
130     mtime = File.mtime @file.path
131     BufferManager.shell_out "#{editor} #{@file.path}"
132     @edited = true if File.mtime(@file.path) > mtime
133
134     return @edited unless @edited
135
136     header, @body = parse_file @file.path
137     @header = header - NON_EDITABLE_HEADERS
138     handle_new_text @header, @body
139     update
140
141     @edited
142   end
143
144   def killable?
145     !edited? || BufferManager.ask_yes_or_no("Discard message?")
146   end
147
148   def attach_file
149     fn = BufferManager.ask_for_filename :attachment, "File name (enter for browser): "
150     return unless fn
151     @attachments << RMail::Message.make_file_attachment(fn)
152     @attachment_names << fn
153     update
154   end
155
156   def delete_attachment
157     i = curpos - @attachment_lines_offset - DECORATION_LINES - 1
158     if i >= 0 && i < @attachments.size && BufferManager.ask_yes_or_no("Delete attachment #{@attachment_names[i]}?")
159       @attachments.delete_at i
160       @attachment_names.delete_at i
161       update
162     end
163   end
164
165 protected
166
167   def move_cursor_left
168     if curpos < @selectors.length
169       @selectors[curpos].roll_left
170       buffer.mark_dirty
171     else
172       col_left
173     end
174   end
175
176   def move_cursor_right
177     if curpos < @selectors.length
178       @selectors[curpos].roll_right
179       buffer.mark_dirty
180     else
181       col_right
182     end
183   end
184
185   def add_selector s
186     @selectors << s
187     @selector_label_width = [@selector_label_width, s.label.length].max
188   end
189
190   def update
191     regen_text
192     buffer.mark_dirty if buffer
193   end
194
195   def regen_text
196     header, @header_lines = format_headers(@header - NON_EDITABLE_HEADERS) + [""]
197     @text = header + [""] + @body
198     @text += sig_lines unless $config[:edit_signature]
199     
200     @attachment_lines_offset = 0
201
202     unless @attachments.empty?
203       @text += [""]
204       @attachment_lines_offset = @text.length
205       @text += (0 ... @attachments.size).map { |i| [[:attachment_color, "+ Attachment: #{@attachment_names[i]} (#{@attachments[i].body.size.to_human_size})"]] }
206     end
207   end
208
209   def parse_file fn
210     File.open(fn) do |f|
211       header = MBox::read_header f
212       body = f.readlines
213
214       header.delete_if { |k, v| NON_EDITABLE_HEADERS.member? k }
215       header.each { |k, v| header[k] = parse_header k, v }
216
217       [header, body]
218     end
219   end
220
221   def parse_header k, v
222     if MULTI_HEADERS.include?(k)
223       v.split_on_commas.map do |name|
224         (p = ContactManager.contact_for(name)) && p.full_address || name
225       end
226     else
227       v
228     end
229   end
230
231   def format_headers header
232     header_lines = []
233     headers = (FORCE_HEADERS + (header.keys - FORCE_HEADERS)).map do |h|
234       lines = make_lines "#{h}:", header[h]
235       lines.length.times { header_lines << h }
236       lines
237     end.flatten.compact
238     [headers, header_lines]
239   end
240
241   def make_lines header, things
242     case things
243     when nil, []
244       [header + " "]
245     when String
246       [header + " " + things]
247     else
248       if things.empty?
249         [header]
250       else
251         things.map_with_index do |name, i|
252           raise "an array: #{name.inspect} (things #{things.inspect})" if Array === name
253           if i == 0
254             header + " " + name
255           else
256             (" " * (header.length + 1)) + name
257           end + (i == things.length - 1 ? "" : ",")
258         end
259       end
260     end
261   end
262
263   def send_message
264     return false if !edited? && !BufferManager.ask_yes_or_no("Message unedited. Really send?")
265     return false if $config[:confirm_no_attachments] && mentions_attachments? && @attachments.size == 0 && !BufferManager.ask_yes_or_no("You haven't added any attachments. Really send?")#" stupid ruby-mode
266     return false if $config[:confirm_top_posting] && top_posting? && !BufferManager.ask_yes_or_no("You're top-posting. That makes you a bad person. Really send?") #" stupid ruby-mode
267
268     from_email = 
269       if @header["From"] =~ /<?(\S+@(\S+?))>?$/
270         $1
271       else
272         AccountManager.default_account.email
273       end
274
275     acct = AccountManager.account_for(from_email) || AccountManager.default_account
276     BufferManager.flash "Sending..."
277
278     begin
279       date = Time.now
280       m = build_message date
281       IO.popen(acct.sendmail, "w") { |p| p.puts m }
282       raise SendmailCommandFailed, "Couldn't execute #{acct.sendmail}" unless $? == 0
283       SentManager.write_sent_message(date, from_email) { |f| f.puts sanitize_body(m.to_s) }
284       BufferManager.kill_buffer buffer
285       BufferManager.flash "Message sent!"
286       true
287     rescue SystemCallError, SendmailCommandFailed, CryptoManager::Error => e
288       Redwood::log "Problem sending mail: #{e.message}"
289       BufferManager.flash "Problem sending mail: #{e.message}"
290       false
291     end
292   end
293
294   def save_as_draft
295     DraftManager.write_draft { |f| write_message f, false }
296     BufferManager.kill_buffer buffer
297     BufferManager.flash "Saved for later editing."
298   end
299
300   def build_message date
301     m = RMail::Message.new
302     m.header["Content-Type"] = "text/plain; charset=#{$encoding}"
303     m.body = @body.join
304     m.body = m.body
305     m.body += sig_lines.join("\n") unless $config[:edit_signature]
306
307     ## there are attachments, so wrap body in an attachment of its own
308     unless @attachments.empty?
309       body_m = m
310       body_m.header["Content-Disposition"] = "inline"
311       m = RMail::Message.new
312       
313       m.add_part body_m
314       @attachments.each { |a| m.add_part a }
315     end
316
317     ## do whatever crypto transformation is necessary
318     if @crypto_selector && @crypto_selector.val != :none
319       from_email = PersonManager.person_for(@header["From"]).email
320       to_email = (@header["To"] + @header["Cc"] + @header["Bcc"]).map { |p| PersonManager.person_for(p).email }
321
322       m = CryptoManager.send @crypto_selector.val, from_email, to_email, m
323     end
324
325     ## finally, set the top-level headers
326     @header.each do |k, v|
327       next if v.nil? || v.empty?
328       m.header[k] = 
329         case v
330         when String
331           v
332         when Array
333           v.join ", "
334         end
335     end
336     m.header["Date"] = date.rfc2822
337     m.header["Message-Id"] = @message_id
338     m.header["User-Agent"] = "Sup/#{Redwood::VERSION}"
339     m
340   end
341
342   ## TODO: remove this. redundant with write_full_message_to.
343   ##
344   ## this is going to change soon: draft messages (currently written
345   ## with full=false) will be output as yaml.
346   def write_message f, full=true, date=Time.now
347     raise ArgumentError, "no pre-defined date: header allowed" if @header["Date"]
348     f.puts format_headers(@header).first
349     f.puts <<EOS
350 Date: #{date.rfc2822}
351 Message-Id: #{@message_id}
352 EOS
353     if full
354       f.puts <<EOS
355 Mime-Version: 1.0
356 Content-Type: text/plain; charset=us-ascii
357 Content-Disposition: inline
358 User-Agent: Redwood/#{Redwood::VERSION}
359 EOS
360     end
361
362     f.puts
363     f.puts sanitize_body(@body.join)
364     f.puts sig_lines if full unless $config[:edit_signature]
365   end  
366
367 protected
368
369   def edit_field field
370     case field
371     when "Subject"
372       text = BufferManager.ask :subject, "Subject: ", @header[field]
373        if text
374          @header[field] = parse_header field, text
375          update
376          field
377        end
378     else
379       default =
380         case field
381         when *MULTI_HEADERS
382           @header[field].join(", ")
383         else
384           @header[field]
385         end
386
387       contacts = BufferManager.ask_for_contacts :people, "#{field}: ", default
388       if contacts
389         text = contacts.map { |s| s.longname }.join(", ")
390         @header[field] = parse_header field, text
391         update
392         field
393       end
394     end
395   end
396
397 private
398
399   def sanitize_body body
400     body.gsub(/^From /, ">From ")
401   end
402
403   def mentions_attachments?
404     @body.any? { |l| l =~ /^[^>]/ && l =~ /\battach(ment|ed|ing|)\b/i }
405   end
406
407   def top_posting?
408     @body.join =~ /(\S+)\s*Excerpts from.*\n(>.*\n)+\s*\Z/
409   end
410
411   def sig_lines
412     p = PersonManager.person_for(@header["From"])
413     from_email = p && p.email
414
415     ## first run the hook
416     hook_sig = HookManager.run "signature", :header => @header, :from_email => from_email
417     return ["", "-- "] + hook_sig.split("\n") if hook_sig
418
419     ## no hook, do default signature generation based on config.yaml
420     return [] unless from_email
421     sigfn = (AccountManager.account_for(from_email) || 
422              AccountManager.default_account).signature
423
424     if sigfn && File.exists?(sigfn)
425       ["", "-- "] + File.readlines(sigfn).map { |l| l.chomp }
426     else
427       []
428     end
429   end
430 end
431
432 end