forked from Accenture/grails-spring-security-oauth-azure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSpringSecurityOauthAzureGrailsPlugin.groovy
81 lines (64 loc) · 2.93 KB
/
SpringSecurityOauthAzureGrailsPlugin.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
/*
* Copyright 2012 the original author or authors
*
* 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
/**
* @author <a href='mailto:[email protected]'>Mihai Cazacu</a>
* @author <a href='mailto:[email protected]'>Enrico Comiti</a>
* @author <a href='mailto:[email protected]'>Alexey Zhokhov</a>
*/
class SpringSecurityOauthAzureGrailsPlugin {
def version = '0.3.1'
def grailsVersion = '2.0 > *'
def loadAfter = ['springSecurityOauth']
def title = 'Azure for Spring Security OAuth plugin'
def author = 'Mihai Cazacu, Enrico Comiti, Alexey Zhokhov, Martin Hobson'
def authorEmail = '[email protected]'
def description = '''\
Integrate Microsoft Azure AD to [Spring Security OAuth plugin|http://grails.org/plugin/spring-security-oauth].
'''
def documentation = 'http://grails.org/plugin/spring-security-oauth-azure'
def license = 'APACHE'
def developers = [
[name: 'Mihai Cazacu', email: '[email protected]'],
[name: 'Enrico Comiti', email: '[email protected]'],
[name: 'Alexey Zhokhov', email: '[email protected]'],
[name: 'Martin Hobson', email: '[email protected]']
]
def organization = [name: 'Polusharie', url: 'http://www.polusharie.com']
def issueManagement = [system: 'GITHUB',
url : 'https://github.com/SierraCharle/grails-spring-security-oauth-azure/issues']
def scm = [url: 'https://github.com/SierraCharle/grails-spring-security-oauth-azure']
def doWithSpring = {
loadConfig(application.config)
}
def doWithApplicationContext = { ctx ->
def oauthService = ctx.getBean('oauthService')
if (application.config.oauth.providers.azure.offline) {
oauthService.services['azure'].service.offline = true
}
}
private void loadConfig(ConfigObject config) {
def classLoader = new GroovyClassLoader(getClass().classLoader)
// Note here the order of objects when calling merge - merge OVERWRITES values in the target object
// Load default config as a basis
def newConfig = new ConfigSlurper(Environment.current.name).parse(
classLoader.loadClass('DefaultAzureOauthConfig')
)
newConfig.oauth.providers.azure.merge(config.oauth.providers.azure)
// Now add DefaultAzureOauthConfig into the main config
config.merge(newConfig)
}
}