-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathaccount_sample.rb
94 lines (81 loc) · 3.19 KB
/
account_sample.rb
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#!/usr/bin/env ruby
require 'net/https'
require 'rexml/document'
require 'digest/md5'
# The MIT License (MIT)
#
# Copyright (c) 2013 Black Duck Software, Inc.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
# This is an example of using the Open Hub API from Ruby.
# Detailed information can be found at the Open Hub website:
#
# https://github.com/blackducksoftware/ohloh_api
#
# This example uses the REXML library for XML parsing:
#
# http://www.germane-software.com/software/rexml/
#
# This example retrieves basic Open Hub account information
# and outputs it as simple name: value pairs.
#
# Pass your Open Hub API key as the first parameter to this script.
# Open Hub API keys are free. If you do not have one, you can obtain one
# at the Open Hub website:
#
# https://www.openhub.net/accounts/<your_login>/api_keys/new
#
# Pass the email address of the account as the second parameter to this script.
unless ARGV[0] =~ /[\w]+/ and ARGV[1] =~ /.+@.+\..+/
STDERR.puts "Usage: #{__FILE__} [api_key] [email]"
exit 1
end
api_key = ARGV[0]
email = ARGV[1]
#
# Connect to the Open Hub website and retrieve the account data.
#
# We pass the MD5 hash of the email address
email_md5 = Digest::MD5.hexdigest(email).to_s
uri = URI("https://www.openhub.net/accounts/#{email_md5}.xml?v=1&api_key=#{api_key}")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
response = http.get(uri.request_uri)
# HTTP OK?
if response.code != '200'
STDERR.puts "#{response.code} - #{response.message}"
exit 1
end
# Parse the response into a structured XML object
xml = REXML::Document.new(response.body)
# Did Open Hub return an error?
error = xml.root.get_elements('/response/error').first
if error
STDERR.puts "#{error.text}"
exit 1
end
# Output all the immediate child properties of an Account
xml.root.get_elements('/response/result/account').first.each_element do |element|
puts "#{element.name}:\t#{element.text}" unless element.has_elements?
end
# The kudo_rank element may not be present.
# Check for it, and default to 1 if it is missing.
xml_kudo_rank = xml.root.get_elements('/response/result/account/kudo_score/kudo_rank').first
kudo_rank = xml_kudo_rank ? xml_kudo_rank.text.to_i : 1
puts "kudo_rank:\t#{kudo_rank}"