Created
September 21, 2009 05:54
-
-
Save rtanglao/190094 to your computer and use it in GitHub Desktop.
gethappykludged.rb
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/env ruby | |
require 'json' | |
require 'net/http' | |
require 'pp' | |
require 'Time' | |
def getResponse(url) | |
http = Net::HTTP.new("api.getsatisfaction.com",80) | |
url = "/" + url | |
resp, data = http.get(url, nil) | |
if resp.code != "200" | |
puts "Error: #{resp.code} from:#{url}" | |
raise JSON::ParserError # this is a kludge, should raise a proper exception!!!!! | |
return "" | |
end | |
result = JSON.parse(data) | |
return result | |
end | |
if ARGV.length < 6 | |
puts "usage: #{$0} yyyy mm dd yyyy mmm dd" | |
exit | |
end | |
metrics_start = Time.utc(ARGV[0], ARGV[1], ARGV[2], 0, 0) | |
metrics_start -= 1 | |
metrics_stop = Time.utc(ARGV[3], ARGV[4], ARGV[5], 23, 59) | |
metrics_stop += 1 | |
roland_replies = 0 | |
non_roland_replies = 0 | |
topic_page = 0 | |
#topic_page = 5 | |
end_program = false | |
repliesByUser={} | |
while true | |
topic_page += 1 | |
skip = false | |
topic_url = "products/mozilla_thunderbird/topics.json?sort=recently_active&page=" << "%d" % topic_page << "&limit=30" | |
printf(STDERR, "topic_url") | |
begin | |
topics = getResponse(topic_url) | |
rescue JSON::ParserError | |
printf(STDERR, "Parser error in topic:%s\n", topic_url) | |
skip = true | |
end | |
if skip | |
skip = false | |
next | |
end | |
topics["data"].each do|topic| | |
last_active_at = Time.parse(topic["last_active_at"]) | |
last_active_at = last_active_at.utc | |
printf(STDERR, "TOPIC last_active_at:%s\n", last_active_at) | |
if (last_active_at <=> (metrics_start + 1)) == -1 | |
printf(STDERR, "ending program\n") | |
end_program = true | |
break | |
end | |
printf(STDERR, "START*** of topic\n") | |
PP::pp(topic,$stderr) | |
printf(STDERR, "\nEND*** of topic\n") | |
reply_count = topic["reply_count"] | |
printf(STDERR, "reply_count:%d\n", reply_count) | |
reply_page = 1 | |
if reply_count != 0 | |
begin # while reply_count > 0 | |
get_reply_url = "topics/" + topic["slug"] + "/replies.json?sort=recently_created&page=" << "%d" % reply_page << "&limit=30" | |
PP::pp(get_reply_url, $stderr) | |
skip = false | |
begin | |
replies = getResponse(get_reply_url) | |
rescue JSON::ParserError | |
printf(STDERR, "Parser error in reply:%s\n", get_reply_url) | |
reply_count -= 30 | |
reply_page += 1 | |
skip = true | |
end | |
if skip | |
skip = false | |
next | |
end | |
replies["data"].each do|reply| | |
printf(STDERR, "START*** of reply\n") | |
PP::pp(reply, $stderr) | |
printf(STDERR, "\nEND*** of reply\n") | |
author = reply["author"]["canonical_name"] | |
reply_created_time = Time.parse(reply["created_at"]) | |
reply_created_time = reply_created_time.utc | |
topic_id = reply["topic_id"] | |
reply_id = reply["id"] | |
printf(STDERR, "RRR: reply created time:%s\n", reply_created_time) | |
if (reply_created_time <=> metrics_start) == 1 && | |
(reply_created_time <=> metrics_stop) == -1 | |
puts "Reply created by:#{author} at:#{reply_created_time} topic:#{topic_id} reply:#{reply_id} IN Time Window" | |
if repliesByUser.has_key?(author) | |
repliesByUser[author] += 1 | |
else | |
repliesByUser[author] = 1 | |
end | |
if author == "Roland Tanglao" | |
printf(STDERR, "author is roland\n") | |
roland_replies += 1 | |
else | |
non_roland_replies += 1 | |
end | |
else | |
printf(STDERR,"Reply created by:%s at:%s topic:%s reply:%s NOT IN Time Window\n",author, reply_created_time, topic_id, reply_id) | |
end | |
end # replies ... do | |
reply_count -= 30 | |
reply_page += 1 | |
end while reply_count > 0 | |
end | |
end | |
if end_program | |
break | |
end | |
end | |
puts "Number of replies created by Roland: #{roland_replies} non Roland replies:#{non_roland_replies}\n" | |
repliesByUser.sort{|author,numReplies| author[1]<=>numReplies[1]}.each { |elem| | |
puts "#{elem[1]}, #{elem[0]}" | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment