Created
September 8, 2010 11:38
-
-
Save eagletmt/569999 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/ruby | |
# depends: nokogiri, term-ansicolor, pit | |
require 'time' | |
require 'net/https' | |
require 'nokogiri' | |
require 'term/ansicolor' | |
require 'pit' | |
class String | |
include Term::ANSIColor | |
end | |
if ARGV.first == 'help' | |
puts ['unread', 'anywhere', 'starred', 'sent', 'spam', 'trash'] | |
exit 0 | |
end | |
config = Pit.get('www.google.com', :require => { | |
'username' => 'your username', | |
'password' => 'your password', | |
}) | |
uri = URI.parse "https://mail.google.com/mail/feed/atom/#{ARGV.first || ''}" | |
https = Net::HTTP.new uri.host, uri.port | |
https.use_ssl = true | |
cert_store = OpenSSL::X509::Store.new | |
cert_store.set_default_paths | |
https.cert_store = cert_store | |
https.verify_mode = OpenSSL::SSL::VERIFY_PEER | |
doc = https.start do |w| | |
req = Net::HTTP::Get.new uri.path | |
req.basic_auth config['username'], config['password'] | |
res = w.request req | |
case res | |
when Net::HTTPSuccess | |
Nokogiri res.body | |
when Net::HTTPUnauthorized | |
puts 'Incorrect username or password' | |
exit 1 | |
else | |
puts "Error: #{res.message}" | |
exit 2 | |
end | |
end | |
ns = { 'atom' => 'http://purl.org/atom/ns#' } | |
puts "#{doc.at('feed/fullcount').text} mails" | |
doc.xpath('//atom:entry', ns).each do |entry| | |
title = entry.at('title').text | |
summary = entry.at('summary').text | |
message_id = entry.at('link')['href'].match(/message_id=([0-9a-f]+)/)[1] | |
link = "https://mail.google.com/mail/#inbox/#{message_id}" | |
name = entry.at('author/name').text | |
addr = entry.at('author/email').text | |
issued = entry.at('issued').text | |
t = Time.parse(issued).localtime.to_s rescue issued | |
puts title.bold | |
puts "\t#{name.magenta}<#{addr}> [#{t.green}]" | |
puts "\t#{summary}" | |
puts "\t#{link.cyan}" | |
puts '' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment