Class: Mail::ContentLocationField

Inherits:
StructuredField show all
Defined in:
lib/mail/fields/content_location_field.rb

Constant Summary collapse

FIELD_NAME =
'content-location'
CAPITALIZED_FIELD =
'Content-Location'

Constants included from Patterns

Patterns::ATOM_UNSAFE, Patterns::CONTROL_CHAR, Patterns::CRLF, Patterns::FIELD_BODY, Patterns::FIELD_LINE, Patterns::FWS, Patterns::HEADER_LINE, Patterns::PHRASE_UNSAFE, Patterns::QP_SAFE, Patterns::QP_UNSAFE, Patterns::TEXT, Patterns::TOKEN_UNSAFE, Patterns::WSP

Instance Method Summary collapse

Methods inherited from StructuredField

#charset, #charset=, #default, #errors

Methods included from Utilities

#atom_safe?, #bracket, #capitalize_field, #constantize, #dasherize, #dquote, #escape_paren, #map_lines, #map_with_index, #match_to_s, #paren, #quote_atom, #quote_phrase, #quote_token, #token_safe?, #unbracket, #underscoreize, #unparen, #unquote, #uri_escape, #uri_unescape

Methods included from CommonField

#default, #field_length, #name, #name=, #responsible_for?, #to_s, #value, #value=

Constructor Details

#initialize(value = nil, charset = 'utf-8') ⇒ ContentLocationField

Returns a new instance of ContentLocationField.



11
12
13
14
15
16
# File 'lib/mail/fields/content_location_field.rb', line 11

def initialize(value = nil, charset = 'utf-8')
  self.charset = charset
  super(CAPITALIZED_FIELD, strip_field(FIELD_NAME, value), charset)
  self.parse
  self
end

Instance Method Details

#decodedObject



37
38
39
# File 'lib/mail/fields/content_location_field.rb', line 37

def decoded
  location 
end

#elementObject



24
25
26
# File 'lib/mail/fields/content_location_field.rb', line 24

def element
  @element ||= Mail::ContentLocationElement.new(value)
end

#encodedObject

TODO: Fix this up



33
34
35
# File 'lib/mail/fields/content_location_field.rb', line 33

def encoded
  "#{CAPITALIZED_FIELD}: #{location}\r\n"
end

#locationObject



28
29
30
# File 'lib/mail/fields/content_location_field.rb', line 28

def location
  element.location
end

#parse(val = value) ⇒ Object



18
19
20
21
22
# File 'lib/mail/fields/content_location_field.rb', line 18

def parse(val = value)
  unless val.blank?
    @element = Mail::ContentLocationElement.new(val)
  end
end