类 URI::MailTo
RFC6068,mailto URL 方案。
常量
- COMPONENT
一个
Array
,包含URI::MailTo
的可用组件。- DEFAULT_PORT
URI::MailTo
的默认端口为 nil。
属性
headers[R]
URL 设置的电子邮件头,以 Array
的数组形式表示。
to[R]
URL 的主要电子邮件地址,以 String
形式表示。
公共类方法
build(args) 点击切换源代码
描述¶ ↑
从组件创建新的 URI::MailTo
对象,并进行语法检查。
组件可以以 Array
或 Hash
的形式提供。如果使用 Array
,则必须以 [to, headers]
的形式提供组件。
如果使用 Hash
,则键为以冒号开头的组件名称。
头可以以预编码字符串的形式提供,例如 "subject=subscribe&cc=address"
,也可以以 Array
的数组形式提供,例如 [['subject', 'subscribe'], ['cc', 'address']]
。
示例
require 'uri' m1 = URI::MailTo.build(['[email protected]', 'subject=Ruby']) m1.to_s # => "mailto:[email protected]?subject=Ruby" m2 = URI::MailTo.build(['[email protected]', [['Subject', 'Ruby'], ['Cc', '[email protected]']]]) m2.to_s # => "mailto:[email protected]?Subject=Ruby&[email protected]" m3 = URI::MailTo.build({:to => '[email protected]', :headers => [['subject', 'subscribe']]}) m3.to_s # => "mailto:[email protected]?subject=subscribe"
调用超类方法
URI::Generic::build
# File lib/uri/mailto.rb, line 85 def self.build(args) tmp = Util.make_components_hash(self, args) case tmp[:to] when Array tmp[:opaque] = tmp[:to].join(',') when String tmp[:opaque] = tmp[:to].dup else tmp[:opaque] = '' end if tmp[:headers] query = case tmp[:headers] when Array tmp[:headers].collect { |x| if x.kind_of?(Array) x[0] + '=' + x[1..-1].join else x.to_s end }.join('&') when Hash tmp[:headers].collect { |h,v| h + '=' + v }.join('&') else tmp[:headers].to_s end unless query.empty? tmp[:opaque] << '?' << query end end super(tmp) end
new(*arg) 点击切换源代码
描述¶ ↑
从通用 URL 组件创建新的 URI::MailTo
对象,不进行语法检查。
此方法通常从 URI::parse
调用,该方法会检查每个组件的有效性。
调用超类方法
URI::Generic::new
# File lib/uri/mailto.rb, line 132 def initialize(*arg) super(*arg) @to = nil @headers = [] # The RFC3986 parser does not normally populate opaque @opaque = "?#{@query}" if @query && !@opaque unless @opaque raise InvalidComponentError, "missing opaque part for mailto URL" end to, header = @opaque.split('?', 2) # allow semicolon as a addr-spec separator # http://support.microsoft.com/kb/820868 unless /\A(?:[^@,;]+@[^@,;]+(?:\z|[,;]))*\z/ =~ to raise InvalidComponentError, "unrecognised opaque part for mailtoURL: #{@opaque}" end if arg[10] # arg_check self.to = to self.headers = header else set_to(to) set_headers(header) end end
公共实例方法
headers=(v) 点击切换源代码
设置标题 v
。
# File lib/uri/mailto.rb, line 232 def headers=(v) check_headers(v) set_headers(v) v end
to=(v) 点击切换源代码
设置 to 为 v
。
# File lib/uri/mailto.rb, line 200 def to=(v) check_to(v) set_to(v) v end
to_mailtext() 点击切换源代码
返回 URL 的 RFC822 电子邮件文本等效项,作为 String
。
示例
require 'uri' uri = URI.parse("mailto:[email protected]?Subject=subscribe&cc=myaddr") uri.to_mailtext # => "To: [email protected]\nSubject: subscribe\nCc: myaddr\n\n\n"
# File lib/uri/mailto.rb, line 268 def to_mailtext to = URI.decode_www_form_component(@to) head = '' body = '' @headers.each do |x| case x[0] when 'body' body = URI.decode_www_form_component(x[1]) when 'to' to << ', ' + URI.decode_www_form_component(x[1]) else head << URI.decode_www_form_component(x[0]).capitalize + ': ' + URI.decode_www_form_component(x[1]) + "\n" end end "To: #{to} #{head} #{body} " end
也称为:to_rfc822text
受保护的实例方法
set_headers(v) 点击切换源代码
标题 v
的私有设置器。
# File lib/uri/mailto.rb, line 221 def set_headers(v) @headers = [] if v v.split('&').each do |x| @headers << x.split(/=/, 2) end end end
set_to(v) 点击切换源代码
to v
的私有设置器。
# File lib/uri/mailto.rb, line 194 def set_to(v) @to = v end
私有实例方法
check_headers(v) 点击切换源代码
检查标题 v
组件是否符合
-
HEADER_REGEXP
# File lib/uri/mailto.rb, line 208 def check_headers(v) return true unless v return true if v.size == 0 if HEADER_REGEXP !~ v raise InvalidComponentError, "bad component(expected opaque component): #{v}" end true end
check_to(v) 点击切换源代码
检查 to v
组件。
# File lib/uri/mailto.rb, line 169 def check_to(v) return true unless v return true if v.size == 0 v.split(/[,;]/).each do |addr| # check url safety as path-rootless if /\A(?:%\h\h|[!$&-.0-;=@-Z_a-z~])*\z/ !~ addr raise InvalidComponentError, "an address in 'to' is invalid as URI #{addr.dump}" end # check addr-spec # don't s/\+/ /g addr.gsub!(/%\h\h/, URI::TBLDECWWWCOMP_) if EMAIL_REGEXP !~ addr raise InvalidComponentError, "an address in 'to' is invalid as uri-escaped addr-spec #{addr.dump}" end end true end