-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathcount-active-owners.rb
executable file
·36 lines (27 loc) · 1018 Bytes
/
count-active-owners.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
#!/usr/bin/env ruby
require_relative '../bundle/bundler/setup'
require 'gerry'
require 'set'
uri_str, age = ARGV
if uri_str.nil? || age.nil?
script = File.basename(__FILE__)
puts <<EOT
Usage : #{script} <uri> <age>
Example : #{script} [user:password@]host[:port] 3mon
Rationale : Count the number of owners whose change(s) have been merged
in the given age period backwards from now.
EOT
exit(1)
end
uri_str = 'https://' + uri_str unless uri_str.start_with?('https://', 'http://')
uri = URI.parse(uri_str)
uri.user = ENV['USER'] || ENV['USERNAME'] if uri.user.nil?
uri.password = ENV['GERRIT_HTTP_PASSWORD'] if uri.password.nil?
Gerry::Client.default_options.update(verify: false)
client = Gerry.new("#{uri.scheme}://#{uri.host}", uri.user, uri.password)
owner_ids = Set.new
changes = client.changes(["q=status:merged+-age:#{age}"])
changes.each do |change|
owner_ids << change['owner']['_account_id']
end
puts "Number of active owners in the last #{age}: #{owner_ids.size}"