forked from cloudbees/jenkins-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rbac-report.groovy
43 lines (40 loc) · 1.77 KB
/
rbac-report.groovy
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
import nectar.plugins.rbac.groups.*;
import java.util.*;
Map containers = new TreeMap();
// Add the root container
containers.put(Jenkins.instance.displayName, GroupContainerLocator.locate(Jenkins.instance));
// Add all the items that are be containers
for (i in Jenkins.instance.allItems) {
if (GroupContainerLocator.isGroupContainer(i.getClass())) {
GroupContainer g = GroupContainerLocator.locate(i);
if (g != null) containers.put(Jenkins.instance.displayName + "/" + i.fullDisplayName, g);
}
}
// Add all the nodes, as they are containers also (but be safe about it)
for (i in Jenkins.instance.nodes) {
if (GroupContainerLocator.isGroupContainer(i.getClass())) {
GroupContainer g = GroupContainerLocator.locate(i);
if (g != null) containers.put(Jenkins.instance.displayName + "/" + i.displayName, g);
}
}
// There may be other group containers if somebody has written additional
// extension points in additional plugins, but at this point in time this
// is the full set of places where group containers can be hiding
for (c in containers) {
println(c.key);
for (g in c.value.groups) {
println(" " + g.name);
println(" Roles:");
for (r in g.roles) {
println(" " + r + (g.doesPropagateToChildren(r) ? " (and children)" : " (pinned)"));
}
println(" Members:");
// g.members is the String names
// g.membership is the corresponding AbstractAssignee objects (so this may involve an LDAP lookup)
// but g.membership is the only way to determine what the String name corresponds to
// listing here so you can see what can be done, but up to you to judge the runtime cost
for (a in g.membership) {
println(" " + a.id + " <" + a.fullName + "> (" + a.description + " : " +a.getClass().getName() + ")");
}
}
}