1 2 3 4 5 6 7 8 9 10 11 12 13 14 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
|
# encoding: utf-8
# frozen_string_literal: true
#
#
#
module Mail
class ContentLocationField < StructuredField
FIELD_NAME = 'content-location'
CAPITALIZED_FIELD = 'Content-Location'
def initialize(value = nil, charset = 'utf-8')
self.charset = charset
super(CAPITALIZED_FIELD, strip_field(FIELD_NAME, value), charset)
self.parse
self
end
def parse(val = value)
unless Utilities.blank?(val)
@element = Mail::ContentLocationElement.new(val)
end
end
def element
@element ||= Mail::ContentLocationElement.new(value)
end
def location
element.location
end
# TODO: Fix this up
def encoded
"#{CAPITALIZED_FIELD}: #{location}\r\n"
end
def decoded
location
end
end
end
|