... |
... |
@@ -1,9 +1,29 @@ |
1 |
|
-{{velocity}} |
2 |
|
-#set($doc = $xwiki.getDocument("XWiki.XWikiGroups")) |
3 |
|
-#set($class = $doc.xWikiClass) |
4 |
|
-* Fields in XWikiGroups: |
5 |
|
-#foreach ($field in $class.properties.entrySet()) |
6 |
|
- - **$field.key** (type: $field.value.class.simpleName) |
7 |
|
-#end |
8 |
|
-{{/velocity}} |
|
1 |
+{{groovy}} |
|
2 |
+def groupDocRef = "XWiki.XWikiAllGroup" |
|
3 |
+def groupClassName = "XWiki.XWikiGroups" |
9 |
9 |
|
|
5 |
+def mainGroupDoc = xwiki.getDocument(groupDocRef).getDocument() |
|
6 |
+def allUsers = xwiki.searchDocuments("where doc.fullName like 'XWiki.%' and doc.fullName != 'XWiki.XWikiAllGroup'") |
|
7 |
+def added = [] |
|
8 |
+ |
|
9 |
+allUsers.each { userDocName -> |
|
10 |
+ def alreadyMember = mainGroupDoc.getXObjects(groupClassName)?.any { |
|
11 |
+ it?.getStringValue("member") == userDocName |
|
12 |
+ } |
|
13 |
+ |
|
14 |
+ if (!alreadyMember) { |
|
15 |
+ def newObj = mainGroupDoc.newXObject(groupClassName) |
|
16 |
+ newObj.setStringValue("member", userDocName) |
|
17 |
+ added << userDocName |
|
18 |
+ } |
|
19 |
+} |
|
20 |
+ |
|
21 |
+if (added) { |
|
22 |
+ def wrappedDoc = xwiki.getDocument(mainGroupDoc.documentReference) |
|
23 |
+ xwiki.saveDocument(wrappedDoc, "✅ Added users to XWikiAllGroup: ${added.join(', ')}") |
|
24 |
+ println "✅ Added users to main wiki: ${added.join(', ')}" |
|
25 |
+} else { |
|
26 |
+ println "✅ All users are already members of the main wiki." |
|
27 |
+} |
|
28 |
+{{/groovy}} |
|
29 |
+ |