Created
September 28, 2011 19:30
-
-
Save cogumm/1248976 to your computer and use it in GitHub Desktop.
Sorteio Twitter
This file contains 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
# ~~~~~~~~~~~~~~~~~~~~~~~~ | |
# souDev: @CoGUMm | |
# WebSite: www.CoGUMm.net | |
# ~~~~~~~~~~~~~~~~~~~~~~~~ | |
#encoding: utf-8 | |
#!/usr/bin/env ruby | |
require 'rubygems' | |
require 'net/http' | |
require 'json/pure' | |
class SortTwitter | |
def initialize | |
@twittes = [] | |
end | |
def init | |
call "http://search.twitter.com/search.json?rpp=100&q=%23omundoedosnerds" | |
puts "Quantidade de Twittes: #{@twittes.size}\n\n" | |
end | |
def call(url) | |
return false unless url | |
begin | |
req = Net::HTTP.get_response(URI.parse(url)) | |
res = JSON.parse(req.body) | |
rescue JSON::ParserError => e | |
raise "Dados corrompidos. Problemas para tratar o JSON. Tente novamente!" | |
rescue => e | |
raise "Problema para obter os dados do Twitter." | |
else | |
if res["results"] | |
res["results"].each { |r| @twittes << r } | |
if res["next_page"] | |
call("http://search.twitter.com/search.json#{res["next_page"]}") | |
end | |
end | |
end | |
end | |
def sort | |
@winner = @twittes[rand(@twittes.size)] | |
if @winner["from_user"] == "itcursos" | |
sort | |
else | |
puts "O Ganhador é #{@winner["from_user"]} com o twitte http://twitter.com/#{@winner["from_user"]}/status/#{@winner["id"]}" | |
end | |
end | |
end | |
sorteio = SortTwitter.new | |
sorteio.init | |
sorteio.sort |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment