]> git.cworth.org Git - sup/blob - lib/sup/modes/thread-view-mode.rb
add "." commands to thread-view-mode: dispatch-and-kill instead of -next
[sup] / lib / sup / modes / thread-view-mode.rb
1 require 'open3'
2 module Redwood
3
4 class ThreadViewMode < LineCursorMode
5   ## this holds all info we need to lay out a message
6   class MessageLayout
7     attr_accessor :top, :bot, :prev, :next, :depth, :width, :state, :color, :star_color, :orig_new
8   end
9
10   class ChunkLayout
11     attr_accessor :state
12   end
13
14   DATE_FORMAT = "%B %e %Y %l:%M%P"
15   INDENT_SPACES = 2 # how many spaces to indent child messages
16
17   HookManager.register "detailed-headers", <<EOS
18 Add or remove headers from the detailed header display of a message.
19 Variables:
20   message: The message whose headers are to be formatted.
21   headers: A hash of header (name, value) pairs, initialized to the default
22            headers.
23 Return value:
24   None. The variable 'headers' should be modified in place.
25 EOS
26
27   register_keymap do |k|
28     k.add :toggle_detailed_header, "Toggle detailed header", 'h'
29     k.add :show_header, "Show full message header", 'H'
30     k.add :activate_chunk, "Expand/collapse or activate item", :enter
31     k.add :expand_all_messages, "Expand/collapse all messages", 'E'
32     k.add :edit_draft, "Edit draft", 'e'
33     k.add :edit_labels, "Edit or add labels for a thread", 'l'
34     k.add :expand_all_quotes, "Expand/collapse all quotes in a message", 'o'
35     k.add :jump_to_next_open, "Jump to next open message", 'n'
36     k.add :jump_to_prev_open, "Jump to previous open message", 'p'
37     k.add :toggle_starred, "Star or unstar message", '*'
38     k.add :toggle_new, "Toggle unread/read status of message", 'N'
39 #    k.add :collapse_non_new_messages, "Collapse all but unread messages", 'N'
40     k.add :reply, "Reply to a message", 'r'
41     k.add :forward, "Forward a message or attachment", 'f'
42     k.add :alias, "Edit alias/nickname for a person", 'i'
43     k.add :edit_as_new, "Edit message as new", 'D'
44     k.add :save_to_disk, "Save message/attachment to disk", 's'
45     k.add :search, "Search for messages from particular people", 'S'
46     k.add :compose, "Compose message to person", 'm'
47     k.add :subscribe_to_list, "Subscribe to/unsubscribe from mailing list", "("
48     k.add :unsubscribe_from_list, "Subscribe to/unsubscribe from mailing list", ")"
49     k.add :pipe_message, "Pipe message or attachment to a shell command", '|'
50
51     k.add_multi "(A)rchive/(d)elete/mark as (s)pam/mark as u(N)read:", '.' do |kk|
52       kk.add :archive_and_kill, "Archive this thread and kill buffer", 'a'
53       kk.add :delete_and_kill, "Delete this thread and kill buffer", 'd'
54       kk.add :spam_and_kill, "Mark this thread as spam and kill buffer", 's'
55       kk.add :unread_and_kill, "Mark this thread as unread and kill buffer", 'N'
56     end
57
58     k.add_multi "(A)rchive/(d)elete/mark as (s)pam/mark as u(N)read/do (n)othing:", ',' do |kk|
59       kk.add :archive_and_next, "Archive this thread, kill buffer, and view next", 'a'
60       kk.add :delete_and_next, "Delete this thread, kill buffer, and view next", 'd'
61       kk.add :spam_and_next, "Mark this thread as spam, kill buffer, and view next", 's'
62       kk.add :unread_and_next, "Mark this thread as unread, kill buffer, and view next", 'N'
63       kk.add :do_nothing_and_next, "Kill buffer, and view next", 'n'
64     end
65   end
66
67   ## there are a couple important instance variables we hold to format
68   ## the thread and to provide line-based functionality. @layout is a
69   ## map from Messages to MessageLayouts, and @chunk_layout from
70   ## Chunks to ChunkLayouts.  @message_lines is a map from row #s to
71   ## Message objects.  @chunk_lines is a map from row #s to Chunk
72   ## objects. @person_lines is a map from row #s to Person objects.
73
74   def initialize thread, hidden_labels=[], index_mode=nil
75     super()
76     @thread = thread
77     @hidden_labels = hidden_labels
78
79     ## used for dispatch-and-next
80     @index_mode = index_mode
81     @dying = false
82
83     @layout = SavingHash.new { MessageLayout.new }
84     @chunk_layout = SavingHash.new { ChunkLayout.new }
85     earliest, latest = nil, nil
86     latest_date = nil
87     altcolor = false
88
89     @thread.each do |m, d, p|
90       next unless m
91       earliest ||= m
92       @layout[m].state = initial_state_for m
93       @layout[m].color = altcolor ? :alternate_patina_color : :message_patina_color
94       @layout[m].star_color = altcolor ? :alternate_starred_patina_color : :starred_patina_color
95       @layout[m].orig_new = m.has_label? :read
96       altcolor = !altcolor
97       if latest_date.nil? || m.date > latest_date
98         latest_date = m.date
99         latest = m
100       end
101     end
102
103     @layout[latest].state = :open if @layout[latest].state == :closed
104     @layout[earliest].state = :detailed if earliest.has_label?(:unread) || @thread.size == 1
105
106     @thread.remove_label :unread
107     regen_text
108   end
109
110   def draw_line ln, opts={}
111     if ln == curpos
112       super ln, :highlight => true
113     else
114       super
115     end
116   end
117   def lines; @text.length; end
118   def [] i; @text[i]; end
119
120   def show_header
121     m = @message_lines[curpos] or return
122     BufferManager.spawn_unless_exists("Full header for #{m.id}") do
123       TextMode.new m.raw_header
124     end
125   end
126
127   def toggle_detailed_header
128     m = @message_lines[curpos] or return
129     @layout[m].state = (@layout[m].state == :detailed ? :open : :detailed)
130     update
131   end
132
133   def reply
134     m = @message_lines[curpos] or return
135     mode = ReplyMode.new m
136     BufferManager.spawn "Reply to #{m.subj}", mode
137   end
138
139   def subscribe_to_list
140     m = @message_lines[curpos] or return
141     if m.list_subscribe && m.list_subscribe =~ /<mailto:(.*?)\?(subject=(.*?))>/
142       ComposeMode.spawn_nicely :from => AccountManager.account_for(m.recipient_email), :to => [PersonManager.person_for($1)], :subj => $3
143     else
144       BufferManager.flash "Can't find List-Subscribe header for this message."
145     end
146   end
147
148   def unsubscribe_from_list
149     m = @message_lines[curpos] or return
150     if m.list_unsubscribe && m.list_unsubscribe =~ /<mailto:(.*?)\?(subject=(.*?))>/
151       ComposeMode.spawn_nicely :from => AccountManager.account_for(m.recipient_email), :to => [PersonManager.person_for($1)], :subj => $3
152     else
153       BufferManager.flash "Can't find List-Unsubscribe header for this message."
154     end
155   end
156
157   def forward
158     if(chunk = @chunk_lines[curpos]) && chunk.is_a?(Chunk::Attachment)
159       ForwardMode.spawn_nicely :attachments => [chunk]
160     elsif(m = @message_lines[curpos])
161       ForwardMode.spawn_nicely :message => m
162     end
163   end
164
165   include CanAliasContacts
166   def alias
167     p = @person_lines[curpos] or return
168     alias_contact p
169     update
170   end
171
172   def search
173     p = @person_lines[curpos] or return
174     mode = PersonSearchResultsMode.new [p]
175     BufferManager.spawn "Search for #{p.name}", mode
176     mode.load_threads :num => mode.buffer.content_height
177   end    
178
179   def compose
180     p = @person_lines[curpos]
181     if p
182       ComposeMode.spawn_nicely :to => [p]
183     else
184       ComposeMode.spawn_nicely
185     end
186   end    
187
188   def edit_labels
189     reserved_labels = @thread.labels.select { |l| LabelManager::RESERVED_LABELS.include? l }
190     new_labels = BufferManager.ask_for_labels :label, "Labels for thread: ", @thread.labels
191
192     return unless new_labels
193     @thread.labels = (reserved_labels + new_labels).uniq
194     new_labels.each { |l| LabelManager << l }
195     update
196     UpdateManager.relay self, :labeled, @thread.first
197   end
198
199   def toggle_starred
200     m = @message_lines[curpos] or return
201     toggle_label m, :starred
202   end
203
204   def toggle_new
205     m = @message_lines[curpos] or return
206     toggle_label m, :unread
207   end
208
209   def toggle_label m, label
210     if m.has_label? label
211       m.remove_label label
212     else
213       m.add_label label
214     end
215     ## TODO: don't recalculate EVERYTHING just to add a stupid little
216     ## star to the display
217     update
218     UpdateManager.relay self, :single_message_labeled, m
219   end
220
221   ## called when someone presses enter when the cursor is highlighting
222   ## a chunk. for expandable chunks (including messages) we toggle
223   ## open/closed state; for viewable chunks (like attachments) we
224   ## view.
225   def activate_chunk
226     chunk = @chunk_lines[curpos] or return
227     layout = 
228       if chunk.is_a?(Message)
229         @layout[chunk]
230       elsif chunk.expandable?
231         @chunk_layout[chunk]
232       end
233     if layout
234       layout.state = (layout.state != :closed ? :closed : :open)
235       #cursor_down if layout.state == :closed # too annoying
236       update
237     elsif chunk.viewable?
238       view chunk
239     end
240   end
241
242   def edit_as_new
243     m = @message_lines[curpos] or return
244     mode = ComposeMode.new(:body => m.quotable_body_lines, :to => m.to, :cc => m.cc, :subj => m.subj, :bcc => m.bcc)
245     BufferManager.spawn "edit as new", mode
246     mode.edit_message
247   end
248
249   def save_to_disk
250     chunk = @chunk_lines[curpos] or return
251     case chunk
252     when Chunk::Attachment
253       fn = BufferManager.ask_for_filename :filename, "Save attachment to file: ", chunk.filename
254       save_to_file(fn) { |f| f.print chunk.raw_content } if fn
255     else
256       m = @message_lines[curpos]
257       fn = BufferManager.ask_for_filename :filename, "Save message to file: "
258       return unless fn
259       save_to_file(fn) do |f|
260         m.each_raw_message_line { |l| f.print l }
261       end
262     end
263   end
264
265   def edit_draft
266     m = @message_lines[curpos] or return
267     if m.is_draft?
268       mode = ResumeMode.new m
269       BufferManager.spawn "Edit message", mode
270       BufferManager.kill_buffer self.buffer
271       mode.edit_message
272     else
273       BufferManager.flash "Not a draft message!"
274     end
275   end
276
277   def jump_to_first_open
278     m = @message_lines[0] or return
279     if @layout[m].state != :closed
280       jump_to_message m
281     else
282       jump_to_next_open
283     end
284   end
285
286   def jump_to_next_open
287     return continue_search_in_buffer if in_search? # hack: allow 'n' to apply to both operations
288     m = @message_lines[curpos] or return
289     while nextm = @layout[m].next
290       break if @layout[nextm].state != :closed
291       m = nextm
292     end
293     jump_to_message nextm if nextm
294   end
295
296   def jump_to_prev_open
297     m = @message_lines[curpos] or return
298     ## jump to the top of the current message if we're in the body;
299     ## otherwise, to the previous message
300     
301     top = @layout[m].top
302     if curpos == top
303       while(prevm = @layout[m].prev)
304         break if @layout[prevm].state != :closed
305         m = prevm
306       end
307       jump_to_message prevm if prevm
308     else
309       jump_to_message m
310     end
311   end
312
313   def jump_to_message m
314     l = @layout[m]
315     left = l.depth * INDENT_SPACES
316     right = left + l.width
317
318     ## jump to the top line unless both top and bottom fit in the current view
319     jump_to_line l.top unless l.top >= topline && l.top <= botline && l.bot >= topline && l.bot <= botline
320
321     ## jump to the left columns unless both left and right fit in the current view
322     jump_to_col left unless left >= leftcol && left <= rightcol && right >= leftcol && right <= rightcol
323
324     ## either way, move the cursor to the first line
325     set_cursor_pos l.top
326   end
327
328   def expand_all_messages
329     @global_message_state ||= :closed
330     @global_message_state = (@global_message_state == :closed ? :open : :closed)
331     @layout.each { |m, l| l.state = @global_message_state }
332     update
333   end
334
335   def collapse_non_new_messages
336     @layout.each { |m, l| l.state = l.orig_new ? :open : :closed }
337     update
338   end
339
340   def expand_all_quotes
341     if(m = @message_lines[curpos])
342       quotes = m.chunks.select { |c| (c.is_a?(Chunk::Quote) || c.is_a?(Chunk::Signature)) && c.lines.length > 1 }
343       numopen = quotes.inject(0) { |s, c| s + (@chunk_layout[c].state == :open ? 1 : 0) }
344       newstate = numopen > quotes.length / 2 ? :closed : :open
345       quotes.each { |c| @chunk_layout[c].state = newstate }
346       update
347     end
348   end
349
350   def cleanup
351     @layout = @chunk_layout = @text = nil # for good luck
352   end
353
354   def archive_and_kill; archive_and_then :kill end
355   def spam_and_kill; spam_and_then :kill end
356   def delete_and_kill; delete_and_then :kill end
357   def unread_and_kill; unread_and_then :kill end
358
359   def archive_and_next; archive_and_then :next end
360   def spam_and_next; spam_and_then :next end
361   def delete_and_next; delete_and_then :next end
362   def unread_and_next; unread_and_then :next end
363   def do_nothing_and_next; do_nothing_and_then :next end
364
365   def archive_and_then op
366     dispatch op do
367       @thread.remove_label :inbox
368       UpdateManager.relay self, :archived, @thread.first
369     end
370   end
371
372   def spam_and_then op
373     dispatch op do
374       @thread.apply_label :spam
375       UpdateManager.relay self, :spammed, @thread.first
376     end
377   end
378
379   def delete_and_then op
380     dispatch op do
381       @thread.apply_label :deleted
382       UpdateManager.relay self, :deleted, @thread.first
383     end
384   end
385
386   def unread_and_then op
387     dispatch op do
388       @thread.apply_label :unread
389       UpdateManager.relay self, :unread, @thread.first
390     end
391   end
392
393   def do_nothing_and_then op
394     dispatch op
395   end
396
397   def dispatch op
398     return if @dying
399     @dying = true
400
401     case op
402     when :next
403       @index_mode.launch_next_thread_after(@thread) do
404         @thread.save Index if block_given? && yield
405         BufferManager.kill_buffer_safely buffer
406       end
407     when :kill
408       @thread.save Index if yield
409       BufferManager.kill_buffer_safely buffer
410     else
411       raise ArgumentError, "unknown thread dispatch operation #{op.inspect}"
412     end
413   end
414   private :dispatch
415
416   def pipe_message
417     chunk = @chunk_lines[curpos]
418     chunk = nil unless chunk.is_a?(Chunk::Attachment)
419     message = @message_lines[curpos] unless chunk
420
421     return unless chunk || message
422
423     command = BufferManager.ask(:shell, "pipe command: ")
424     return if command.nil? || command.empty?
425
426     output = pipe_to_process(command) do |stream|
427       if chunk
428         stream.print chunk.raw_content
429       else
430         message.each_raw_message_line { |l| stream.print l }
431       end
432     end
433
434     if output
435       BufferManager.spawn "Output of '#{command}'", TextMode.new(output)
436     else
437       BufferManager.flash "'#{command}' done!"
438     end
439   end
440
441 private
442
443   def initial_state_for m
444     if m.has_label?(:starred) || m.has_label?(:unread)
445       :open
446     else
447       :closed
448     end
449   end
450
451   def update
452     regen_text
453     buffer.mark_dirty if buffer
454   end
455
456   ## here we generate the actual content lines. we accumulate
457   ## everything into @text, and we set @chunk_lines and
458   ## @message_lines, and we update @layout.
459   def regen_text
460     @text = []
461     @chunk_lines = []
462     @message_lines = []
463     @person_lines = []
464
465     prevm = nil
466     @thread.each do |m, depth, parent|
467       unless m.is_a? Message # handle nil and :fake_root
468         @text += chunk_to_lines m, nil, @text.length, depth, parent
469         next
470       end
471       l = @layout[m]
472
473       ## is this still necessary?
474       next unless @layout[m].state # skip discarded drafts
475
476       ## build the patina
477       text = chunk_to_lines m, l.state, @text.length, depth, parent, l.color, l.star_color
478       
479       l.top = @text.length
480       l.bot = @text.length + text.length # updated below
481       l.prev = prevm
482       l.next = nil
483       l.depth = depth
484       # l.state we preserve
485       l.width = 0 # updated below
486       @layout[l.prev].next = m if l.prev
487
488       (0 ... text.length).each do |i|
489         @chunk_lines[@text.length + i] = m
490         @message_lines[@text.length + i] = m
491         lw = text[i].flatten.select { |x| x.is_a? String }.map { |x| x.length }.sum
492       end
493
494       @text += text
495       prevm = m 
496       if l.state != :closed
497         m.chunks.each do |c|
498           cl = @chunk_layout[c]
499
500           ## set the default state for chunks
501           cl.state ||=
502             if c.expandable? && c.respond_to?(:initial_state)
503               c.initial_state
504             else
505               :closed
506             end
507
508           text = chunk_to_lines c, cl.state, @text.length, depth
509           (0 ... text.length).each do |i|
510             @chunk_lines[@text.length + i] = c
511             @message_lines[@text.length + i] = m
512             lw = text[i].flatten.select { |x| x.is_a? String }.map { |x| x.length }.sum - (depth * INDENT_SPACES)
513             l.width = lw if lw > l.width
514           end
515           @text += text
516         end
517         @layout[m].bot = @text.length
518       end
519     end
520   end
521
522   def message_patina_lines m, state, start, parent, prefix, color, star_color
523     prefix_widget = [color, prefix]
524
525     open_widget = [color, (state == :closed ? "+ " : "- ")]
526     new_widget = [color, (m.has_label?(:unread) ? "N" : " ")]
527     starred_widget = 
528       if m.has_label?(:starred)
529         [star_color, "* "]
530       else
531         [color, "  "]
532       end
533
534     case state
535     when :open
536       @person_lines[start] = m.from
537       [[prefix_widget, open_widget, new_widget, starred_widget,
538         [color, 
539             "#{m.from ? m.from.mediumname : '?'} to #{m.recipients.map { |l| l.shortname }.join(', ')} #{m.date.to_nice_s} (#{m.date.to_nice_distance_s})"]]]
540
541     when :closed
542       @person_lines[start] = m.from
543       [[prefix_widget, open_widget, new_widget, starred_widget,
544         [color, 
545         "#{m.from ? m.from.mediumname : '?'}, #{m.date.to_nice_s} (#{m.date.to_nice_distance_s})  #{m.snippet}"]]]
546
547     when :detailed
548       @person_lines[start] = m.from
549       from_line = [[prefix_widget, open_widget, new_widget, starred_widget,
550           [color, "From: #{m.from ? format_person(m.from) : '?'}"]]]
551
552       addressee_lines = []
553       unless m.to.empty?
554         m.to.each_with_index { |p, i| @person_lines[start + addressee_lines.length + from_line.length + i] = p }
555         addressee_lines += format_person_list "   To: ", m.to
556       end
557       unless m.cc.empty?
558         m.cc.each_with_index { |p, i| @person_lines[start + addressee_lines.length + from_line.length + i] = p }
559         addressee_lines += format_person_list "   Cc: ", m.cc
560       end
561       unless m.bcc.empty?
562         m.bcc.each_with_index { |p, i| @person_lines[start + addressee_lines.length + from_line.length + i] = p }
563         addressee_lines += format_person_list "   Bcc: ", m.bcc
564       end
565
566       headers = OrderedHash.new
567       headers["Date"] = "#{m.date.strftime DATE_FORMAT} (#{m.date.to_nice_distance_s})"
568       headers["Subject"] = m.subj
569
570       show_labels = @thread.labels - LabelManager::HIDDEN_RESERVED_LABELS
571       unless show_labels.empty?
572         headers["Labels"] = show_labels.map { |x| x.to_s }.sort.join(', ')
573       end
574       if parent
575         headers["In reply to"] = "#{parent.from.mediumname}'s message of #{parent.date.strftime DATE_FORMAT}"
576       end
577
578       HookManager.run "detailed-headers", :message => m, :headers => headers
579       
580       from_line + (addressee_lines + headers.map { |k, v| "   #{k}: #{v}" }).map { |l| [[color, prefix + "  " + l]] }
581     end
582   end
583
584   def format_person_list prefix, people
585     ptext = people.map { |p| format_person p }
586     pad = " " * prefix.length
587     [prefix + ptext.first + (ptext.length > 1 ? "," : "")] + 
588       ptext[1 .. -1].map_with_index do |e, i|
589         pad + e + (i == ptext.length - 1 ? "" : ",")
590       end
591   end
592
593   def format_person p
594     p.longname + (ContactManager.is_aliased_contact?(p) ? " (#{ContactManager.alias_for p})" : "")
595   end
596
597   ## todo: check arguments on this overly complex function
598   def chunk_to_lines chunk, state, start, depth, parent=nil, color=nil, star_color=nil
599     prefix = " " * INDENT_SPACES * depth
600     case chunk
601     when :fake_root
602       [[[:missing_message_color, "#{prefix}<one or more unreceived messages>"]]]
603     when nil
604       [[[:missing_message_color, "#{prefix}<an unreceived message>"]]]
605     when Message
606       message_patina_lines(chunk, state, start, parent, prefix, color, star_color) +
607         (chunk.is_draft? ? [[[:draft_notification_color, prefix + " >>> This message is a draft. To edit, hit 'e'. <<<"]]] : [])
608
609     else
610       raise "Bad chunk: #{chunk.inspect}" unless chunk.respond_to?(:inlineable?) ## debugging
611       if chunk.inlineable?
612         chunk.lines.map { |line| [[chunk.color, "#{prefix}#{line}"]] }
613       elsif chunk.expandable?
614         case state
615         when :closed
616           [[[chunk.patina_color, "#{prefix}+ #{chunk.patina_text}"]]]
617         when :open
618           [[[chunk.patina_color, "#{prefix}- #{chunk.patina_text}"]]] + chunk.lines.map { |line| [[chunk.color, "#{prefix}#{line}"]] }
619         end
620       else
621         [[[chunk.patina_color, "#{prefix}x #{chunk.patina_text}"]]]
622       end
623     end
624   end
625
626   def view chunk
627     BufferManager.flash "viewing #{chunk.content_type} attachment..."
628     success = chunk.view!
629     BufferManager.erase_flash
630     BufferManager.completely_redraw_screen
631     unless success
632       BufferManager.spawn "Attachment: #{chunk.filename}", TextMode.new(chunk.to_s)
633       BufferManager.flash "Couldn't execute view command, viewing as text."
634     end
635   end
636 end
637
638 end