Socket
Socket
Sign inDemoInstall

botbuilder-storage-mongodb

Package Overview
Dependencies
320
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    botbuilder-storage-mongodb

This project provides a MongoDb storage mechanism for [Bot Framework-JS SDK V4.](https://github.com/Microsoft/botbuilder-js).


Version published
Weekly downloads
674
decreased by-41.34%
Maintainers
1
Install size
57.6 MB
Created
Weekly downloads
 

Readme

Source

State Storage for Bot Framework using MongoDB

This project provides a MongoDb storage mechanism for Bot Framework-JS SDK V4..

It allows you to store bot state in MongoDB, so that you can scale out your bot, and be more resilient to bot server failures.

Build and test

Requirements

  • NodeJS 13.x was used to create and test this library.
  • MongoDB database, or a database exposing basic MongoDB syntax.

Installation

npm install botbuilder-storage-mongodb

Sample Usage

(async () => {
  const mongoClient = new MongoClient("mongodb://localhost:27017/", { useUnifiedTopology: true });
  await mongoClient.connect();
  const collection = MongoDbStorage.getCollection(mongoClient);
  const mongoStorage = new MongoDbStorage(collection);

  // now we have a storage component instantiated:
  const conversationState = new ConversationState(mongoStorage);

  //... rest of your code
})();

See example code for more details.

Specifying Mongo Collection

The convenience method MongoDbStorage.getCollection(mongoClient) returns a MongoDB Collection object. It leverages default values MongoDbStorage.DEFAULT_DB_NAME and MongoDbStorage.DEFAULT_COLLECTION_NAME for the database and collection names respectively, resulting in the default collection BotFreamework.BotFrameworkState.

You may alternatively call the method and supply dbName and collectionName to suit your needs:

  MongoDbStorage.getCollection(mongoClient, 'MyDbName','MyCollectionName')
  // collection "MyCollectionName" in the database "MyDbName"

If using the method MongoDbStorage.getCollection(mongoClient) to obtain a collection, the mongoClient object must already be instantiated and connected!

You can also skip using the convenience method and supply a Collection instance to the constructor by obtaining a collection reference from your application configured to your liking. One reason you may want or need to do so is if you want to provide collection specific options not exposed by the convenience method.

⚠ Caution: you should not store Mongo URL in code! Get the url from a configuration such as environment variable or a secrets store in your environment. It may contain sensitive password in the clear and should never be stored in code!

See MongoDB Connection URI format in the official documentation to learn more about the connection url parameter value.

Stale State

Persisted state is stored indefinitely by Mongo, as the BotFramework on its own does not clean up persisted state.

You can leverage MongoDB's TTL index to automatically delete state records a certain time after their creation. The field dt on the state items is updated each time a state is saved. It is therefore a good candidate for expire-after-x type cleanup.

Using the MongoDB Shell, the commands below creates a TTL index on the dt field, causing MongoDB compliant engines to automatically delete documents older than 30 days:


  use BotFramework
   db.BotFrameworkState.createIndex({dt: 1}, {expireAfterSeconds: (60 * 60 * 24 * 30)});

FAQs

Last updated on 27 Mar 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc