Constants
Each Moobot runs in its own thread and instances of Moobots are independent of each other. The Constants module enables you to share logic, states or flags between Moobots. You can build a key value dictionary mapping that is shared across Moobot instances.
There are many system wide defined Constants that are used in the Events module to define which event to listen for. See the event types table below for more information.
Load the module
The Constants module is available to load into any standard Moobot. To load it, define a new global variable at the top of the Moobot Javascript file. For example:
var constants = MooBot.loadModule('Constants');
Method reference
The Constants module uses the following methods.
put
Associates a specified value with a specified key. Replaces the mapping for an existing key.
Request arguments
The method takes the following arguments.
Name | Type | Description |
---|---|---|
| String | The key to associate with the value. |
| Object | The value to associate with the key. |
Response
None.
putUntil
Associates a specified value with a specified key until the epoch timestamp specified. Replaces the mapping for an existing key.
Request Arguments
The method takes the following arguments.
Name | Type | Description |
---|---|---|
key | String | The key to associate with the value. |
value | Object | The value to associate with the key. |
epoch | Integer | The epoch time in seconds after which the key will be removed from the namespace |
Example
//adds an entry to the default namespace which will expire at 1696679010 epoch time constants.putUntil('myKey1', myObject1, 1696679010); //adds an entry to a custom namespace which will expire at 1696679010 epoch time myNamespace.putUntil('myKey2', myObject2, 1696679010);
putUntilDuration
Associates a specified value with a specified key for a fixed time period. Replaces the mapping for an existing key.
Request Arguments
The method takes the following arguments.
Name | Type | Description |
---|---|---|
key | String | The key to associate with the value. |
value | Object | The value to associate with the key. |
secondsUntilRemoval | Integer | The number of seconds the entry should be kept in the namespace before automatic removal |
Example
//adds an entry to the default namespace which will expire after 20 seconds constants.putUntilDuration('myKey1', myObject1, 20); //adds an entry to a custom namespace which will expire after 40 seconds myNamespace.putUntilDuration('myKey2', myObject2, 40);
get
Retrieves the value mapped to a specified key.
Request arguments
The method takes the following arguments.
Name | Type | Description |
---|---|---|
| String | The key for which to retrieve the value. |
Response
The method returns the following parameter:
Type | Description |
---|---|
| The value to which the key is mapped, or null if no mapping exists. |
getNamespace
Will create and return a named Constants namespace with a fixed size. Once a fixed size namespace is full, further additions will push out the older entries (FIFO)
Request Arguments
The method takes the following arguments.
Name | Type | Description |
---|---|---|
key | String | The key to associate with the value. |
value | Object | The value to associate with the key. |
epoch | Integer | The epoch time in seconds after which the key will be removed from the namespace |
Example
// will create a namespace of size 25 var my_fixed_size_namespace = constants.getNameSpace('my_fixed_size_namespace', 25); my_fixed_size_namespace.put("onekey", "onevalue");
getCopy
Retrieves the copy of a value mapped to a specified key.
Request arguments
The method takes the following arguments:
Name | Type | Description |
---|---|---|
| String | The key for which to retrieve the value. |
Response
The method returns the following parameter:
Type | Description |
---|---|
Object | The copy of value to which the key is mapped, or null if no mapping exists. |
getCopy
Retrieves the copy of a value mapped to a specified key. Given a namespace, retrieves the copy of a value mapped to a specified key within the namespace.
Request arguments
The method takes the following arguments:
Name | Type | Description |
---|---|---|
| String | Namespace for the constant. For example, Integration type. |
| String | The key for which to retrieve the value. |
Response
The method returns the following parameter:
Type | Description |
---|---|
Object | The copy of value to which the key is mapped, or null if no mapping exists. |
Example
The following example demostrates how to return the object mapped to the config
key in the "PayloadMacroMaps" namespace:
var payloadConfig = constants.getCopy("PayloadMacroMaps", "config");
contains
Returns a positive response if the module contains an object with the specified name.
Request argument
The method takes the following argument:
Name | Type | Description |
---|---|---|
| String | The Object name. |
Response
The method returns the following parameter:
Type | Description |
---|---|
| True if the module contains the specified object, otherwise false. |
remove
Removes the value mapped to the specified key.
Request arguments
The method takes the following arguments:
Name | Type | Description |
---|---|---|
| String | The key for which the value is to be removed. |
Response
None.
eventType
Retrieves the value of a specified event type.
Request arguments
The method takes the following arguments:
Name | Type | Description |
---|---|---|
| String | The name of the event type. See the list of event types in the table below. |
Event types
You can use one of the following event types in the name argument:
Name | Passed Value | Description |
---|---|---|
|
| Raw event from a LAM |
|
| A new alert was created from an event. |
|
| An existing alert was updated (examples: severity changed, deduplication occurred). |
|
| An existing alert was closed. |
|
| A new comment was added into a Situation Room. |
|
| New feedback (a rating) was added to a Thread Entry in a Situation Room. |
|
| A new Situation was created. |
|
| An existing Situation was Closed. |
|
| An existing Situation was updated (examples: alerts added, teams changed). |
|
| An existing Situation changed state (for example, set to Resolved). |
|
| A SituationAction message was generated, which contains details of the action. Possible messages include Situation updates, thread entry changes, situation merges, tool usage, user workflow changes, and other similar information. |
|
| An existing Thread Entry was updated (example: a comment was added). |
|
| A new Thread Entry was added to a Situation Room. |
|
| A System Summary event message was generated (example: containing total number of Events or Situations). |
|
| A user was invited to a Situation. |
|
| Username |
|
| An uncategorized event (error condition) |
Response
The method returns the following parameter:
Type | Description |
---|---|
CEvent | An object containing the value of the specified event type. |
Examples
The following example in AlertBuilder.js
shows the Constants module with two methods that allow you to post and retrieve values from a shared scratchpad.
var count=0 constants.put("counter",count);
The variable count is set to 0 and stored using the label counter
.
You can then retrieve a value by calling the get
method and passing the name of the shared attribute, which is returned as a JavaScript local variable.
var count_val=constants.get("counter"); count_val++; constants.put("counter",count_val);
The
get
method takes the name of the shared attribute, "counter".The variable
count_val
is incremented.The
put
method takes the name of the variable to store, "counter", and the incremented valuecount_val
.
If nothing is stored in counter
, the Moobot returns null
.
The following example passes the name of an event and returns a system wide constant that identifies that type of event when using the Events module.
constants.eventType("Event")