-
Notifications
You must be signed in to change notification settings - Fork 9
/
Application.cfc
193 lines (151 loc) · 7.37 KB
/
Application.cfc
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
<!---
This file is part of the The Meld Google Sitemaps Plugin.
The Meld Google Sitemaps Plugin is licensed under the GPL 2.0 license
Copyright (C) 2010 Meld Solutions Inc. http://www.meldsolutions.com/
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation, version 2 of that license..
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
--->
<cfcomponent extends="framework" output="false">
<cfinclude template="../../config/applicationSettings.cfm">
<cfinclude template="../../config/mappings.cfm">
<cfinclude template="../mappings.cfm">
<cfset variables.framework=getFrameworkVariables()>
<cffunction name="isAdminRequest" output="false">
<cfif left(request.context.action,5) eq 'admin'>
<cfreturn true>
<cfelse>
<cfreturn false>
</cfif>
</cffunction>
<cffunction name="secureRequest" output="false">
<cfargument name="$">
<cfif isAdminRequest() and not ($.currentUser().isSuperUser() or $.currentUser().isInGroup('admin') eq true)>
<cfif not isDefined("variables.pluginConfig") or variables.pluginConfig.getPackage() neq variables.framework.applicationKey>
<cfset variables.pluginConfig=application.pluginManager.getConfig(variables.framework.applicationKey)>
</cfif>
<cfif not isDefined("session") or not structKeyExists(session,"siteID") or not application.permUtility.getModulePerm(variables.pluginConfig.getValue('moduleID'),session.siteid)>
<cflocation url="#$.globalConfig().getContext()#/admin/" addtoken="false">
</cfif>
</cfif>
</cffunction>
<cffunction name="setupRequest" output="false">
<cfset var muraScope = "" />
<cfif not structKeyExists(request.context,"$")>
<cfset request.context.$ = getMuraScope() />
</cfif>
<cfset secureRequest(request.context.$)>
</cffunction>
<cffunction name="setupApplication" output="false">
<cfset var beanFactory = "" />
<cfset var defaultProperties = StructNew()>
<!--- ensure that we have PluginConfig in the variables scope and $ --->
<cfif not isDefined("variables.pluginConfig") or variables.pluginConfig.getPackage() neq variables.framework.applicationKey>
<!--- initialize Mura if required --->
<cfif not structKeyExists(application,"pluginManager")>
<cfinclude template="/muraWRM/config/appcfc/onApplicationStart_include.cfm" />
</cfif>
<cfset variables.pluginConfig=application.pluginManager.getConfig(variables.framework.applicationKey)>
</cfif>
<cfif not isDefined("$")>
<cfset $ = getMuraScope() />
</cfif>
<!--- set the default values --->
<cfset defaultProperties.dsn = $.globalConfig().getValue( "datasource" )>
<cfset defaultProperties.dsnusername = $.globalConfig().getValue( "dbusername" )>
<cfset defaultProperties.dsnpassword = $.globalConfig().getValue( "dbpassword" )>
<cfset defaultProperties.dsntype = $.globalConfig().getValue( "dbtype" )>
<cfset defaultProperties.pluginFileRoot = expandpath("/#variables.pluginConfig.getPackage()#")>
<cfset defaultProperties.pluginDirectory = variables.pluginConfig.getDirectory()>
<cfset defaultProperties.fileDirectory = $.globalConfig().getFileDir()>
<cfset defaultProperties.muraWebRoot = application.configBean.getContext()>
<cfset defaultProperties.pluginConfig = variables.pluginConfig>
<cfset defaultProperties.applicationKey = lcase(variables.pluginConfig.getPackage())>
<cfif isDefined("session") and StructKeyExists( session,'locale')>
<cfset defaultProperties.rblocale = session.locale />
<cfelse>
<cfset defaultProperties.rblocale = "en" />
</cfif>
<cfset variables.pluginConfig.setValue("DefaultProperties",defaultProperties) />
<cfset beanFactory=createObject("component","#variables.pluginConfig.getPackage()#.com.org.corfield.ioc").init( "/plugins/#variables.pluginConfig.getDirectory()#/com/meldsolutions",{
recurse=true,
strict=true,
transientPattern = "(Bean)$"
} ) />
<cfset beanFactory.getBean("MeldGoogleConfig").setValues(defaultProperties) />
<cfset variables.pluginConfig.getApplication().setValue( "beanFactory", beanFactory ) />
<!--- set the FW/1 bean factory --->
<cfset setBeanFactory( beanFactory ) />
<cfif variables.framework.reloadApplicationOnEveryRequest or StructKeyExists(url,variables.framework.reload)>
<cfset application[ variables.framework.applicationKey & "BeanFactory" ] = beanFactory>
</cfif>
</cffunction>
<cffunction name="onRequestEnd" output="false">
<cfset var iiX = 0>
<cfif not structkeyexists( request.context,"headLoader" )>
<cfreturn>
</cfif>
<cfloop from="1" to="#arrayLen(request.context.headLoader)#" index="iiX">
<cfhtmlhead text="#request.context.headLoader[iiX]#">
</cfloop>
</cffunction>
<cffunction name="getFrameworkVariables" output="false">
<cfset var framework = StructNew() />
<cfinclude template="frameworkConfig.cfm" />
<cfreturn framework />
</cffunction>
<cffunction name="onMissingView" output="false">
<cfparam name="url.action" default="" />
<!--- deal with issue of Mura taking our framework settings --->
<cfif left(url.action,1) eq "c">
<cflocation url="./?ma=#url.action#" addtoken="false" />
<cfelse>
<cfset super.onMissingView(argumentCollection=arguments) />
</cfif>
</cffunction>
<cffunction name="preseveInternalState" output="false">
<cfargument name="state">
<cfset var preserveKeyList="context,base,cfcbase,subsystem,subsystembase,section,item,services,action,controllerExecutionStarted">
<cfset var preserveKeys=structNew()>
<cfset var k="">
<cfloop list="#preserveKeyList#" index="k">
<cfif isDefined("arguments.state.#k#")>
<cfset preserveKeys[k]=arguments.state[k]>
<cfset structDelete(arguments.state,k)>
</cfif>
</cfloop>
<cfif StructKeyExists(request,'controllers')>
<cfset structDelete(request,'controllers') />
</cfif>
<cfset structDelete( arguments.state, "serviceExecutionComplete" )>
<cfreturn preserveKeys>
</cffunction>
<cffunction name="restoreInternalState" output="false">
<cfargument name="state">
<cfargument name="restore">
<cfset var preserveKeyList="context,base,cfcbase,subsystem,subsystembase,section,item,services,action,controllerExecutionStarted">
<cfloop list="#preserveKeyList#" index="k">
<cfset structDelete(arguments.state,k)>
</cfloop>
<cfset structAppend(state,restore,true)>
<cfset structDelete( state, "serviceExecutionComplete" )>
</cffunction>
<cffunction name="getMuraScope" output="false">
<cfset var $ = application.serviceFactory.getBean("MuraScope")>
<cfset var sInitArgs = StructNew()>
<cfif isDefined("session") and structKeyExists(session,"siteID")>
<cfset sInitArgs.siteID = session.siteID>
<cfelse>
<cfset sInitArgs.siteID = "default">
</cfif>
<cfset $.init(sInitArgs)>
<cfreturn $ />
</cffunction>
</cfcomponent>