Class: Mail::Gpg::InlineDecryptedMessage

Inherits:
Message
  • Object
show all
Defined in:
lib/mail/gpg/inline_decrypted_message.rb

Class Method Summary collapse

Class Method Details

.setup(cipher_mail, options = {}) ⇒ Object

options are:

:verify: decrypt and verify



15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# File 'lib/mail/gpg/inline_decrypted_message.rb', line 15

def self.setup(cipher_mail, options = {})
  if cipher_mail.multipart?
    self.new do
      Mail::Gpg.copy_headers cipher_mail, self
      cipher_mail.parts.each do |part|
        p = VerifiedPart.new do |p|
          if part.has_content_type? && /application\/(?:octet-stream|pgp-encrypted)/ =~ part.mime_type
            # encrypted attachment, we set the content_type to the generic 'application/octet-stream'
            # and remove the .pgp/gpg/asc from name/filename in header fields
            decrypted = GpgmeHelper.decrypt(part.decoded, options)
            p.verify_result decrypted.verify_result if options[:verify]
            p.content_type part.content_type.sub(/application\/(?:octet-stream|pgp-encrypted)/, 'application/octet-stream')
              .sub(/name=(?:"')?(.*)\.(?:pgp|gpg|asc)(?:"')?/, 'name="\1"')
            p.content_disposition part.content_disposition.sub(/filename=(?:"')?(.*)\.(?:pgp|gpg|asc)(?:"')?/, 'filename="\1"')
            p.content_transfer_encoding Mail::Encodings::Base64
            p.body Mail::Encodings::Base64::encode(decrypted.to_s)
          else
            body = part.body.decoded
            if body.include?('-----BEGIN PGP MESSAGE-----')
              decrypted = GpgmeHelper.decrypt(body, options)
              p.verify_result decrypted.verify_result if options[:verify]
              p.body decrypted.to_s
            else
              p.content_type part.content_type
              p.content_transfer_encoding part.content_transfer_encoding
              p.body part.body.to_s
            end
          end
        end
        add_part p
      end
    end # of multipart
  else
    decrypted = cipher_mail.body.empty? ? '' : GpgmeHelper.decrypt(cipher_mail.body.decoded, options)
    self.new do
      cipher_mail.header.fields.each do |field|
        header[field.name] = field.value
      end
      body decrypted.to_s
      verify_result decrypted.verify_result if options[:verify] && '' != decrypted
    end
  end
end