-
Notifications
You must be signed in to change notification settings - Fork 14
/
CometdGrailsPlugin.groovy
95 lines (83 loc) · 3.11 KB
/
CometdGrailsPlugin.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
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
/*
* Copyright © 2010 MBTE Sweden AB
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import grails.util.Environment
import org.codehaus.groovy.grails.commons.ConfigurationHolder
import org.cometd.server.BayeuxServerImpl
import org.cometd.server.CometdServlet
import org.cometd.bayeux.server.BayeuxServer
import org.springframework.web.context.support.ServletContextAttributeExporter
class CometdGrailsPlugin {
def version = "0.2.2"
def grailsVersion = "1.2.1 > *"
def dependsOn = [:]
def pluginExcludes = [
'grails-app/services/**/test/',
'grails-app/views/error.gsp',
'scripts',
'web-app/'
]
def author = 'Marcus Better'
def authorEmail = '[email protected]'
def title = 'Ajax push support using CometD'
def description = '''\
CometD is a scalable HTTP-based event routing bus that uses a Ajax Push technology pattern known as Comet.
This plugin allows your Grails application to send asynchronous notifications to HTTP clients using
CometD and the Bayeux protocol.
'''
def documentation = "http://www.grails.org/plugin/cometd"
def doWithWebDescriptor = { xml ->
def conf = ConfigurationHolder.config.plugins.cometd
if (!conf.continuationFilter.disable) {
def filters = xml.'filter'
filters[filters.size() - 1] + {
filter {
'filter-name'('continuation')
'filter-class'('org.eclipse.jetty.continuation.ContinuationFilter')
}
}
def filterMappings = xml.'filter-mapping'
filterMappings[filterMappings.size() - 1] + {
'filter-mapping' {
'filter-name'('continuation')
'servlet-name'('cometd')
}
}
}
def servlets = xml.'servlet'
servlets[servlets.size() - 1] + {
servlet {
'servlet-name'('cometd')
'servlet-class'(CometdServlet.class.name)
}
}
def mappings = xml.'servlet-mapping'
mappings[mappings.size() - 1] + {
'servlet-mapping' {
'servlet-name'('cometd')
'url-pattern'('/cometd/*')
}
}
}
def doWithSpring = {
bayeux(BayeuxServerImpl, true) { bean ->
bean.destroyMethod = 'stop'
}
// the CometdServlet will pick up the Bayeux object from the servlet context
bayeuxAttributeExporter(ServletContextAttributeExporter) {
attributes = [(BayeuxServer.ATTRIBUTE): ref('bayeux')]
}
}
}