Blog

Gavin Pickin

December 22, 2017

Spread the word


Share your thoughts

At Ortus Solutions, we love the holidays, and we wanted to gift you a gift of developer productivity, we will share a few tips and tricks that will keep giving all year around. In this series we'll be giving you 12 ContentBox tips. Keep your eye out for other 12 tips of Christmas series on our blog, including a new one this year, 12 modules of Christmas on ForgeBox.

Day 9 - ContentBox Autoloader Module - A module to help ensure permissions, permission groups, permission groups' permissions and setting required by the module, are loaded and exist, by using conventions in the ModuleConfig.

Usage

To ensure your module has the permissions, permission groups, permission groups' permissions and settings that it needs, you can define them quickly in your ModuleConfig, and ContentBox-AutoLoader will do the rest. After configuration load, this module loops through all the modules, and creates the appropriate permissions / settings, if they do not already exist.

How to add Autoloader config

Inside your ModuleConfig.cfc, in the configure function, you can define module settings. To use the Autoloader, please add a key called contentBoxAutoLoaders and inside of that key, we'll set a struct. Inside that struct, you can place config for any of the items to be autoloaded ( details below ).

1
2
3
4
5
function configure() {
        settings = {
            contentboxAutoLoaders = {}
        };
}

Adding Permissions Config

To ensure permissions exist in the ContentBox application, your module can define the list of permissions in the permissionkey inside of the contentboxAutoLoaders key setting. For a permission to be autoloaded, it is required to be a struct, with a permission key, which will be used as the slug for the permission. Description is optional, and if present, will be added to the permission.

1
2
3
4
5
6
7
8
9
10
11
12
13
function configure() {
    settings = {
        contentboxAutoLoaders = {
            "permission" = [
                { "permission" = "Because" },
                {
                    "permission" = "MyNewSetting",
                    "description" = "My New setting I have to have"
                }
            ]
        }
    };
}

Adding Permission Group config

To ensure permission groups exist in the ContentBox application, your module can define the list of permissions in the permissionGroup key inside of the contentboxAutoLoaders key setting. For a permission group to be autoloaded, it is required to be a struct, with a name key, which will be used as the slug for the permission group. Description is optional, and if present, will be added to the permission group.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
function configure() {
    settings = {
        contentboxAutoLoaders = {
            "permissionGroup" = [
                {
                    "name" = "MyNewGroup",
                    "description" = "My New Group I have to have"
                },
                {
                    "name" = "MyNewGroup2",
                    "description" = "My New Group I have to have"
                }
            ]
        }
    };
}

Adding PermissionGroup's Permission Config

Adding Permission Groups, and Permissions is not much help, without allowing you to define which Permission Groups has which permissions. This config allows you to set that relationship. Add the permissionGroupPermission key to the contentboxAutoLoaders struct. Inside of the permissionGroupPermission, define an array of structs, containing 2 keys, permissionGroupName, the permissionGroup you would like to add permissions to, and permissions an array of permissions. The array of permissions, is an array of structs, containing just 1 key, the permission which is the name / slug of the permission.

Note: This does not create the permission or the permission group. Please use the config above to add the permissions and permission groups, before setting their relationships with this config.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
function configure() {
    settings = {
        contentboxAutoLoaders = {
            "permissionGroupPermission" = [
                {
                    "permissionGroupName"   = "mynewgroup",
                    "permissions"       = [
                        { "permission" = "mynewsetting" },
                        { "permission" = "mynewsetting2" },
                        { "permission" = "mynewsetting3" },
                        { "permission" = "mynewsetting4" },
                        { "permission" = "mynewsetting5" },
                        { "permission" = "mynewsetting6" }
                    ]
                },
            ]
        }
    };
}

Adding Setting config

To ensure settings exist in the ContentBox application, your module can define the list of settings in the setting key inside of the contentboxAutoLoaders struct. For a setting to be autoloaded, it is required to be a struct, with a name key, which will be used as the slug for the setting, and the value key, which will be the value of the setting.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
function configure() {
    settings = {
        contentboxAutoLoaders = {
            "setting" = [
                {
                    "name" = "RC_New1",
                    "value" = "yes"
                },
                {
                    "name" = "RC_New2",
                    "value" = "no"
                }
            ]
        }
    };
}

Warning - May recreate your manual configurations deletions

As states, this module creates settings etc that do not exist. If you delete a permission, or remove a permission from a permission group, where your module defined that to be required, it will recreate that setting or relationship.

If the slugs already exist, it will not add, or modify the existing settings or values.

Full Example Configuration

Here is a full example of using the ContentBoxAutoLoaders config, with all of the possible keys.

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
function configure() {
    settings = {
        contentboxAutoLoaders = {
            "permission" = [
                { "permission" = "Because" },
                {
                    "permission" = "MyNewSetting",
                    "description" = "My New setting I have to have"
                },
                {
                    "permission" = "MyNewSetting2",
                    "description" = "My New setting I have to have"
                },
                {
                    "permission" = "MyNewSetting4",
                    "description" = "My New setting I have to have"
                },
                {
                    "permission" = "MyNewSetting6",
                    "description" = "My New setting I have to have"
                }
            ],
            "permissionGroup" = [
                {
                    "name" = "MyNewGroup",
                    "description" = "My New Group I have to have"
                },
                {
                    "name" = "MyNewGroup2",
                    "description" = "My New Group I have to have"
                }
            ],
            "permissionGroupPermission" = [
                {
                    "permissionGroupName"   = "mynewgroup",
                    "permissions"       = [
                        { "permission" = "mynewsetting" },
                        { "permission" = "mynewsetting2" },
                        { "permission" = "mynewsetting3" },
                        { "permission" = "mynewsetting4" },
                        { "permission" = "mynewsetting5" },
                        { "permission" = "mynewsetting6" }
                    ]
                },
            ],
            "setting" = [
                {
                    "name" = "RC_New1",
                    "value" = "yes"
                },
                {
                    "name" = "RC_New2",
                    "value" = "no"
                },
                {
                    "name" = "RC_New3",
                    "value" = "no"
                },
                {
                    "name" = "RC_New4",
                    "value" = "no"
                }
            ]
        }
    };
}

After using this module with a few clients, we are making some more additions before giving it the official Ortus seal of approval. 
The repo is currently on my personal github account: https://github.com/gpickin/contentbox-autoloader

Not available currently on Forgebox, but you can still install in your app with 

box install https://github.com/gpickin/contentbox-autoloader/archive/master.zip

Let me know if you have any ideas, thoughts or issues, and hoefully we can include those changes in the official 1.0.0 release under the Ortus name and in Forgebox.

Add Your Comment

Recent Entries

Into the Box 2025 Virtual Tickets Are Now LIVE!

Into the Box 2025 Virtual Tickets Are Now LIVE!

The wait is over! By popular demand, Into the Box 2025 virtual tickets are officially available! Secure your spot today and take advantage of our exclusive early bird pricing before it’s gone!

We’re bringing the community together to push the boundaries of modern development—because change starts with us. We’ve taken the first step, now it’s your turn to evolve and take action!

Maria Jose Herrera
Maria Jose Herrera
April 03, 2025
Security Red Flags in Your ColdFusion App (and how to fix them!)

Security Red Flags in Your ColdFusion App (and how to fix them!)

Security breaches can lead to data leaks, legal issues, and irreversible damage to your company's reputation. Many ColdFusion applications—especially older ones—are vulnerable to cyber threats due to outdated code, weak authentication, and improper security configurations.

When was the last time you audited your ColdFusion application for security risks? If you’re unsure, it’s time for a professional security review.


Top ColdFusion Security Risks – Are You Expose...

Cristobal Escobar
Cristobal Escobar
April 03, 2025
BoxLang 1.0.0 RC3 Has Landed!

BoxLang 1.0.0 RC3 Has Landed!

We are thrilled to announce the release of BoxLang 1.0.0-RC.3, marking a significant milestone in the development of our dynamic JVM language. This release brings a major performance boost and over 100 bug fixes and improvements, making it our most robust release to date. We are now entering the final stretch towards our full release on May 1st, and we need your help to ensure everything is in perfect shape. Please test your applications and report any issues.

Luis Majano
Luis Majano
April 03, 2025