X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/98592e29039d158084b539b2b08e48ed1aa903f3..7be823bb11ad2aa93ffd4d85cc7f11469a867fa2:/app/models/message.rb diff --git a/app/models/message.rb b/app/models/message.rb index feceec5c0..f897af3c2 100644 --- a/app/models/message.rb +++ b/app/models/message.rb @@ -13,6 +13,29 @@ class Message < ActiveRecord::Base after_initialize :set_defaults + def self.from_mail(mail, from, to) + if mail.multipart? + if mail.text_part + body = mail.text_part.decoded + elsif mail.html_part + body = HTMLEntities.new.decode(Sanitize.clean(mail.html_part.decoded)) + end + elsif mail.text? and mail.sub_type == "html" + body = HTMLEntities.new.decode(Sanitize.clean(mail.decoded)) + else + body = mail.decoded + end + + message = Message.new({ + :sender => from, + :recipient => to, + :sent_on => mail.date.new_offset(0), + :title => mail.subject.sub(/\[OpenStreetMap\] */, ""), + :body => body, + :body_format => "text" + }, :without_protection => true) + end + def body RichText.new(read_attribute(:body_format), read_attribute(:body)) end