1 |
# Extending SudoBot with Extensions |
2 |
|
3 |
SudoBot has support for extensions, and it was introduced in version 6.17. Extensions can extend the bot's feature, by adding commands, event listeners, services and a lot more stuff. You can install/uninstall/disable extensions, or create your own to make the bot behave exactly how you want. Extensions can be written using JavaScript and TypeScript. |
4 |
|
5 |
In this article, you'll learn how SudoBot's extension system works. |
6 |
|
7 |
## The `extensions` directory |
8 |
|
9 |
The `extensions` is a special directory in the project root. Every installed extension stays inside this directory. If you want to install extensions, you have to create a directory named `extensions/` in the project root. |
10 |
|
11 |
Each installed extension has a directory associated with it inside the `extensions/` directory. Inside of that inner directory, there is a special file `extension.json` which contains meta information about the extension, and how to build it. |
12 |
|
13 |
The `extension.json` file looks something like this: |
14 |
|
15 |
```json5 |
16 |
{ |
17 |
"main": "./build/index.js", /* The entry point. */ |
18 |
"commands": "./build/commands", /* Commands directory. The bot will load commands from this directory. */ |
19 |
"events": "./build/events", /* Event handlers directory. The bot will load event handlers from this directory. */ |
20 |
"language": "typescript", /* The language being used for this extension. Can be either "javascript" or "typescript". */ |
21 |
"main_directory": "./build", /* The main directory where the entry point is located. */ |
22 |
"build_command": "npm run build" /* Command to build the extension. In this case `npm run build` invokes `tsc`. */ |
23 |
} |
24 |
``` |
25 |
|
26 |
## Creating your first SudoBot extension |
27 |
|
28 |
To get started, first create a directory named `extensions` inside the project root. In that directory, create another directory for your extension. The name of this directory usually should be your extension's name. In this example, we'll name the extension "hello". |
29 |
|
30 |
Then inside your extension's directory, create the `extension.json` file, and the `src/` directory. Inside `src`, create `events` and `commands` directories. The final directory tree should look something like this: |
31 |
|
32 |
``` |
33 |
+ sudobot/ [project root] |
34 |
+ extensions/ |
35 |
+ hello/ |
36 |
+ src/ |
37 |
+ commands/ |
38 |
+ events/ |
39 |
- extension.json |
40 |
``` |
41 |
|
42 |
Now add the following to your `extension.json` file: |
43 |
|
44 |
```json |
45 |
{ |
46 |
"main": "./build/index.js", |
47 |
"commands": "./build/commands", |
48 |
"events": "./build/events", |
49 |
"language": "typescript", |
50 |
"main_directory": "./build", |
51 |
"build_command": "npm run build" |
52 |
} |
53 |
``` |
54 |
|
55 |
We'll be using TypeScript to write the extension in this example. If you'd like to use JavaScript instead, you can set `language` to `javascript` and you don't need to specify a build command, and your main directory will be the directory where you put your JavaScript files (usually `src/`). You should also adjust the paths to point to that directory (rather than `build/` which is used in this example). |
56 |
|
57 |
#### Setting up TypeScript and Dependencies |
58 |
|
59 |
First, run `npm init` to initialize your extension project. This will ask you a few questions and create a `package.json` file. Then run: |
60 |
|
61 |
<pre class="language-sh"><code class="lang-sh"><strong>npm link --save ../.. # Path to the sudobot project root |
62 |
</strong></code></pre> |
63 |
|
64 |
{% hint style="info" %} |
65 |
Remember **this is a really important step** to make sure your extension can access SudoBot's core utilities to initialize itself. If you don't link SudoBot with your extension, it will fail to import the necessary files. |
66 |
{% endhint %} |
67 |
|
68 |
Then we can go ahead and install the dependencies and also set up TypeScript. |
69 |
|
70 |
```shell |
71 |
npm install module-alias |
72 |
npm install -D typescript |
73 |
npx tsc --init |
74 |
``` |
75 |
|
76 |
This will add `typescript` as a dev dependency and also create the `tsconfig.json` file which contains the configuration for the TypeScript compiler. |
77 |
|
78 |
Now open up `tsconfig.json` file, and add the following to the `compilerOptions` object: |
79 |
|
80 |
```json |
81 |
"paths": { |
82 |
"@sudobot/*": "node_modules/sudobot/build/*" |
83 |
}, |
84 |
"target": "ES2021", |
85 |
"experimentalDecorators": true, |
86 |
"module": "commonjs", |
87 |
"rootDir": "./src", |
88 |
"outDir": "./build", |
89 |
"resolveJsonModule": true, |
90 |
``` |
91 |
|
92 |
This sets up the `@sudobot` import alias for TypeScript, specifies the source root and build directory, and a few other things that are needed. |
93 |
|
94 |
{% hint style="info" %} |
95 |
Remember to build the bot beforehand! As you can see, this alias points to the `build` directory which is created when you build the bot. |
96 |
{% endhint %} |
97 |
|
98 |
Then open up `package.json` file and add the following inside the root object: |
99 |
|
100 |
```json |
101 |
"_moduleAliases": { |
102 |
"@sudobot": "node_modules/sudobot/build" |
103 |
}, |
104 |
"scripts": { |
105 |
"build": "tsc" |
106 |
} |
107 |
``` |
108 |
|
109 |
You might be thinking, why do we need to add the module aliases twice? It's because TypeScript doesn't actually deal with these module aliases, it just checks the types and imports. In runtime, we need another way to resolve these imports. We use `module-alias` for that. |
110 |
|
111 |
#### The entry point |
112 |
|
113 |
We need to create the entry point now! Make a file `src/index.ts` and put the following code inside of that file: |
114 |
|
115 |
```typescript |
116 |
import "module-alias/register"; |
117 |
import { Extension } from "@sudobot/core/Extension"; |
118 |
|
119 |
export default class HelloExtension extends Extension { |
120 |
// ... |
121 |
} |
122 |
``` |
123 |
|
124 |
That's actually all we need inside this file. |
125 |
|
126 |
#### Adding commands to the extension |
127 |
|
128 |
Alright, let's add a command to the extension! Create a file `src/commands/HelloCommand.ts` and inside of that file, put the following code: |
129 |
|
130 |
```typescript |
131 |
import BaseCommand, { BasicCommandContext, CommandMessage, CommandReturn } from "@sudobot/core/Command"; |
132 |
|
133 |
export default class HelloCommand extends BaseCommand { |
134 |
public readonly name = "hello"; |
135 |
public readonly description = "A simple hello-world command."; |
136 |
|
137 |
async execute(message: CommandMessage, context: BasicCommandContext) { |
138 |
await message.reply("Hello world, from the hello extension!"); |
139 |
} |
140 |
} |
141 |
``` |
142 |
|
143 |
This command just responds to the user with "Hello world, from the hello extension!". |
144 |
|
145 |
#### Adding event listeners to the extension |
146 |
|
147 |
Now, let's add an event listener to the extension! Create a file `src/events/MessageCreateEvent.ts` and inside of that file, put the following code: |
148 |
|
149 |
```typescript |
150 |
import EventListener from "@sudobot/core/EventListener"; |
151 |
import { Message } from "discord.js"; |
152 |
|
153 |
export default class MessageCreateEvent extends EventListener<"messageCreate"> { |
154 |
public readonly name = "messageCreate"; |
155 |
|
156 |
async execute(message: Message) { |
157 |
if (message.author.bot) { |
158 |
return; |
159 |
} |
160 |
|
161 |
if (message.content === "ping") { |
162 |
await message.reply("Pong, from the hello extension!"); |
163 |
} |
164 |
} |
165 |
} |
166 |
``` |
167 |
|
168 |
This event listener listens to `messageCreate` event, and whenever someone sends a message with content "ping", it will reply to them. |
169 |
|
170 |
#### Building the extension |
171 |
|
172 |
Go to the project root, and run the `extensions.js` script to build all the installed extensions: |
173 |
|
174 |
```bash |
175 |
node scripts/extensions.js --build |
176 |
``` |
177 |
|
178 |
This will take a little bit time. After that, you're ready to go. You can now start the bot (assuming you've build it already): |
179 |
|
180 |
```bash |
181 |
npm start |
182 |
``` |
183 |
|
184 |
And then if everything was configured correctly, the `hello` command will be loaded and can be executed on any server. |
185 |
|
186 |
Congratulations, you've just built an extension for SudoBot! |
187 |
|
188 |
### Help and Support |
189 |
|
190 |
If you need help with anything, feel free to create a discussion topic at the [GitHub repo](https://github.com/onesoft-sudo/sudobot). You can also contact via email at [[email protected]](mailto:[email protected]), or join our [Discord Server](https://discord.gg/892GWhTzgs). |