File: address_list.rb

package info (click to toggle)
ruby-mail 2.6.4%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 4,256 kB
  • ctags: 1,327
  • sloc: ruby: 44,678; makefile: 3
file content (42 lines) | stat: -rw-r--r-- 1,446 bytes parent folder | download
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
# encoding: utf-8
# frozen_string_literal: true
module Mail
  class AddressList # :nodoc:

    # Mail::AddressList is the class that parses To, From and other address fields from
    # emails passed into Mail.
    # 
    # AddressList provides a way to query the groups and mailbox lists of the passed in
    # string.
    # 
    # It can supply all addresses in an array, or return each address as an address object.
    # 
    # Mail::AddressList requires a correctly formatted group or mailbox list per RFC2822 or
    # RFC822.  It also handles all obsolete versions in those RFCs.
    # 
    #  list = 'ada@test.lindsaar.net, My Group: mikel@test.lindsaar.net, Bob <bob@test.lindsaar.net>;'
    #  a = AddressList.new(list)
    #  a.addresses    #=> [#<Mail::Address:14943130 Address: |ada@test.lindsaar.net...
    #  a.group_names  #=> ["My Group"]
    def initialize(string)
      @addresses_grouped_by_group = nil
      @address_list = Parsers::AddressListsParser.new.parse(string)
    end
    
    # Returns a list of address objects from the parsed line
    def addresses
      @addresses ||= @address_list.addresses.map do |address_data|
        Mail::Address.new(address_data)
      end
    end

    def addresses_grouped_by_group
      addresses.select(&:group).group_by(&:group)
    end
    
    # Returns the names as an array of strings of all groups
    def group_names # :nodoc:
      @address_list.group_names
    end
  end
end