Class/Module Index [+]

Quicksearch

Mail::ContentTypeField

Public Instance Methods

attempt_to_clean() click to toggle source
# File lib/mail/fields/content_type_field.rb, line 42
def attempt_to_clean
  # Sanitize the value, handle special cases
  @element ||= Mail::ContentTypeElement.new(sanatize(value))
rescue
  # All else fails, just get the MIME media type
  @element ||= Mail::ContentTypeElement.new(get_mime_type(value))
end
content_type() click to toggle source
Alias for: string
decoded() click to toggle source
# File lib/mail/fields/content_type_field.rb, line 118
def decoded
  if parameters.length > 0
    p = "; #{parameters.decoded}"
  else
    p = ""
  end
  "#{content_type}" + p
end
default() click to toggle source
# File lib/mail/fields/content_type_field.rb, line 62
def default
  decoded
end
element() click to toggle source
# File lib/mail/fields/content_type_field.rb, line 34
def element
  begin
    @element ||= Mail::ContentTypeElement.new(value)
  rescue
    attempt_to_clean
  end
end
encoded() click to toggle source

TODO: Fix this up

# File lib/mail/fields/content_type_field.rb, line 109
def encoded
  if parameters.length > 0
    p = ";\r\n\s#{parameters.encoded}"
  else
    p = ""
  end
  "#{CAPITALIZED_FIELD}: #{content_type}#{p}\r\n"
end
filename() click to toggle source
# File lib/mail/fields/content_type_field.rb, line 96
def filename
  case
  when parameters['filename']
    @filename = parameters['filename']
  when parameters['name']
    @filename = parameters['name']
  else
    @filename = nil
  end
  @filename
end
main_type() click to toggle source
# File lib/mail/fields/content_type_field.rb, line 50
def main_type
  @main_type ||= element.main_type
end
parameters() click to toggle source
# File lib/mail/fields/content_type_field.rb, line 68
def parameters
  unless @parameters
    @parameters = ParameterHash.new
    element.parameters.each { |p| @parameters.merge!(p) }
  end
  @parameters
end
parse(val = value) click to toggle source
# File lib/mail/fields/content_type_field.rb, line 26
def parse(val = value)
  unless val.blank?
    self.value = val
    @element = nil
    element
  end
end
string() click to toggle source
# File lib/mail/fields/content_type_field.rb, line 58
def string
  "#{main_type}/#{sub_type}"
end
Also aliased as: content_type
stringify(params) click to toggle source
# File lib/mail/fields/content_type_field.rb, line 92
def stringify(params)
  params.map { |k,v| "#{k}=#{Encodings.param_encode(v)}" }.join("; ")
end
sub_type() click to toggle source
# File lib/mail/fields/content_type_field.rb, line 54
def sub_type
  @sub_type ||= element.sub_type
end
value() click to toggle source
# File lib/mail/fields/content_type_field.rb, line 84
def value
  if @value.class == Array
    "#{@main_type}/#{@sub_type}; #{stringify(parameters)}"
  else
    @value
  end
end

Public Class Methods

generate_boundary() click to toggle source
# File lib/mail/fields/content_type_field.rb, line 80
def ContentTypeField.generate_boundary
  "--==_mimepart_#{Mail.random_tag}"
end
new(value = nil, charset = 'utf-8') click to toggle source
# File lib/mail/fields/content_type_field.rb, line 9
def initialize(value = nil, charset = 'utf-8')
  self.charset = charset
  if value.class == Array
    @main_type = value[0]
    @sub_type = value[1]
    @parameters = ParameterHash.new.merge!(value.last)
  else
    @main_type = nil
    @sub_type = nil
    @parameters = nil
    value = strip_field(FIELD_NAME, value)
  end
  super(CAPITALIZED_FIELD, value, charset)
  self.parse
  self
end
with_boundary(type) click to toggle source
# File lib/mail/fields/content_type_field.rb, line 76
def ContentTypeField.with_boundary(type)
  new("#{type}; boundary=#{generate_boundary}")
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.