-
Notifications
You must be signed in to change notification settings - Fork 0
/
Application.cfc
374 lines (290 loc) · 16.4 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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
<!---
This file is part of the Meld Gallery application.
Meld Gallery is licensed under the GPL 2.0 license
Copyright (C) 2010 2011 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 coldspringXml = "" />
<cfset var coldspringXmlPath = "" />
<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>
<cfset variables.pluginConfig=application.pluginManager.getConfig(variables.framework.applicationKey)>
</cfif>
<cfif not isDefined("$")>
<cfset $ = getMuraScope() />
</cfif>
<cfset coldspringXmlPath = "#expandPath('/plugins')#/#variables.pluginConfig.getDirectory()#/coldspring/coldspring.xml.cfm" />
<!--- read in coldspringXml --->
<cffile action="read" file="#coldspringXmlPath#" variable="coldspringXml" />
<!--- parse the coldspringXml and replace all [plugin] with the plugin mapping path, and |plugin| with the physical path --->
<cfset coldspringXml = replaceNoCase( coldspringXml, "[plugin]", "plugins.#variables.pluginConfig.getDirectory()#.", "ALL") />
<cfset coldspringXml = replaceNoCase( coldspringXml, "|plugin|", "plugins/#variables.pluginConfig.getDirectory()#/", "ALL") />
<cfset defaultProperties.dsn = variables.pluginConfig.getSetting( "dsn" )>
<cfset defaultProperties.dsnusername = variables.pluginConfig.getSetting( "dsnusername" )>
<cfset defaultProperties.dsnpassword = variables.pluginConfig.getSetting( "dsnpassword" )>
<cfset defaultProperties.dsnprefix = variables.pluginConfig.getSetting( "dsnprefix" )>
<cfset defaultProperties.dsntype = variables.pluginConfig.getSetting( "dsntype" )>
<cfset defaultProperties.muradsn = $.globalConfig().getValue( "datasource" )>
<cfset defaultProperties.muradsnusername = $.globalConfig().getValue( "dbusername" )>
<cfset defaultProperties.muradsnpassword = $.globalConfig().getValue( "dbpassword" )>
<cfset defaultProperties.muradsntype = $.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) />
<!--- build CS factory --->
<cfset beanFactory=createObject("component","coldspring.beans.DefaultXmlBeanFactory").init( defaultProperties=defaultProperties ) />
<!--- load beans --->
<cfset beanFactory.loadBeansFromXmlRaw( coldspringXml ) />
<!--- set the FW/1 bean factory as our new ColdSpring bean factory --->
<cfset setBeanFactory( beanFactory ) />
<!---
NOTE: do not set Mura's service factory as parent to our bean factory, as getBean() will
default to Mura's, not ours!
--->
<!--- set the pluginConfig for our plugin into the fw1 application scope --->
<cfset setPluginConfig( variables.pluginConfig )>
<!--- push the ColdSpring factory into plugin application scope --->
<cfset variables.pluginConfig.getApplication().setValue( "beanFactory", beanFactory ) />
<cfset beanFactory.getBean('MuraManager').setServiceFactory( $.event().getServiceFactory() ) />
<!--- push the ColdSpring factory and pluginConfig into the manager --->
<cfset beanFactory.getBean('MeldGalleryManager').setBeanFactory( beanFactory ) />
<cfset beanFactory.getBean('MeldGalleryManager').setPluginConfig( getPluginConfig() ) />
<!--- Mura Interfaces --->
<cfset beanFactory.getBean('MuraDisplayObjectManager').setMuraScope( $ ) />
<cfset beanFactory.getBean('MuraEventHandlerManager').setMuraScope( $ ) />
<!--- set the main FW/1 bean factory as the parent factory --->
<cfset beanFactory.getBean("mmResourceBundle").setParentFactory( $.SiteConfig().getRBFActory() ) />
<cfif variables.framework.reloadApplicationOnEveryRequest or StructKeyExists(url,variables.framework.reload)>
<cfset application[ variables.framework.applicationKey & "BeanFactory" ] = beanFactory>
</cfif>
<cfset setupSubSystems() />
</cffunction>
<cffunction name="setupSubsystem" output="false">
<cfargument name="subsystem" type="string" required="true" />
<cfset var beanFactory = "" />
<cfset var coldspringXml = "" />
<cfset var coldspringXmlPath = "" />
<cfset var displayPath = "" />
<cfset var defaultProperties = StructNew()>
<cfset var sArgs = StructNew() />
<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("$")>
<cfset $ = getMuraScope() />
</cfif>
<cfset displayPath = "#expandPath( '/plugins' )#/#variables.pluginConfig.getDirectory()#/#arguments.subsystem#" />
<!--- ensure that we have PluginConfig in the variables scope --->
<cfif arguments.subsystem eq variables.framework.defaultSubsystem>
<cfreturn>
</cfif>
<cfset coldspringXmlPath = "#displayPath#/coldspring/coldspring.xml.cfm" />
<!--- if the subApplication has it's own bean factory, read in coldspringXml --->
<cfif fileExists( coldspringXmlPath )>
<cffile action="read" file="#coldspringXmlPath#" variable="coldspringXml" />
<!--- parse the coldspringXml and replace all [plugin] with the plugin mapping path, and |plugin| with the physical path --->
<cfset coldspringXml = replaceNoCase( coldspringXml, "[plugin]", "plugins.#variables.pluginConfig.getDirectory()#.#arguments.subsystem#.", "ALL") />
<cfset coldspringXml = replaceNoCase( coldspringXml, "|plugin|", "plugins/#variables.pluginConfig.getDirectory()#/#arguments.subsystem#/", "ALL") />
<!--- set the default values --->
<cfset defaultProperties.dsn = variables.pluginConfig.getSetting( "dsn" )>
<cfset defaultProperties.dsnusername = variables.pluginConfig.getSetting( "dsnusername" )>
<cfset defaultProperties.dsnpassword = variables.pluginConfig.getSetting( "dsnpassword" )>
<cfset defaultProperties.dsnprefix = variables.pluginConfig.getSetting( "dsnprefix" )>
<cfset defaultProperties.dsntype = variables.pluginConfig.getSetting( "dsntype" )>
<cfset defaultProperties.pluginFileRoot = expandpath("/#variables.pluginConfig.getPackage()#")>
<cfset defaultProperties.subsystemFileRoot = defaultProperties.pluginFileRoot & "/" & arguments.subsystem>
<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>
<!--- build CS factory --->
<cfset beanFactory=createObject("component","coldspring.beans.DefaultXmlBeanFactory").init( defaultProperties=defaultProperties ) />
<!--- load beans --->
<cfset beanFactory.loadBeansFromXmlRaw( coldspringXml ) />
<!--- set the main FW/1 bean factory as the parent factory --->
<cfset beanFactory.setParent( variables.pluginConfig.getApplication().getValue("beanFactory") ) />
<cfset setSubsystemBeanFactory( subsystem, beanFactory )>
</cfif>
</cffunction>
<cffunction name="setupSubSystems" output="false">
<cfset var sArgs = StructNew() />
<cfset var displayTypeService = getBeanFactory().getBean("DisplayTypeService") />
<cfset var aDisplayObjectTypes = displayTypeService.getDisplayTypes( argumentCollection=sArgs ) />
<cfloop from="1" to="#ArrayLen( aDisplayObjectTypes )#" index="iiX">
<cfset registerSubsystem( aDisplayObjectTypes[iiX].getPackage(),aDisplayObjectTypes[iiX] ) />
<cfset setupSubsystem( aDisplayObjectTypes[iiX].getPackage() ) />
</cfloop>
</cffunction>
<cffunction name="registerSubsystem" output="false">
<cfargument name="subsystem" type="string" required="true" />
<cfargument name="displayTypeBean" type="any" required="false"/>
<cfset var displayPath = "" />
<cfset var muraDisplayObjectManager = getBeanFactory().getBean("muraDisplayObjectManager") />
<cfset var muraEventHandlerManager = getBeanFactory().getBean("muraEventHandlerManager") />
<cfset var displaytypeService = getBeanFactory().getBean("DisplaytypeService") />
<cfset var displayObjectBean = "" />
<cfset var sArgs = StructNew() />
<cfset displayPath = "#expandPath( '/plugins' )#/#variables.pluginConfig.getDirectory()#/#arguments.subsystem#" />
<!--- ensure that we have PluginConfig in the variables scope --->
<cfif arguments.subsystem eq variables.framework.defaultSubsystem>
<cfreturn>
</cfif>
<!--- check/register the display object --->
<cfif directoryExists( "#displayPath#/display" ) and fileExists( "#displayPath#/display/displayManager.cfc" ) >
<cfif not StructKeyExists(arguments,"displayTypeBean")>
<cfset sArgs = StructNew() />
<cfset sArgs.package = arguments.subsystem />
<cfset displayTypeBean = displayTypeService.getBeanByAttributes( argumentCollection=sArgs ) />
</cfif>
<cfset sArgs = StructNew() />
<cfset sArgs.moduleID = getPluginConfig().getValue('moduleID') />
<cfset sArgs.name = displayTypeBean.getName() />
<cfif len( displayTypeBean.getObjectID() )>
<cfset sArgs.objectID = displayTypeBean.getObjectID() />
</cfif>
<cfset sArgs.location = "global" />
<cfset sArgs.component = "#arguments.subsystem#.display.displayManager" />
<cfset sArgs.displayMethod = "renderApp" />
<cfset displayObjectBean = muraDisplayObjectManager.registerDisplayObject( argumentCollection=sArgs ) />
<cfif isObject(displayObjectBean)>
<cfset displayTypeBean.setModuleID( displayObjectBean.getModuleID() ) />
<cfset displayTypeBean.setObjectID( displayObjectBean.getObjectID() ) />
<cfset displayTypeService.updateDisplaytype( displayTypeBean ) />
</cfif>
</cfif>
<!--- check/register the event handler --->
<cfif directoryExists( "#displayPath#/events" ) and fileExists( "#displayPath#/events/eventHandler.cfc" ) >
<cfset sArgs = StructNew() />
<cfset sArgs.moduleID = getPluginConfig().getValue('moduleID') />
<cfset sArgs.component = "#arguments.subsystem#.events.eventHandler" />
<cfset sArgs.runat = "onApplicationLoad" />
<cfset muraEventHandlerManager.registerEventHandler( argumentCollection=sArgs ) />
</cfif>
</cffunction>
<cffunction name="setPluginConfig" output="false">
<cfargument name="pluginConfig" type="any" required="true">
<cfset application[ variables.framework.applicationKey ].pluginConfig = arguments.pluginConfig>
</cffunction>
<cffunction name="getPluginConfig" output="false">
<cfreturn application[ variables.framework.applicationKey ].pluginConfig>
</cffunction>
<cffunction name="onRequestEnd" output="false">
<!--- TODO: Move to master layout, as per Sean Corfield --->
<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>
<!--- fix issue with Mura grabbing my framework settings --->
<cffunction name="onMissingView" output="false">
<cfparam name="url.action" default="" />
<cfif left(url.action,1) eq "c" and not findNoCase(pluginConfig.getDirectory(),cgi.script_name)>
<cflocation url="./?ma=#url.action#" addtoken="false" />
<cfelse>
<cfset super.onMissingView( argumentCollection=arguments ) />
</cfif>
</cffunction>
<cffunction name="getFrameworkVariables" output="false">
<cfset var framework = StructNew() />
<cfinclude template="frameworkConfig.cfm" />
<cfreturn framework />
</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 structKeyExists(session,"siteID")>
<cfset sInitArgs.siteID = session.siteID>
<cfelse>
<cfset sInitArgs.siteID = "default">
</cfif>
<cfset $.init(sInitArgs)>
<cfreturn $ />
</cffunction>
</cfcomponent>