-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathModuleConfig.cfc
68 lines (54 loc) · 1.65 KB
/
ModuleConfig.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
component{
// Module Properties
this.title = "Amazon S3 Explorer";
this.author = "Ortus Solutions";
this.webURL = "https://www.ortussolutions.com";
this.description = "A Cool Amazon S3 Explorer Module For ColdBox";
this.version = "3.0.1";
this.viewParentLookup = true;
this.layoutParentLookup = true;
this.entryPoint = "s3explorer";
this.dependencies = [ "cbMessageBox" ];
function configure(){
settings = {
accessKey = "",
secretKey = "",
encryption_charset = "utf-8",
ssl = false,
tempUploadDirectory = expandPath( "/#moduleMapping#/_tmp" )
}
// Layout Settings
layoutSettings = { defaultLayout = "S3Layout.cfm" };
// SES Routes
routes = [
{ pattern="/", handler="explorer", action="index" },
{ pattern="/bucket/:bucketname/:foldername?", handler="explorer", action="viewBucket" },
{ pattern="/:handler/:action?" }
];
}
/**
* Fired when the module is registered and activated.
*/
function onLoad(){
// parse parent settings
parseParentSettings();
}
/**
* Fired when the module is unregistered and unloaded
*/
function onUnload(){
}
//**************************************** PRIVATE ************************************************//
/**
* parse parent settings
*/
private function parseParentSettings(){
var oConfig = controller.getSetting( "ColdBoxConfig" );
var configStruct = controller.getConfigSettings();
var s3explorer = oConfig.getPropertyMixin( "s3explorer", "variables", structnew() );
// defaults
configStruct.s3explorer = settings;
// incorporate settings
structAppend( configStruct.s3explorer, s3explorer, true );
}
}