lib/sup/message.rb in sup-0.0.2 vs lib/sup/message.rb in sup-0.0.3

- old
+ new

@@ -52,11 +52,11 @@ class Text attr_reader :lines def initialize lines ## do some wrapping - @lines = lines.map { |l| l.wrap 80 }.flatten + @lines = lines.map { |l| l.chomp.wrap 80 }.flatten end end class Quote attr_reader :lines @@ -84,56 +84,44 @@ :cc, :bcc, :labels, :list_address, :recipient_email, :replyto, :source_info, :status bool_reader :dirty - ## if index_entry is specified, will fill in values from that, + ## if you specify a :header, will use values from that. otherwise, will try and + ## load the header from the source. def initialize opts - if opts[:source] - @source = opts[:source] - @source_info = opts[:source_info] or raise ArgumentError, ":source but no :source_info" - @body = nil - else - @source = @source_info = nil - @body = opts[:body] or raise ArgumentError, "one of :body or :source must be specified" - end + @source = opts[:source] or raise ArgumentError, "source can't be nil" + @source_info = opts[:source_info] or raise ArgumentError, "source_info can't be nil" @snippet = opts[:snippet] || "" @labels = opts[:labels] || [] @dirty = false - header = - if opts[:header] - opts[:header] - else - header = @source.load_header @source_info - header.each { |k, v| header[k.downcase] = v } - header - end + read_header(opts[:header] || @source.load_header(@source_info)) + end + def read_header header + header.each { |k, v| header[k.downcase] = v } + %w(message-id date).each do |f| raise MessageFormatError, "no #{f} field in header #{header.inspect} (source #@source offset #@source_info)" unless header.include? f raise MessageFormatError, "nil #{f} field in header #{header.inspect} (source #@source offset #@source_info)" unless header[f] end begin date = header["date"] - @date = (Time === date ? date : Time.parse(header["date"])) + @date = Time === date ? date : Time.parse(header["date"]) rescue ArgumentError => e raise MessageFormatError, "unparsable date #{header['date']}: #{e.message}" end - if(@subj = header["subject"]) - @subj = @subj.gsub(/\s+/, " ").gsub(/\s+$/, "") - else - @subj = DEFAULT_SUBJECT - end + @subj = header.member?("subject") ? header["subject"].gsub(/\s+/, " ").gsub(/\s+$/, "") : DEFAULT_SUBJECT @from = Person.for header["from"] @to = Person.for_several header["to"] @cc = Person.for_several header["cc"] @bcc = Person.for_several header["bcc"] @id = header["message-id"] - @refs = (header["references"] || "").scan(/<(.*?)>/).flatten + @refs = (header["references"] || "").gsub(/[<>]/, "").split(/\s+/).flatten @replytos = (header["in-reply-to"] || "").scan(/<(.*?)>/).flatten @replyto = Person.for header["reply-to"] @list_address = if header["list-post"] @list_address = Person.for header["list-post"].gsub(/^<mailto:|>$/, "") @@ -142,20 +130,23 @@ end @recipient_email = header["delivered-to"] @status = header["status"] end + private :read_header + def broken?; @source.broken?; end def snippet; @snippet || to_chunks && @snippet; end def is_list_message?; !@list_address.nil?; end def is_draft?; DraftLoader === @source; end def draft_filename raise "not a draft" unless is_draft? @source.fn_for_offset @source_info end def save index + return if broken? index.update_message self if @dirty @dirty = false end def has_label? t; @labels.member? t; end @@ -177,34 +168,63 @@ def labels= l @labels = l @dirty = true end + ## this is called when the message body needs to actually be loaded. def to_chunks - if @body - [Text.new(@body.split("\n"))] - else - message_to_chunks @source.load_message(@source_info) - end + @chunks ||= + if @source.broken? + [Text.new(error_message(@source.broken_msg.split("\n")))] + else + begin + read_header @source.load_header(@source_info) + message_to_chunks @source.load_message(@source_info) + rescue SourceError, SocketError => e + [Text.new(error_message(e.message))] + end + end end + def error_message msg + <<EOS +#@snippet... + +*********************************************************************** +* An error occurred while loading this message. It is possible that * +* the source has changed, or (in the case of remote sources) is down. * +*********************************************************************** + +The error message was: + #{msg} +EOS + end + def raw_header - @source.raw_header @source_info + begin + @source.raw_header @source_info + rescue SourceError => e + error_message e.message + end end def raw_full_message - @source.raw_full_message @source_info + begin + @source.raw_full_message @source_info + rescue SourceError => e + error_message(e.message) + end end def content [ - from && from.longname, - to.map { |p| p.longname }, - cc.map { |p| p.longname }, - bcc.map { |p| p.longname }, + from && "#{from.name} #{from.email}", + to.map { |p| "#{p.name} #{p.email}" }, + cc.map { |p| "#{p.name} #{p.email}" }, + bcc.map { |p| "#{p.name} #{p.email}" }, to_chunks.select { |c| c.is_a? Text }.map { |c| c.lines }, - subj, + Message.normalize_subj(subj), ].flatten.compact.join " " end def basic_body_lines to_chunks.find_all { |c| c.is_a?(Text) || c.is_a?(Quote) }.map { |c| c.lines }.flatten @@ -224,14 +244,14 @@ ## everything RubyMail-specific goes here. def message_to_chunks m ret = [] << case m.header.content_type when "text/plain", nil - raise MessageFormatError, "no message body before decode" unless + raise MessageFormatError, "no message body before decode (source #@source info #@source_info)" unless m.body body = m.decode or raise MessageFormatError, "no message body" - text_to_chunks body.gsub(/\t/, " ").gsub(/\r/, "").split("\n") + text_to_chunks body.normalize_whitespace.split("\n") when /^multipart\// nil else disp = m.header["Content-Disposition"] || "" Attachment.new m.header.content_type, disp.gsub(/[\s\n]+/, " "), m @@ -242,44 +262,49 @@ end ## parse the lines of text into chunk objects. the heuristics here ## need tweaking in some nice manner. TODO: move these heuristics ## into the classes themselves. - def text_to_chunks lines state = :text # one of :text, :quote, or :sig chunks = [] chunk_lines = [] lines.each_with_index do |line, i| nextline = lines[(i + 1) ... lines.length].find { |l| l !~ /^\s*$/ } # skip blank lines + case state when :text newstate = nil + if line =~ QUOTE_PATTERN || (line =~ QUOTE_START_PATTERN && (nextline =~ QUOTE_PATTERN || nextline =~ QUOTE_START_PATTERN)) newstate = :quote elsif line =~ SIG_PATTERN && (lines.length - i) < MAX_SIG_DISTANCE newstate = :sig elsif line =~ BLOCK_QUOTE_PATTERN newstate = :block_quote end + if newstate chunks << Text.new(chunk_lines) unless chunk_lines.empty? chunk_lines = [line] state = newstate else chunk_lines << line end + when :quote newstate = nil + if line =~ QUOTE_PATTERN || line =~ QUOTE_START_PATTERN || line =~ /^\s*$/ chunk_lines << line elsif line =~ SIG_PATTERN && (lines.length - i) < MAX_SIG_DISTANCE newstate = :sig else newstate = :text end + if newstate if chunk_lines.empty? # nothing elsif chunk_lines.size == 1 chunks << Text.new(chunk_lines) # forget about one-line quotes @@ -287,24 +312,23 @@ chunks << Quote.new(chunk_lines) end chunk_lines = [line] state = newstate end + when :block_quote chunk_lines << line + when :sig chunk_lines << line end if state == :text && (@snippet.nil? || @snippet.length < SNIPPET_LEN) && line !~ /[=\*#_-]{3,}/ && line !~ /^\s*$/ - @snippet = (@snippet ? @snippet + " " : "") + line.gsub(/^\s+/, "").gsub(/[\r\n]/, "").gsub(/\s+/, " ") - @snippet = @snippet[0 ... SNIPPET_LEN] + @snippet += " " unless @snippet.empty? + @snippet += line.gsub(/^\s+/, "").gsub(/[\r\n]/, "").gsub(/\s+/, " ") + @snippet = @snippet[0 ... SNIPPET_LEN].chomp end -# if @snippet.nil? && state == :text && (line.length > 40 || -# line =~ /\S+.*[^,!:]\s*$/) -# @snippet = line.gsub(/^\s+/, "").gsub(/[\r\n]/, "")[0 .. 80] -# end end ## final object case state when :quote, :block_quote