BoxLang 🚀 A New JVM Dynamic Language Learn More...
Copyright Since 2005 ColdBox Platform by Luis Majano and Ortus Solutions, Corp
www.coldbox.org |
www.ortussolutions.com
The cbstorages
module will provide you with a collection of smart 😉 storage services that will enhance the capabilities of the major ColdFusion (CFML) scopes:
CacheStorage
allows you to leverage distributed caches like Couchbase, Redis, ehCache, etc for distributed session management. It can act as a distributed session scope.CookieStorage
can do automatic encryption/decryption, httpOnly, security and much more.Apache License, Version 2.0.
Use CommandBox to install
box install cbstorages
The module registers the following storage mappings:
applicationStorage@cbstorages
- For application based storageCGIStorage@cbstorages
- For cgi based storage (read-only)clientStorage@cbstorages
- For client based storagecookieStorage@cbstorages
- For cookie based storagesessionStorage@cbstorages
- For session based storagecacheStorage@cbstorages
- For CacheBox based storage simulating session/clientrequestStorage@cbstorages
- For request based storageYou can check out the included API Docs to see all the functions you can use for persistence.
Some storages require further configuration via your configuration file config/ColdBox.cfc
under the moduleSettings
in a cbStorages
structure:
cbStorages : {
cacheStorage : {
// The CacheBox registered cache to store data in
cachename : "template",
// The default timeout of the session bucket, defaults to 60
timeout : 60,
// The identifierProvider is a closure/udf that will return a unique identifier according to your rules
// If you do not provide one, then we will search in session, cookie and url for the ColdFusion identifier.
// identifierProvider : function(){}
identifierProvider : "" // If it's a simple value, we ignore it.
},
// Cookie Storage settings
cookieStorage : {
// Matches the secure attribute of cfcookie, ssl only
secure : false,
// If yes, sets cookie as httponly so that it cannot be accessed using JavaScripts
httpOnly : true,
// Applicable global cookie domain
domain : "",
// Use encryption of values
useEncryption : false,
// The unique seeding key to use: keep it secret, keep it safe
encryptionSeed : "CBStorages",
// The algorithm to use: https://cfdocs.org/encrypt
encryptionAlgorithm : "CFMX_COMPAT",
// The encryption encoding to use
encryptionEncoding : "Base64"
}
}
The CacheStorage
leverages a discovery algorithm to determine a user's request in order to store their session information. The discovery order is the following:
You can use the identifierProvider
in order to give the storage the unique identifier you want to use. This is useful if you do your own tracking your way. If not, we will use the ColdFusion approaches of jsessionID
or cfid/cftoken
.
identifierProvider = function(){
return cookie.myTrackingCookie;
}
All storages must adhere to our interface, but each of them can extend as they see please. Here is the basic interface for all storages:
/**
* Copyright Ortus Solutions, Corp
* www.ortussolutions.com
* ---
* This is the main storage interface all cbStorages should implement
*/
interface {
/**
* Set a new variable in storage
*
* @name The name of the data key
* @value The value of the data to store
*
* @return cbstorages.models.IStorage
*/
any function set( required name, required value );
/**
* Do a multi-set using a target structure of name-value pairs
*
* @map A struct of name value pairs to store
*
* @return cbstorages.models.IStorage
*/
any function setMulti( required struct map );
/**
* Get a new variable in storage if it exists, else return default value, else will return null.
*
* @name The name of the data key
* @defaultValue The default value to return if not found in storage
*/
any function get( required name, defaultValue );
/**
* Triest to get a value from the storage, if it does not exist, then it will
* call the `produce` closure/lambda to produce the required value and store it
* in the storage using the passed named key.
*
* @name The name of the key to get
* @produce The closure/lambda to execute that should produce the value
*/
any function getOrSet( required name, required any produce );
/**
* Get multiple values from the storage using the keys argument which can be a list or an array
*
* @keys A list or array of keys to get from the storage
*/
struct function getMulti( required keys );
/**
* Delete a variable in the storage
*
* @name The name of the data key
*/
boolean function delete( required name );
/**
* Delete multiple keys from the storage
*
* @keys A list or array of keys to delete from the storage
*
* @return A struct of the keys and a boolean value if they where removed or not
*/
struct function deleteMulti( required keys );
/**
* Verifies if the named storage key exists
*
* @name The name of the data key
*/
boolean function exists( required name );
/**
* Clear the entire storage
*
* @return cbstorages.models.IStorage
*/
any function clearAll();
/**
* Get the size of the storage
*/
numeric function getSize();
/**
* Get the list of keys stored in the storage
*/
array function getKeys();
/**
* Verifies if the storage is empty or not
*/
boolean function isEmpty();
/****************************************** STORAGE METHODS ******************************************/
/**
* Get the entire storage scope structure, basically means return all the keys
*/
struct function getStorage();
/**
* Remove the storage completely, different from clear, this detaches the entire storage
*
* @return cbstorages.models.IStorage
*/
any function removeStorage();
/**
* Check if storage exists
*/
boolean function storageExists();
/**
* Create the storage
*
*
* @return cbstorages.models.IStorage
*/
any function createStorage();
}
Copyright Since 2005 ColdBox Framework by Luis Majano and Ortus Solutions, Corp www.ortussolutions.com
Because of His grace, this project exists. If you don't like this, then don't read it, its not for you.
"Therefore being justified by faith, we have peace with God through our Lord Jesus Christ: By whom also we have access by faith into this grace wherein we stand, and rejoice in hope of the glory of God. And not only so, but we glory in tribulations also: knowing that tribulation worketh patience; And patience, experience; and experience, hope: And hope maketh not ashamed; because the love of God is shed abroad in our hearts by the Holy Ghost which is given unto us. ." Romans 5:5
"I am the way, and the truth, and the life; no one comes to the Father, but by me (JESUS)" Jn 14:1-12
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
lockNames
so there are no missing ones used by the abstract cache.cacheStorage
: identifierProvider
which can be a closure/lambda/udf that returns a unique tracking identifier for user requests.sameSite
argument to setting cookiesexpires
is not defaulted to 0 which eliminates the cookie. It is now expiring as it should using the browser session as the key indicator.AbstractStorage
thanks to @wpdebruingetOrSet
thanks to @wpdebruinimprovement
: Remove numeric
typing on expiry
for CookieStorage: The numeric typing on the expires argument will still allow a date object to pass through ( strangely ), but prevents the pass through of the textual arguments allowed by CFCookie: https://helpx.adobe.com/coldfusion/cfml-reference/coldfusion-tags/tags-c/cfcookie.htmlimprovement
: Added formatting and linting scriptsbug
: Fixed toMaster
script so it could pull master incase of divergencebug
: CCM-54 - Left over bug on session storage looking at app storagefeature
: All storages now implement a common interface : IStorage
feature
: New interface brings new storageWide methods: setMulti(), getOrSet(), getMulti(), deleteMulti(), getSize(), getkeys(), isEmpty()
feature,compat
: ColdBox 4/5 approach to settings instead of in the root, in the moduleSettings
improvement,compat
: All tag based default values where named default
but renamed to defaultValue
to have consistency.improvement
: Dropped Lucee4.5 and ACF11 supportimprovement
: Script migrationsfeature
: Added support for httpOnly and secure cookies in the cookie storage.improvement
: Added option to specify path when deleting a cookie. Without this option, the cookie is never deleted when specifying a path when creating a cookie. https://github.com/coldbox-modules/cbstorages/pull/7 (@donbellamy)improvement
: TestBox 3 upgradeimprovement
: Mark all storages as serializable=false
to avoid serialization issuescompat
: Removed ClusterStorage
as this was a lucee only feature that actually never released.compat
: The following methods have been renamed: setVar() => set()
, getVar() => get()
, and deleteVar() => delete()
getSessionKey
to public method: https://github.com/coldbox-modules/cbox-storages/pull/6CacheStorage
to be the template
cache instead of default
RequestStorage
thanks to Dan MurphyCacheStorage
to allow you to simulate session/client on a distributed cache via CacheBox.
$
box install cbstorages