npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@natsuyuchn/baileys-redis-store

v1.0.4

Published

A robust and efficient Redis-based storage solution for WhatsApp applications using the Baileys library.

Downloads

221

Readme

📦 RedisStore for Baileys

The RedisStore class provides an efficient way to manage and cache messages, chats, contacts, and more using Redis. This class integrates seamlessly with the Baileys library and offers a robust solution for handling and storing WhatsApp-related data.

🚀 Features

  • 🔗 Redis Integration: Connects to a Redis server to store and manage data.
  • 🔄 Event Handling: Listens and responds to various Baileys events such as connection updates and message reactions.
  • 💾 Data Caching: Implements caching for messages to improve performance and reduce Redis load.
  • 🔍 Message Search: Provides functionality to search for messages based on different criteria.
  • 🗑️ Data Clearing: Allows clearing all cached data from Redis and local storage.

🛠️ Installation

To use RedisStore, you'll need to install the necessary dependencies. Run the following command:

npm install baileys-redis-store

⚙️ Configuration

To set up RedisStore, create a new instance by providing the required configuration options:

import pino from 'pino';
import { RedisStore } from 'baileys-redis-store'; // Adjust the import path as necessary

// Create a Redis client with connection options
const redisClient: RedisClientType = createClient({
    url: "YOUR REDIS URL"
});

// Create a RedisStore instance for managing Baileys store data
const store = new RedisStore({
    redisConnection: redisClient,
    prefix: 'store', // Optional prefix for Redis keys
    logger: pino({ level: 'debug' }), // Optional Pino logger instance
    maxCacheSize: 5000, // Maximum number of messages to cache locally (defaults to 1000)
});

📋 Methods

disconnect

async disconnect(): Promise<void>

Disconnects from the Redis server. 🔌

bind

async bind(ev: Partial<EventEmitter>): Promise<void>

Binds event handlers to the specified event emitter. 🛠️

loadMessage

async loadMessage(jid: string, id: string): Promise<WAMessage | undefined>

Loads a single message from the cache or database. 📩

loadMessages

async loadMessages(jid: string, count: number, cursor?: { before?: WAMessageKey }): Promise<WAMessage[]>

Loads a list of messages from the database. 🗂️

getMessage

async getMessage(key: WAMessageKey): Promise<WAMessageContent | undefined>

Retrieves the content of a message. 📝

searchMessages

async searchMessages(options: MessageSearchOptions): Promise<WAMessage[]>

Searches for messages based on the given criteria. 🔍

getChat

async getChat(jid: string): Promise<Chat | null>

Retrieves chat details from the database. 💬

getContact

async getContact(jid: string): Promise<Contact | null>

Retrieves contact details from the database. 👤

getGroup

async getGroup(jid: string): Promise<GroupMetadata | null>

Retrieves group metadata from the database. 🧑‍🤝‍🧑

clearAll

async clearAll(): Promise<void>

Clears all data from the Redis cache and local cache. 🗑️

📚 Usage Example

Here's a basic example of how to use the RedisStore:

import makeWASocket, { useMultiFileAuthState } from '@whiskeysockets/baileys';
import { RedisStore } from 'baileys-redis-store'; // Import RedisStore for managing Redis-based session storage
import pino from 'pino'; // Import Pino for logging
import { createClient, RedisClientType } from 'redis'; // Import Redis client utilities

/**
 * Main function to set up the WhatsApp socket connection and Redis store.
 */
async function main() {
    // Create a Redis client with connection options
    const redisClient: RedisClientType = createClient({
        url: "YOUR REDIS URL"
    });

    // Handle Redis connection errors
    redisClient.on('error', (err) => {
        console.error('Redis Client Error:', err);
        // Optionally attempt to reconnect
        // setTimeout(() => redisClient.connect(), 5000); // Retry connection after 5 seconds
    });

    // Connect to the Redis server
    try {
        await redisClient.connect();
        console.log('Connected to Redis successfully!');
    } catch (error) {
        console.error('Error connecting to Redis:', error);
        return; // Exit if connection fails
    }

    // Create a RedisStore instance for managing Baileys store data
    const store = new RedisStore({
        redisConnection: redisClient,
        prefix: 'store', // Optional prefix for Redis keys
        logger: pino({ level: 'debug' }), // Optional Pino logger instance
        maxCacheSize: 5000, // Maximum number of messages to cache locally (defaults to 1000)
    });

    // Load authentication state from multi-file storage
    const { state, saveCreds } = await useMultiFileAuthState('./Test');

    // Create a WhatsApp socket connection with the specified configuration
    const sock = makeWASocket({
        auth: state,
        printQRInTerminal: true,
        getMessage: store.getMessage.bind(store), // Bind the context for getMessage method
    });

    // Listen for credentials updates and save them
    sock.ev.on('creds.update', saveCreds);

    // Bind the store to the WhatsApp socket event emitter
    await store.bind(sock.ev as any);

    // Handle incoming messages
    sock.ev.on('messages.upsert', async ({ messages }) => {
        const msg = messages[0];

        // Example of loading a specific message by ID
        const loadMessage = store.loadMessage("12343434@jid", "04FC413D6BE3C1XXXX");
        
        // Example of loading the latest messages (up to 40) for a specific chat
        const loadMessages = store.loadMessages("12343434@jid", 40);
    });

    // Gracefully disconnect from Redis on process exit
    process.on('SIGINT', async () => {
        console.log('Disconnecting from Redis...');
        await redisClient.quit();
        console.log('Disconnected from Redis.');
        process.exit(0); // Exit cleanly
    });
}

// Execute the main function and handle any errors
main().catch((error) => {
    console.error('Main function error:', error);
});

🔗 Links