-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathlist-groups.rb
110 lines (92 loc) · 3.26 KB
/
list-groups.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
#!/usr/bin/env ruby
require_relative '../bundle/bundler/setup'
require 'gerry'
require 'set'
uri_str, *flags = ARGV
if uri_str.nil?
script = File.basename(__FILE__)
puts "Usage : #{script} <uri> [-u]"
puts "Example : #{script} [user:password@]host[:port]"
puts
puts ' -u List only unused groups (those that have no associated permissions'
puts ' and are not inherited from).'
exit
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)
$server = uri.scheme + '://' + uri.host
$client = Gerry.new($server, uri.user, uri.password)
if flags.include?('-u')
used_groups = Set.new
STDERR.puts 'Determining groups that are used in permissions...'
batch_size = 100
count = 0
total = $client.projects.keys.count / batch_size
$client.projects.keys.each_slice(batch_size) do |projects|
STDERR.print (count/total).to_s + "%\r"
STDERR.flush
count += 100
$client.access(projects).values.each do |info|
info['local'].values.each do |permissions|
permissions['permissions'].values.each do |info|
info['rules'].keys.each do |group|
used_groups.add(group)
end
end
end
end
end
STDERR.puts 'Determining groups that are being inherited from...'
def get_included_group_ids(group_id)
begin
$client.included_groups(group_id).map do |group|
group['id']
end.to_set
rescue Gerry::Client::Request::RequestError
STDERR.puts "WARNING: Unable to get included groups for group '#{URI.decode(group_id)}'."
Set.new
end
end
def get_included_group_ids_recursive(group_id, parents = Set.new)
children = get_included_group_ids(group_id)
grandchildren = Set.new
children.each do |id|
if id == group_id
STDERR.puts \
"\nWARNING: Group #{$server}/#/admin/groups/uuid-#{group_id} " \
"includes itself.\n"
elsif parents.include?(id)
STDERR.puts \
"\nWARNING: Group #{$server}/#/admin/groups/uuid-#{group_id} " \
"includes its parent group #{$server}/#/admin/groups/uuid-#{id}.\n"
else
grandchildren.merge(get_included_group_ids_recursive(id, parents.add(group_id)))
end
end
children.merge(grandchildren)
end
count = 0
total = $client.groups.count
included_groups = Set.new
used_groups.each do |id|
STDERR.print (count/total).to_s + "%\r"
STDERR.flush
count += 100
if id.match('^[0-9a-f]{40}$')
included_groups.merge(get_included_group_ids_recursive(id))
end
end
used_groups.merge(included_groups)
$client.groups.each do |name, info|
if !used_groups.include?(info['id'])
puts name
end
end
else
$client.groups.keys.each do |name|
puts name
end
end