Sha256: 0a61126f77b366c44be2134c4f163379b2daac391d6312bbc6ef88ac5608fb35

Contents?: true

Size: 1.91 KB

Versions: 13

Compression:

Stored size: 1.91 KB

Contents

module Mail::Parsers
  class ContentTypeParser
    include Mail::Utilities

    def parse(s)
      actions, error = Ragel.parse(:content_type, s)
      if error
        raise Mail::Field::ParseError.new(Mail::ContentTypeElement, s, error)
      end

      content_type = ContentTypeStruct.new(nil,nil,[])

      content_type.parameters = []

      main_type_s = sub_type_s = param_attr_s = param_attr = nil
      qstr_s = qstr = param_val_s = nil
      actions.each_slice(2) do |action_id, p|
        action = Mail::Parsers::Ragel::ACTIONS[action_id]
        case action

        # Main Type
        when :main_type_s then main_type_s = p
        when :main_type_e then
          content_type.main_type = s[main_type_s..(p-1)]
          content_type.main_type.downcase!

        # Sub Type
        when :sub_type_s then sub_type_s = p
        when :sub_type_e
          content_type.sub_type = s[sub_type_s..(p-1)]
          content_type.sub_type.downcase!

        # Parameter Attribute
        when :param_attr_s then param_attr_s = p
        when :param_attr_e then param_attr = s[param_attr_s..(p-1)]

        # Quoted String.
        when :qstr_s then qstr_s = p
        when :qstr_e then qstr = s[qstr_s..(p-1)]

        # Parameter Value
        when :param_val_s then param_val_s = p
        when :param_val_e
          if param_attr.nil?
            raise Mail::Field::ParseError.new(Mail::ContentTypeElement, s, "no attribute for value")
          end

          # Use quoted s value if one exists, otherwise use parameter value
          if qstr
            value = qstr
          else
            value = s[param_val_s..(p-1)]
          end

          content_type.parameters <<  { param_attr => value }
          param_attr = nil
          qstr = nil

        else
          raise Mail::Field::ParseError.new(Mail::ContentTypeElement, s, "Failed to process unknown action: #{action}")
        end
      end
      content_type
    end
  end
end

Version data entries

13 entries across 12 versions & 6 rubygems

Version Path
mail-2.6.4.rc2 lib/mail/parsers/content_type_parser.rb
angular-rails4-templates-0.4.1 vendor/ruby/2.1.0/gems/mail-2.6.3/lib/mail/parsers/content_type_parser.rb
angular-rails4-templates-0.4.0 vendor/ruby/2.1.0/gems/mail-2.6.3/lib/mail/parsers/content_type_parser.rb
tdiary-4.2.1 vendor/bundle/ruby/2.2.0/gems/mail-2.6.3/lib/mail/parsers/content_type_parser.rb
tdiary-4.2.1 vendor/bundle/ruby/2.3.0/gems/mail-2.6.3/lib/mail/parsers/content_type_parser.rb
angular-rails4-templates-0.3.0 vendor/ruby/2.1.0/gems/mail-2.6.3/lib/mail/parsers/content_type_parser.rb
mail-2.6.4.rc1 lib/mail/parsers/content_type_parser.rb
sc_core-0.0.7 test/dummy/vendor/bundle/ruby/2.2.0/gems/mail-2.6.3/lib/mail/parsers/content_type_parser.rb
solidus_backend-1.0.0.pre3 vendor/bundle/gems/mail-2.6.3/lib/mail/parsers/content_type_parser.rb
solidus_backend-1.0.0.pre2 vendor/bundle/gems/mail-2.6.3/lib/mail/parsers/content_type_parser.rb
solidus_backend-1.0.0.pre vendor/bundle/gems/mail-2.6.3/lib/mail/parsers/content_type_parser.rb
shoppe-paypal-1.1.0 vendor/bundle/ruby/2.1.0/gems/mail-2.6.3/lib/mail/parsers/content_type_parser.rb
mail-2.6.3 lib/mail/parsers/content_type_parser.rb