Class: Vmail::ContactsExtractor

Inherits:
Object
  • Object
show all
Defined in:
lib/vmail/contacts_extractor.rb

Instance Method Summary collapse

Constructor Details

#initialize(username, password) ⇒ ContactsExtractor

Returns a new instance of ContactsExtractor.



5
6
7
8
# File 'lib/vmail/contacts_extractor.rb', line 5

def initialize(username, password)
  puts "Logging as #{username}"
  @username, @password = username, password
end

Instance Method Details

#extract(limit = 500) ⇒ Object



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
44
45
# File 'lib/vmail/contacts_extractor.rb', line 18

def extract(limit = 500)
  open do |imap|
    set_mailbox_prefix
    mailbox = "[#@prefix]/Sent Mail"
    STDERR.puts "Selecting #{mailbox}"
    imap.select(mailbox)
    STDERR.puts "Fetching last #{limit} sent messages"
    all_uids = imap.uid_search('ALL')
    STDERR.puts "Total messages: #{all_uids.size}"
    limit = [limit, all_uids.size].min
    STDERR.puts "Extracting addresses from #{limit} of them"
    uids = all_uids[-limit ,limit]
    imap.uid_fetch(uids, ["FLAGS", "ENVELOPE"]).each do |fetch_data|
      recipients = fetch_data.attr["ENVELOPE"].to
      next unless recipients
      recipients.each do |address_struct|
        email = [address_struct.mailbox, address_struct.host].join('@') 
        name = address_struct.name
        if name 
          name = Mail::Encodings.unquote_and_convert_to(name, 'UTF-8') 
          yield %Q("#{name}" <#{email}>)
        else
          yield email
        end
      end
    end
  end
end

#open {|@imap| ... } ⇒ Object

Yields:

  • (@imap)


10
11
12
13
14
15
16
# File 'lib/vmail/contacts_extractor.rb', line 10

def open
  @imap = Net::IMAP.new('imap.gmail.com', 993, true, nil, false)
  puts @imap.(@username, @password)
  yield @imap
  @imap.close 
  @imap.disconnect
end

#set_mailbox_prefixObject



47
48
49
50
# File 'lib/vmail/contacts_extractor.rb', line 47

def set_mailbox_prefix
  mailboxes = ((@imap.list("[#@prefix]/", "%") || []) + (@imap.list("", "*")) || []).map {|struct| struct.name}
  @prefix = mailboxes.detect {|m| m =~ /^\[Google Mail\]/}  ?  "Google Mail" : "Gmail" 
end