Skip to content

Adding config store

The Config store in DeepIntShield is designed to be extensible, allowing support for different database backends. This guide outlines the philosophy, architecture, and steps to add support for a new database.

This guide will help you add a new custom backend for the config store. Currently, deepintshield supports PostgreSQL and SQLite.

We assume you have some idea about how DeepIntShield works and you have already set up deepintshield for local development.

The system is built around a few key components:

  1. ConfigStore Interface: This is the heart of the system. It defines all the methods required to read and write configuration data (e.g., GetClientConfig, UpdateProvider). Any valid store must implement this interface.
  2. RDBConfigStore: A reusable implementation for Relational Databases (RDBs). It uses an ORM (GORM) to map the interface methods to SQL queries. If your target database is supported by GORM, you can likely reuse this implementation entirely.
  3. Configuration Structs: Each database type has its own configuration struct (e.g., SQLiteConfig, PostgresConfig) that defines how to connect to it.

The config store is used to save all your deepintshield configurations. This can be a simple in-memory store or a postgres database. DeepIntShield exposes a single interface (ConfigStore) for all configuration CRUD (Create, Read, Update, Delete) operations.

Any custom backend for config store should implement the ConfigStore interface. The interface is defined in configstore/store.go.

It is recommended to use GORM for the config store. GORM is a popular ORM (Object-Relational Mapping) library for Go. It provides a simple and efficient way to interact with databases.

GORM provides implementations for the functions listed in the ConfigStore interface. This significantly simplifies the implementation of the config store (see postgres.go as an example).

When adding a new database, please follow these conventions:

  • The main interface and factory method are in framework/configstore/store.go.
  • Shared RDB implementation details are in framework/configstore/rdb.go.
  • Create a new file for your database implementation, named after the database (e.g., framework/configstore/postgres.go).
  1. Add a new constant to the ConfigStoreType in store.go.
  2. Define a struct in your new database file that contains all connection parameters (host, port, credentials, etc.).
  3. Implement the Factory Function: Create a function that:
    • Accepts the configuration struct and a logger
    • Opens a GORM database connection using your database’s GORM driver
    • Returns an instance of RDBConfigStore with the database connection
    • Runs migrations to ensure the schema is up-to-date
  4. Update the Factory: Add a new case in the NewConfigStore function in store.go to handle your new database type.
  5. If needed, update the Config struct’s UnmarshalJSON method in config.go to properly parse your configuration.

Make sure to properly handle errors during:

  • Database connection establishment
  • Migration execution
  • Connection cleanup (especially important if migrations fail)
  • Ensure your implementation can handle concurrent access to the database
  • Consider connection pooling and timeout settings appropriate for your database
  • Test with both empty and populated databases
  • Verify that all ConfigStore interface methods work correctly with your backend

If you need help, please reach out to the DeepIntShield team on Discord.