-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathindex.js
425 lines (383 loc) · 14.5 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
// Imports
import dotenv from 'dotenv'; dotenv.config();
import { ChatGPTAPI } from 'chatgpt';
import Keyv from 'keyv';
import http from 'http';
import axios from 'axios';
import chalk from 'chalk';
import figlet from 'figlet';
import gradient from 'gradient-string';
import admin from 'firebase-admin';
import KeyvFirestore from 'keyv-firestore';
import {
Client, REST, Partials,
GatewayIntentBits, Routes,
ActivityType, ChannelType
}
from 'discord.js';
// Import Firebase Admin SDK Service Account Private Key
import firebaseServiceAccount from './firebaseServiceAccountKey.json' assert {type: 'json'};
// Defines
const activity = '/ask && /help';
// Discord Slash Commands Defines
const commands = [
{
name: 'ask',
description: 'Ask Anything!',
dm_permission: false,
options: [
{
name: "question",
description: "Your question",
type: 3,
required: true
}
]
},
{
name: 'ping',
description: 'Check Websocket Heartbeat && Roundtrip Latency'
},
{
name: 'reset-chat',
description: 'Start A Fresh Chat Session'
},
{
name: 'help',
description: 'Get Help'
}
];
// Initialize Discord Client
const client = new Client({
intents: [
GatewayIntentBits.Guilds,
GatewayIntentBits.GuildMessages,
GatewayIntentBits.GuildIntegrations,
GatewayIntentBits.DirectMessages,
GatewayIntentBits.DirectMessageTyping,
GatewayIntentBits.MessageContent,
],
partials: [Partials.Channel]
});
// Initialize OpenAI Session
async function initOpenAI(messageStore) {
if (process.env.API_ENDPOINT.toLocaleLowerCase() === 'default') {
const api = new ChatGPTAPI({
apiKey: process.env.OPENAI_API_KEY,
completionParams: {
model: process.env.MODEL,
},
messageStore,
debug: process.env.DEBUG
});
return api;
} else {
const api = new ChatGPTAPI({
apiKey: process.env.OPENAI_API_KEY,
apiBaseUrl: process.env.API_ENDPOINT.toLocaleLowerCase(),
completionParams: {
model: process.env.MODEL,
},
messageStore,
debug: process.env.DEBUG
});
return api;
}
}
// Initialize Discord Application Commands & New ChatGPT Thread
async function initDiscordCommands() {
const rest = new REST({ version: '10' }).setToken(process.env.DISCORD_BOT_TOKEN);
try {
console.log('Started refreshing application commands (/)');
await rest.put(Routes.applicationCommands(process.env.DISCORD_CLIENT_ID), { body: commands }).then(() => {
console.log('Successfully reloaded application commands (/)');
}).catch(e => console.log(chalk.red(e)));
console.log('Connecting to Discord Gateway...');
} catch (error) {
console.log(chalk.red(error));
}
}
// Initialize Firebase Admin SDK
async function initFirebaseAdmin() {
admin.initializeApp({
credential: admin.credential.cert(firebaseServiceAccount),
databaseURL: `https://${firebaseServiceAccount.project_id}.firebaseio.com`
});
const db = admin.firestore();
return db;
}
// Initialize Keyv Firestore
async function initKeyvFirestore() {
const messageStore = new Keyv({
store: new KeyvFirestore({
projectId: firebaseServiceAccount.project_id,
collection: 'messageStore',
credentials: firebaseServiceAccount
})
});
return messageStore;
}
// Main Function
async function main() {
if (process.env.UWU === 'true') {
console.log(gradient.pastel.multiline(figlet.textSync('ChatGPT', {
font: 'Univers',
horizontalLayout: 'default',
verticalLayout: 'default',
width: 100,
whitespaceBreak: true
})));
}
const db = await initFirebaseAdmin();
const messageStore = await initKeyvFirestore();
const api = await initOpenAI(messageStore).catch(error => {
console.error(error);
process.exit();
});
await initDiscordCommands().catch(e => { console.log(e) });
client.once('ready', () => {
console.log(`Logged in as ${client.user.tag}`);
console.log(chalk.greenBright('Connected to Discord Gateway'));
console.log(new Date())
client.user.setStatus('online');
client.user.setActivity(activity);
});
// Channel Message Handler
client.on("interactionCreate", async interaction => {
if (!interaction.isChatInputCommand()) return;
client.user.setActivity(interaction.user.tag, { type: ActivityType.Watching });
switch (interaction.commandName) {
case "ask":
ask_Interaction_Handler(interaction);
break;
case "ping":
ping_Interaction_Handler(interaction);
break;
case "help":
help_Interaction_Handler(interaction);
break;
case 'reset-chat':
reset_chat_Interaction_Handler(interaction);
break;
default:
await interaction.reply({ content: 'Command Not Found' });
}
});
// Direct Message Handler
client.on("messageCreate", async message => {
if (process.env.DIRECT_MESSAGES !== "true" || message.channel.type != ChannelType.DM || message.author.bot) {
return;
}
if (!process.env.DM_WHITELIST_ID.includes(message.author.id)) {
await message.author.send("Ask Bot Owner To WhiteList Your ID 🙄");
const timeStamp = new Date();
const date = timeStamp.getUTCDate().toString() + '.' + timeStamp.getUTCMonth().toString() + '.' + timeStamp.getUTCFullYear().toString();
const time = timeStamp.getUTCHours().toString() + ':' + timeStamp.getUTCMinutes().toString() + ':' + timeStamp.getUTCSeconds().toString();
await db.collection('unauthorized-dm-log').doc(message.author.id)
.collection(date).doc(time).set({
timeStamp: new Date(),
userId: message.author.id,
user: message.author.tag,
question: message.content,
bot: message.author.bot
});
return;
}
console.log("----------Direct Message---------");
console.log("Date & Time : " + new Date());
console.log("UserId : " + message.author.id);
console.log("User : " + message.author.tag);
console.log("Question : " + message.content);
try {
let sentMessage = await message.author.send("Let Me Think 🤔");
let interaction = {
"user": {
"id": message.author.id,
'tag': message.author.tag
}
}
askQuestion(message.content, interaction, async (response) => {
if (!response.text) {
if (response.length >= process.env.DISCORD_MAX_RESPONSE_LENGTH) {
splitAndSendResponse(response, message.author)
} else {
await sentMessage.edit(`API Error ❌\n\`\`\`\n${response}\n\`\`\`\n</>`)
}
return;
}
if (response.text.length >= process.env.DISCORD_MAX_RESPONSE_LENGTH) {
splitAndSendResponse(response.text, message.author)
} else {
await sentMessage.edit(response.text)
}
console.log("Response : " + response.text);
console.log("---------------End---------------");
const timeStamp = new Date();
const date = timeStamp.getUTCDate().toString() + '.' + timeStamp.getUTCMonth().toString() + '.' + timeStamp.getUTCFullYear().toString();
const time = timeStamp.getUTCHours().toString() + ':' + timeStamp.getUTCMinutes().toString() + ':' + timeStamp.getUTCSeconds().toString();
await db.collection('dm-history').doc(message.author.id)
.collection(date).doc(time).set({
timeStamp: new Date(),
userId: message.author.id,
user: message.author.tag,
question: message.content,
answer: response.text,
parentMessageId: response.id
});
})
} catch (e) {
console.error(e)
}
});
async function ping_Interaction_Handler(interaction) {
const sent = await interaction.reply({ content: 'Pinging...🌐', fetchReply: true });
await interaction.editReply(`Websocket Heartbeat: ${interaction.client.ws.ping} ms. \nRoundtrip Latency: ${sent.createdTimestamp - interaction.createdTimestamp} ms\n</>`);
client.user.setActivity(activity);
}
async function help_Interaction_Handler(interaction) {
await interaction.reply("**ChatGPT Discord Bot**\nA Discord Bot Powered By OpenAI's ChatGPT !\n\n**Usage:**\nDM - Ask Anything\n`/ask` - Ask Anything\n`/reset-chat` - Start A Fresh Chat Session\n`/ping` - Check Websocket Heartbeat && Roundtrip Latency\n\nSource Code: <https://github.com/itskdhere/ChatGPT-Discord-BOT>\nSupport Server: https://dsc.gg/skdm");
client.user.setActivity(activity);
}
async function reset_chat_Interaction_Handler(interaction) {
const timeStamp = new Date();
const date = timeStamp.getUTCDate().toString() + '.' + timeStamp.getUTCMonth().toString() + '.' + timeStamp.getUTCFullYear().toString();
const time = timeStamp.getUTCHours().toString() + ':' + timeStamp.getUTCMinutes().toString() + ':' + timeStamp.getUTCSeconds().toString();
await interaction.reply('Checking...📚');
const doc = await db.collection('users').doc(interaction.user.id).get();
if (!doc.exists) {
console.log('Failed: No Conversation Found ❌');
await interaction.editReply('No Conversation Found ❌\nUse `/ask` To Start One\n</>');
await db.collection('reset-chat-log').doc(interaction.user.id)
.collection(date).doc(time).set({
timeStamp: new Date(),
userID: interaction.user.id,
user: interaction.user.tag,
resetChatSuccess: 0
});
} else {
await db.collection('users').doc(interaction.user.id).delete();
console.log('Chat Reset: Successful ✅');
await interaction.editReply('Chat Reset: Successful ✅\n</>');
await db.collection('reset-chat-log').doc(interaction.user.id)
.collection(date).doc(time).set({
timeStamp: new Date(),
userID: interaction.user.id,
user: interaction.user.tag,
resetChatSuccess: 1
});
}
client.user.setActivity(activity);
}
async function ask_Interaction_Handler(interaction) {
const question = interaction.options.getString("question");
console.log("----------Channel Message--------");
console.log("Date & Time : " + new Date());
console.log("UserId : " + interaction.user.id);
console.log("User : " + interaction.user.tag);
console.log("Question : " + question);
try {
await interaction.reply({ content: `Let Me Think 🤔` });
askQuestion(question, interaction, async (content) => {
if (!content.text) {
if (content.length >= process.env.DISCORD_MAX_RESPONSE_LENGTH) {
await interaction.editReply(`**${interaction.user.tag}:** ${question}\n**${client.user.username}:** API Error ❌\nCheck DM For Error Log ❗\n</>`);
splitAndSendResponse(content, interaction.user);
} else {
await interaction.editReply(`**${interaction.user.tag}:** ${question}\n**${client.user.username}:** API Error ❌\n\`\`\`\n${content}\n\`\`\`\n</>`);
}
client.user.setActivity(activity);
return;
}
console.log("Response : " + content.text);
console.log("---------------End---------------");
if (content.text.length >= process.env.DISCORD_MAX_RESPONSE_LENGTH) {
await interaction.editReply({ content: "The Answer Is Too Powerful 🤯,\nCheck Your DM 😅" });
splitAndSendResponse(content.text, interaction.user);
} else {
await interaction.editReply(`**${interaction.user.tag}:** ${question}\n**${client.user.username}:** ${content.text}\n</>`);
}
client.user.setActivity(activity);
const timeStamp = new Date();
const date = timeStamp.getUTCDate().toString() + '.' + timeStamp.getUTCMonth().toString() + '.' + timeStamp.getUTCFullYear().toString();
const time = timeStamp.getUTCHours().toString() + ':' + timeStamp.getUTCMinutes().toString() + ':' + timeStamp.getUTCSeconds().toString();
await db.collection('chat-history').doc(interaction.user.id)
.collection(date).doc(time).set({
timeStamp: new Date(),
userID: interaction.user.id,
user: interaction.user.tag,
question: question,
answer: content.text,
parentMessageId: content.id
});
})
} catch (e) {
console.error(chalk.red(e));
}
}
client
.login(process.env.DISCORD_BOT_TOKEN)
.catch(e => console.log(chalk.red(e)));
async function askQuestion(question, interaction, cb) {
const doc = await db.collection('users').doc(interaction.user.id).get();
const currentDate = new Date().toISOString();
const finalSystemMessage = process.env.SYSTEM_MESSAGE + ` Your Knowledge cutoff is 2021-09-01 and Current Date is ${currentDate}.`
if (!doc.exists) {
api.sendMessage(question, {
systemMessage: finalSystemMessage
}).then((response) => {
db.collection('users').doc(interaction.user.id).set({
timeStamp: new Date(),
userId: interaction.user.id,
user: interaction.user.tag,
parentMessageId: response.id
});
cb(response);
}).catch((err) => {
cb(err);
console.log(chalk.red("AskQuestion Error:" + err));
})
} else {
api.sendMessage(question, {
parentMessageId: doc.data().parentMessageId,
systemMessage: finalSystemMessage
}).then((response) => {
db.collection('users').doc(interaction.user.id).set({
timeStamp: new Date(),
userId: interaction.user.id,
user: interaction.user.tag,
parentMessageId: response.id
});
cb(response);
}).catch((err) => {
cb(err);
console.log(chalk.red("AskQuestion Error:" + err));
});
}
}
async function splitAndSendResponse(resp, user) {
while (resp.length > 0) {
let end = Math.min(process.env.DISCORD_MAX_RESPONSE_LENGTH, resp.length)
await user.send(resp.slice(0, end))
resp = resp.slice(end, resp.length)
}
}
}
// HTTP Server
if (process.env.HTTP_SERVER === 'true') {
http.createServer((req, res) => res.end('BOT Is Up && Running..!!')).listen(process.env.PORT);
}
// Discord Rate Limit Check
setInterval(() => {
client.user.setActivity(activity);
axios
.get('https://discord.com/api/v10')
.catch(error => {
if (error.response.status == 429) {
console.log("Discord Rate Limited");
console.warn("Status: " + error.response.status)
console.warn(error)
// TODO: Take Action (e.g. Change IP Address)
}
});
}, 30 * 1000); // Check Every 30 Second
main() // Call Main function