Class: Mail::ContentIdField
- Inherits:
-
StructuredField
- Object
- StructuredField
- Mail::ContentIdField
- Defined in:
- lib/mail/fields/content_id_field.rb
Constant Summary collapse
- FIELD_NAME =
'content-id'
- CAPITALIZED_FIELD =
"Content-ID"
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
- #content_id ⇒ Object
- #decoded ⇒ Object
- #element ⇒ Object
-
#encoded ⇒ Object
TODO: Fix this up.
-
#initialize(value = nil, charset = 'utf-8') ⇒ ContentIdField
constructor
A new instance of ContentIdField.
- #name ⇒ Object
- #parse(val = value) ⇒ Object
- #to_s ⇒ Object
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_parser, #uri_unescape
Methods included from CommonField
#default, #field_length, #name=, #responsible_for?, #value, #value=
Constructor Details
#initialize(value = nil, charset = 'utf-8') ⇒ ContentIdField
Returns a new instance of ContentIdField.
11 12 13 14 15 16 17 18 19 20 21 22 |
# File 'lib/mail/fields/content_id_field.rb', line 11 def initialize(value = nil, charset = 'utf-8') self.charset = charset @uniq = 1 if value.blank? value = generate_content_id else value = strip_field(FIELD_NAME, value) end super(CAPITALIZED_FIELD, strip_field(FIELD_NAME, value), charset) self.parse self end |
Instance Method Details
#content_id ⇒ Object
38 39 40 |
# File 'lib/mail/fields/content_id_field.rb', line 38 def content_id element. end |
#decoded ⇒ Object
51 52 53 |
# File 'lib/mail/fields/content_id_field.rb', line 51 def decoded "#{to_s}" end |
#element ⇒ Object
30 31 32 |
# File 'lib/mail/fields/content_id_field.rb', line 30 def element @element ||= Mail::MessageIdsElement.new(value) end |
#encoded ⇒ Object
TODO: Fix this up
47 48 49 |
# File 'lib/mail/fields/content_id_field.rb', line 47 def encoded "#{CAPITALIZED_FIELD}: #{to_s}\r\n" end |
#name ⇒ Object
34 35 36 |
# File 'lib/mail/fields/content_id_field.rb', line 34 def name 'Content-ID' end |
#parse(val = value) ⇒ Object
24 25 26 27 28 |
# File 'lib/mail/fields/content_id_field.rb', line 24 def parse(val = value) unless val.blank? @element = Mail::MessageIdsElement.new(val) end end |
#to_s ⇒ Object
42 43 44 |
# File 'lib/mail/fields/content_id_field.rb', line 42 def to_s "<#{content_id}>" end |