Wiki source code of GroovyNotificationTutorial

Version 1.1 by Vincent Massol on 2008/03/01

Show last authors
1 1 Notifications
2
3 #warning("The notification mechanism is being refactored and will most likely change in XWiki Core 1.4. Thus if you're using the code below you'll have to update your code when you'll upgrade to XWiki Core 1.4.")
4
5 XWiki supports notifications and it's possible to do some action when a document is modified, when a document's objects are modified, etc.
6
7 This tutorial explains how to implement an action in a XWiki page that responds to document changes. This is done in Groovy. It can also be implemented as a Plugin.
8
9 We need to write 2 pages:
10 * A page containing a Groovy class that registers against the XWiki Event Manager and that has the method to be called when the event happens.
11 * Another page that parses the Groovy page and loads it in the Groovy context.
12
13 1.1 Groovy Notification Class
14
15 Your Groovy needs to extend the <tt>com.xpn.xwiki.notify.XWikiDocChangeNotificationInterface</tt> as shown below.
16
17 {code:none}
18 /* Groovy Class #* */
19
20 import com.xpn.xwiki.api.*;
21 import com.xpn.xwiki.notify.*;
22 import com.xpn.xwiki.*;
23 import com.xpn.xwiki.doc.*;
24
25 public class MyGroovyClass implements XWikiDocChangeNotificationInterface
26 {
27 def xwiki;
28 def rule;
29
30 public MyGroovyClass()
31 {
32 this.rule = new DocChangeRule(this);
33 }
34
35 public void init(xwiki)
36 {
37 this.xwiki = xwiki;
38 xwiki.getXWiki().getNotificationManager().addGeneralRule(this.rule);
39 }
40
41 public void cleanup()
42 {
43 xwiki.getXWiki().getNotificationManager().removeGeneralRule(this.rule);
44 }
45
46 public void notify(XWikiNotificationRule rule, XWikiDocument newdoc, XWikiDocument olddoc,
47 int event, XWikiContext context)
48 {
49 // Do some action here.
50 }
51 }
52
53 /* *# */
54 {code}
55
56 In this example we've used a <tt>DocChangeRule</tt> rule. There are also [other rules>http://svn.xwiki.org/svnroot/xwiki/xwiki-platform/core/trunk/xwiki-core/src/main/java/com/xpn/xwiki/notify/].
57
58 1.1 Calling the Groovy Class
59
60 {code:none}
61 #set($mygroovyclass = $xwiki.parseGroovyFromPage("MySpace.MyGroovyClass"))
62 $mygroovyclass.init($xwiki)
63 {code}
64
65 1.1 Example: IRC notification on document change
66
67 #warning("The code below uses the parseGroovyFromPage method which takes 2 parameters. The second one is the name of page containing JARS as attachments. These JARs are put in the classloader used by Groovy when parsing the page. This feature is only working in XWiki Core 1.3 and later.")
68
69 * Step 1: Groovy Class
70
71 {code:none}
72 /* Groovy Class #* */
73
74 import org.jibble.pircbot.*;
75 import java.util.*;
76 import com.xpn.xwiki.api.*;
77 import com.xpn.xwiki.notify.*;
78 import com.xpn.xwiki.*;
79 import com.xpn.xwiki.doc.*;
80
81 public class XWikiBot extends PircBot implements XWikiDocChangeNotificationInterface
82 {
83 def xwiki;
84 def channel;
85 def rule;
86
87 public XWikiBot()
88 {
89 this.setName("xwikibot");
90 this.rule = new DocChangeRule(this);
91 }
92
93 public void init(xwiki, channel)
94 {
95 this.xwiki = xwiki;
96 this.channel = channel;
97 xwiki.getXWiki().getNotificationManager().addGeneralRule(this.rule);
98 }
99
100 public void cleanup()
101 {
102 xwiki.getXWiki().getNotificationManager().removeGeneralRule(this.rule);
103 }
104
105 public void notify(XWikiNotificationRule rule, XWikiDocument newdoc, XWikiDocument olddoc,
106 int event, XWikiContext context)
107 {
108 sendMessage(this.channel, newdoc.getFullName() + " was modified - " + newdoc.getExternalURL("view", context));
109 }
110 }
111
112 /* *# */
113 {code}
114
115 * Step 2: Add the PircBot JAR as an attachment to the <tt>MySpace.MyGroovyClass</tt> page created in step 1.
116 * Step 3: Calling page
117
118 {code:none}
119 ## Start by looking for a bot in the servlet context
120 #set ($sc = $context.getContext().getEngineContext().getServletContext())
121
122 ## If the bot isn't in the servlet context, start the bot and put in the context
123 #set ($bot = $sc.getAttribute("ircbot"))
124 #if (!$bot)
125 Bot is not started, starting it...
126 #set($bot = $xwiki.parseGroovyFromPage("MySpace.MyGroovyClass", "MySpace.MyGroovyClass"))
127 #set ($channel = "#xwiki")
128 $bot.init($xwiki, $channel)
129 $bot.connect("irc.freenode.net")
130 $bot.joinChannel($channel)
131 $sc.setAttribute("ircbot", $bot)
132 Bot started!
133
134 ## If the parameter passed is stop then stop the bot
135 #elseif ($request.action && $request.action == "stop")
136 $bot.cleanup()
137 $bot.disconnect()
138 $sc.setAttribute("ircbot", null)
139 Bot disconnected!
140
141 #else
142 Bot already started, doing nothing...
143
144 #end
145 {code}

Get Connected