Franklin Pezzuti Dyer

Home     Posts     CV     Contact     People

Abstracting chatbots in Discord, Slack and Telegram

In this post I'll describe a small personal project that's kept me occupied for the past couple of days. I know and use various messaging platforms, with Discord being the one I use most frequently. I've also participated in a few Slack groups for classes and meetings in the past, and now that I'm in Spain for a year abroad I have a Telegram account, since that platform is more popular here than in the US. Each one of these platforms has an API that can be used to develop bots, or "fake users" whose behavior can be automated to carry out some function such as providing information to real users, automatically formatting the messages of other users, etc. In a previous post I used the Discord API to develop a bot that imitates the messages of a server's users using a language learning model (and as expected, the results were ridiculous).

So it occurred to me that it would be interesting to try sketching an app that abstracts the interfaces of these different platforms, allowing one to write a bot using extremely general code that can function more or less the same on each platform. This way, we could write a variety of applications without having to rummage through the docs of each individual API or repeat a lot of boilerplate code. This seemed like a good exercise to try for several reasons:

At first, I was going to try implementing this idea in Python, but handling asynchronicity with the asyncio library turned out to be very difficult and clumsy and in the end it didn't turn out very well. On the other hand, it came out very elegant when I tried the same with Node.js, due to its asynchronous paradigm. Another thing worth noting is that although I'm going to try to present the design of my little application very systematically here, my own design process was much more exploratory and not so linear.

Let's get to it!

Designing the interface

Each one of the three platforms that we'll consider provides slightly different functionalities, for instance, they treat multimedia content in different ways, "reactions" to messages work a little differently, etc. I'd like whatever I design to be easy to extend in the future to almost any messaging platform that one would want to support, assuming that it has a public API. Because of this, our bots will just have the following very limited functional requirements:

We'll just be designing our bots to work with direct messages rather than in channels with various users, in order not to complicate things too much. To preserve our services' independence from the specific platforms on which they are launched, we'll encapsulate the logic of the services and their network communication in different classes. Specifically, we'll create on class called ChatService that encapsulates the logic of a service, and another class named ChatBot that encapsulates the network communication and interaction with APIs. Because of this, ChatBot will need to have several subclasses - one for each platform. Here's a class diagram:

Fig 1

The content of a concrete subclass of ChatBot should be the bare minimum that's necessary to interact with the API of the platform it corresponds to. Because of this, upon receiving a message, it should call handle_msg, which will do exactly the same thing for all subclasses of ChatBot, namely make a call to the method with the same name of the ChatService that bot belongs to. The ChatService can do what it wants with the content of this message depending on what the specific service is meant to do, but the ChatBot shouldn't do anything other than pass along the message it receives (as well as a name identifying the bot, just in case the service involves several bots). In fact, having already designed the interfaces, we can already write them as abstract classes in Javascript. Here's a skeleton for the ChatService class:

class ChatService {

    constructor() {}

    handle_msg(botname, userid, msg) {}

    run() {}

}

and here's a skeleton for the ChatBot class:

const creds = require("./my_credentials.json")

class ChatBot {

    constructor(credkey, name) {
        this.creds = creds[credkey]
        this.name = name
    }

    set_service(service) {
        this.service = service;
    }

    handle_msg(userid, msg) {}

    send_msg(userid, msg) {}

    run() {}

}

During the construction of any chatbot, the credentials necessary to access the corresponding API will be extracted from a JSON file. The number and types of the credentials could vary depending on the particular API of the platform, so we don't assume anything here about the structure of the credentials - we just assign them to an attribute so that the subclasses don't have to repeat the task of retrieving them for the JSON object containing all of the credentials.

Notice that given this interface, we can already write a very simple application - we just won't be able to deploy it until we've implemented at least one concrete bot. Here's the code for a service called EchoService describing a single-bot application that just repeats everything that a user tells it:

const ChatService = require("./ChatService.js")

class EchoService extends ChatService {

    constructor(bot) {
            super();
        this.bot = bot;
        this.bot.set_service(this);
    }

    handle_msg(bot, userid, msg) {
        this.bot.send_msg(userid, msg);
    }

    run() {
        this.bot.run();
    }

}

We can visualize the behavior of EchoService like this when, say, the platform in question is Discord:

Fig 2

but for Slack and Telegram the idea will be exactly the same despite the different APIs - and from this comes the advantage of encapsulation and very general interfaces. Notice that according to out implementation of EchoService, it will receive a bot as an argument in its constructor, so that the concrete type of the bot that's passed will determine the platform on which the service is deployed.

Registering the bots

Before writing any code, we need to register a bot on each platform. For Discord, we'll need to enter the developer portal, and once there we can easily create a new application with a bot. The essential step is to generate a token for the bot, which will be used to authenticate ourselves and then control the bot. The token will appear here (since I've already generated mine, it doesn't show up anymore):

Fig 3

For Slack, we have to enter the app portal and create a new app. We'll use Socket Mode for our Slack bot, so we'll need to enter the corresponding tab and activate it. Then we need to specify the "scope" of the application, or the collection of operations that Slack will allow it to carry out, after which it will generate an application token that corresponds to the specific permissions it requires. We'll only need the connections:write and authorizations:read permissions to read and write messages:

Fig 4

We also need to enter the Event Subscriptions tab and activate the use of events, so that a new event is triggered in our bot whenever a user sends it a message. Under the Subscribe to events on behalf of users section, we need to add the message.im event:

Fig 5

Once this step is done, we'll need to install the bot to the "workspace" in which we want to interact with it. A difference between Slack's "workspaces" and Discord's "servers" is that, if I'm not mistaken, all interactions over Slack take place in some workspace, including direct messages, whereas in Discord it's possible to send direct messages that don't belong to any server.

Finally, we need two tokens in order to use the Slack bot: a bot-level token and an application-level token. The application-level token can be found in the Basic Information tab under the App-Level Tokens header, where we previously specified the app's scope. We have to click on the token's name in order to show the token itself, which should start with the characters xapp-:

Fig 6

For the bot-level token, we have to enter the OAuth & Permissions tab and copy the Bot User OAuth Token that appears there, which should start with the characters xoxb-:

Fig 7

Finally, let's create a Telegram bot, which will be the easiest process of the three by far. All we have to do is send a message to the special Telegram user called the BotFather:

Fig 8

and then choose a name for the new bot:

Fig 9

And that's it! Easy peasy.

Finally, we need to collect all of the credentials together in a JSON file in order to access them easily from ChatBot:

{
    "DISCORD_TOKEN" : "...",

    "SLACK_CREDS" : {
        "token" : "xoxb-...",
        "apptoken" : "xapp-...
    },

    "TELEGRAM_TOKEN" : "...
}

Code for the ChatBots

We'll use the following three Node.js modules to write the three concrete subclasses of ChatBot:

In fact, these three modules handle interaction with the APIs, so we won't even have to write the code that interacts with them directly. What we're trying to write is more like a facade for analogous classes of these three respective modules that work with the respective APIs of Discord, Slack and Telegram. The only thing I've had to do to write the three classes DiscordBot, SlackBot and TelegramBot has been dive into the documentation for each of these modules in order to figure out how to use them correctly. I won't describe the process of writing these classes step-by-step in this post, but their code can be found here, if you're interested:

Some simple services

The first test will be the deployment of EchoBot. In principle, if we've correctly adhered to the interface that we described at the beginning, the code we've already written for EchoBot should work identically on Discord, Slack and Telegram, with the only difference between the three being the type of bot that's passed as an argument to the EchoBot constructor. The following code will let us test our service on the three separate platforms simultaneously:

db = new DiscordBot("discord-bot");
sb = new SlackBot("slack-bot");
tb = new TelegramBot("telegram-bot");

echoDiscord = new EchoService(db);
echoSlack = new EchoService(sb);
echoTelegram = new EchoService(tb);

echoDiscord.run()
echoSlack.run()
echoTelegram.run()

And, in fact, it works:

Fig 10

Let's try an application that is slightly (only very slightly) more complicated, that detects the names of certain fruits and vegetables in users' messages and informs them whether each one refers to a fruit or a vegetable. The subclass of ChatService will be called FruitVeggieService and its handle_msg method will be the following:

handle_msg(bot, userid, msg) {
    msg.split(" ").forEach(word => {
        if (this.fruits.includes(word)) {
            this.bot.send_msg(userid, `${word} is a fruit`);
        } else if (this.veggies.includes(word)) {
            this.bot.send_msg(userid, `${word} is a veggie`);
        }
    })
}

where the arrays fruits and veggies will be as follows:

this.fruits = [
    "apple",
    "banana",
    "pear
]
this.veggies = [
    "carrot",
    "cabbage",
    "bokchoy
]

We can launch this new service on all three platforms at the same time with the following code. Note that this code works the same as the code we used to launch EchoService, except that this time we're avoiding a bit of repetitive code by taking advantage of Javascript's forEach:

db = new DiscordBot("discord-bot");
sb = new SlackBot("slack-bot");
tb = new TelegramBot("telegram-bot");

[db, sb, tb].forEach(b => {
    new FruitVeggieService(b).run();
})

and we can verify that the bots work on all three platforms:

Fig 11

The cool thing is that we can also use this design to create applications that involve bots on several platforms simultaneously that interact with each other. For instance, imagine a Discord user that doesn't want to make a Telegram account, and a Telegram user that doesn't want a Discord account, but that they want to communicate with each other in a way that's convenient to both of them. To accomplish this, we could use a service written using our framework that makes use of two bots - one on Discord and one on Telegram - that simulates a "talking tube" with one end in Discord and the other end in Telegram, such that every message received on one platform is replicated on the other platform. In particular, when our service receives a message from one of its bots originating from some user or channel on its corresponding platform, it will forward the same message to the user or channel from which it most recently received a message on the other platform. The code is pretty simple:

class TalkTubeService {

    constructor(bot1, bot2) {
        this.bot1 = bot1;
        this.bot2 = bot2;
        this.bot1.set_service(this);
        this.bot2.set_service(this);

        this.user1 = null;
        this.user2 = null;
    }

    handle_msg(botname, userid, msg) {

        if (botname === this.bot1.name) {
            this.user1 = userid;
            if (this.user2 != null) {
                this.bot2.send_msg(this.user2, msg);
            }
        } else if (botname === this.bot2.name) {
            this.user2 = userid;
            if (this.user1 != null) {
                this.bot1.send_msg(this.user1, msg);
            }
        } 
    }

    run() {
        this.bot1.run();
        this.bot2.run();
    }

}

and the application can be deployed like this:

db = new DiscordBot("discord-bot");
tb = new TelegramBot("telegram-bot");

new TalkTubeService(db, tb).run()

and we can see that it works just as we've described:

Fig 12

The action of TalkTubeBot can be pictured as follows, once the users on both platforms have already gotten in touch with the bot for the first time:

Fig 13

ChatBot interceptors

I'd like to mention one more cool little trick. If we make use of the interceptor pattern to create intermediate entities between ChatBot and ChatService to modify the stream of text between them, we can create a variety of applications that behave slightly differently by combining bots, services and interceptors in different ways. In particular, we'll write a class called ChatBotInterceptor whose interface is such that a ChatService can interact with it as if it were a ChatBot, and a ChatBot can interact with it as if it were a ChatService.

Fig 14

Here's the interface for a ChatBotInterceptor:

class ChatBotInterceptor {

    constructor(name, bots) {
        this.bots = bots;
        this.name = name
        this.bots.forEach(b => b.set_service(this));
    }

    set_service(service) {
        this.service = service;
    }

    handle_msg(name, userid, msg) {}

    send_msg(userid, msg) {}

    run() {
        this.bots.forEach(b => b.run());
    }

}

To construct a ChatBotInterceptor we have to pass, in addition to its name, a list of bots whose traffic the interceptor will receive, process and pass along to the service. Running the interceptor will entail running each of its bots. Let's look at a simple example of a ChatBotInterceptor that doesn't pass its bot's messages to its service immediately but rather in batches, that is, it waits to receive some fixed number n of messages (which it saves up) and then it concatenates them together and passes them to the service as one large message. This bot's implementation is as follows:

class BatchBotInterceptor extends ChatBotInterceptor {

    constructor(bot, n) {
        super(bot.name.concat("-int"), [bot]);

        this.limit = n;
        this.lastuser = null;
        this.queue = [];
    }

    handle_msg(name, userid, msg) {
        if (userid != this.lastuser) {
            this.lastuser = userid;
            this.queue = [];
        }

        this.queue.push(msg)

        if (this.queue.length == this.limit) {
            this.service.handle_msg(this.name, this.lastuser, this.queue.join("\n"));
            this.queue = [];
        }
    }

    send_msg(userid, msg) {
        this.bot.send_msg(userid, msg);
    }

}

Now we can modify any of our previous applications by inserting an interceptor of this type between a bot and its service. For example, the "talking tube" application:

sb = new SlackBot("slack-bot");
tb = new TelegramBot("telegram-bot");

new TalkTubeService(sb, new BatchBotInterceptor(tb, 3)).run()

and we can see that we now have a tube between Slack and Telegram that behaves such that the messages from Telegram are only transmitted in batches of three messages, and that nothing is sent until three messages have built up in the queue.

Fig 15

Although I won't go into interceptors any further here, I can think of several more ideas that would be pretty simple to implement:

We can also consider the emergent effects that arise when several interceptors are assembled into a chain between a bot and a service. Can you predict the behavior of the modified version of the previous application in which the Telegram bot is wrapped twice in a BatchBotInterceptor, that is, the application launched by the following code?

sb = new SlackBot("slack-bot");
tb = new TelegramBot("telegram-bot");

new TalkTubeService(sb, 
    new BatchBotInterceptor(
        new BatchBotInterceptor(tb, 3), 
        3
    )
).run()

Additional improvements

So far, what we've designed here is pretty simple, but I think it could serve as a good tool for playing around with multi-platform chatbots without having to get stuck figuring out the details of APIs or the specific modules designed for interacting with each one of them. Regardless, I can think of a few different ways of improving this framework in the future, which I still have yet to implement:


back to home page