... |
... |
@@ -1,0 +1,78 @@ |
|
1 |
+{{groovy}} |
|
2 |
+/** |
|
3 |
+ * incidentGallery script macro |
|
4 |
+ * @param tags - comma-separated tags to filter (case-insensitive) |
|
5 |
+ * @param max - max incidents to display (optional) |
|
6 |
+ */ |
|
7 |
+def includeTags = parameters.tags?.split(',')*.trim()*.toLowerCase() ?: [] |
|
8 |
+def maxCount = parameters.max?.toInteger() ?: 999 |
|
9 |
+ |
|
10 |
+def hql = """ |
|
11 |
+ select doc.fullName |
|
12 |
+ from XWikiDocument doc, BaseObject obj |
|
13 |
+ where obj.name = doc.fullName |
|
14 |
+ and obj.className = 'Main Categories.Anti White Incidents.Code.MoviesClass' |
|
15 |
+ order by doc.date desc |
|
16 |
+""" |
|
17 |
+ |
|
18 |
+def docs = xwiki.search(hql, maxCount, 0) |
|
19 |
+def results = [] |
|
20 |
+ |
|
21 |
+docs.each { docName -> |
|
22 |
+ if (results.size() >= maxCount) return |
|
23 |
+ |
|
24 |
+ def doc = xwiki.getDocument(docName) |
|
25 |
+ def obj = doc.getObject("Main Categories.Anti White Incidents.Code.MoviesClass") |
|
26 |
+ if (!obj) return |
|
27 |
+ |
|
28 |
+ // extract fields |
|
29 |
+ def title = obj.getProperty("shortText1")?.value?.toString()?.trim() |
|
30 |
+ def summary = obj.getProperty("shortText2")?.value?.toString()?.trim() ?: obj.getProperty("longText1")?.value?.toString()?.trim() |
|
31 |
+ def externalURL = obj.getProperty("longText2")?.value?.toString()?.trim() |
|
32 |
+ def tagList = obj.getProperty("tags")?.value |
|
33 |
+ |
|
34 |
+ if (!title || !summary) return |
|
35 |
+ |
|
36 |
+ // tag filtering |
|
37 |
+ if (includeTags && tagList) { |
|
38 |
+ def tagNames = tagList.collect { it.toString().toLowerCase() } |
|
39 |
+ if (!tagNames.any { includeTags.contains(it) }) return |
|
40 |
+ } |
|
41 |
+ |
|
42 |
+ def isValidURL = externalURL?.startsWith("http://") || externalURL?.startsWith("https://") |
|
43 |
+ def linkTarget = isValidURL ? externalURL : "doc:${docName}" |
|
44 |
+ def safeTitle = title.replaceAll(/[\[\]\|]/, '').replaceAll(/\>\>/, '>>\u200B') |
|
45 |
+ |
|
46 |
+ def imageFile = doc.getAttachmentList()?.find { |
|
47 |
+ it.filename.toLowerCase().matches(".*\\.(png|jpg|jpeg|gif)") |
|
48 |
+ }?.filename |
|
49 |
+ |
|
50 |
+ def imageMarkup = "" |
|
51 |
+ if (imageFile) { |
|
52 |
+ imageMarkup = "[[image:${doc.fullName}@${imageFile}||alt=\"Image\" data-xwiki-image-style=\"thumbnail-clickable\" style=\"border:1px solid #ccc\" width=\"200\"]]" |
|
53 |
+ } |
|
54 |
+ |
|
55 |
+ def block = """ |
|
56 |
+ (% style="margin-bottom:20px; width:100%" %) |
|
57 |
+ |${imageMarkup}| |
|
58 |
+ |
|
59 |
+ === [[${safeTitle}>>${linkTarget}]] === |
|
60 |
+ |
|
61 |
+ ${summary} |
|
62 |
+ [[Read More>>${linkTarget}]] |
|
63 |
+ """.trim() |
|
64 |
+ |
|
65 |
+ results << block |
|
66 |
+} |
|
67 |
+ |
|
68 |
+if (results.isEmpty()) { |
|
69 |
+ if (includeTags) { |
|
70 |
+ println "⚠️ No incidents found for tags: ${parameters.tags}" |
|
71 |
+ } else { |
|
72 |
+ println "⚠️ No incidents to display." |
|
73 |
+ } |
|
74 |
+} else { |
|
75 |
+ println results.join("\n\n") |
|
76 |
+} |
|
77 |
+{{/groovy}} |
|
78 |
+ |