-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathindex.js
348 lines (285 loc) · 9.05 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
require("dotenv").config();
const { Configuration, OpenAIApi } = require("openai");
const {
getImage,
getChat,
correctEngish,
speak,
} = require("./Helper/functions");
const { Telegraf } = require("telegraf");
const { default: axios } = require("axios");
const logger = require("./Helper/logger");
const connectDB = require("./Helper/db");
const OpenAiGroup = require("./Model/Aigroup");
const { limit } = require("@grammyjs/ratelimiter");
const checkAndSave = require("./Helper/saveToDb");
const configuration = new Configuration({
apiKey: process.env.API,
});
const openai = new OpenAIApi(configuration);
module.exports = openai;
const bot = new Telegraf(process.env.TG_API);
connectDB();
// Bot on start
bot.start(async (ctx) => {
if (ctx.chat.type === "group") {
logger.info(`Bot started In: ${ctx.chat.title} `);
} else if (ctx.chat.type === "private") {
logger.info(`Bot started By ${ctx.chat.username || ctx.chat.first_name} `);
}
await checkAndSave(ctx);
ctx.reply(
"Welcome To AI Bot 🧿 \n\nCommands 👾 \n/ask ask anything from me \n/image to create image from text \n/en to correct your grammer \n\n\nContract @Chetan_Baliyan if you want to report any BUG or change in features"
);
});
bot.help((ctx) => {
ctx.reply(
"\nCommands 👾 \n\n/ask ask anything from me \n/image to create image from text \n/en to correct your grammer \n\n\nContract @Chetan_Baliyan if you want to report any BUG or change in features "
);
});
bot.use(
limit({
timeFrame: 7000,
limit: 3,
onLimitExceeded: async (ctx) => {
logger.info(
`Limit Exceeded: ${ctx.from.username || ctx.from.first_name}`
);
await ctx.reply("Please Avoid sending too many REQUEST");
},
keyGenerator: (ctx) => {
return ctx.from?.id.toString();
},
})
);
bot.on("new_chat_members", async (ctx) => {
if (ctx.update.message.chat.id.toString() !== "-1001745862327") return;
const foundUser = await OpenAiGroup.find({
userId: ctx.update.message.new_chat_member.id,
});
logger.info(
`Joined: ${ctx.update.message.new_chat_member.username ||
ctx.update.message.new_chat_member.first_name
}`
);
if (foundUser.length > 0) {
foundUser[0].member_left = false;
await foundUser[0].save();
return;
}
await OpenAiGroup.create({
userId: ctx.update.message.new_chat_member.id,
username: ctx.update.message.new_chat_member.username || "",
name: ctx.update.message.new_chat_member.first_name || "",
member_left: false,
});
});
bot.on("left_chat_member", async (ctx) => {
if (ctx.update.message.chat.id.toString() !== process.env.GROUP_ID) return;
logger.info(
`Group Left: ${ctx.update.message.left_chat_participant.username ||
ctx.update.message.left_chat_participant.first_name
}`
);
await OpenAiGroup.findOneAndUpdate(
{
userId: ctx.update.message.left_chat_participant.id,
},
{ member_left: true }
);
});
//Bot on Image command
bot.command("image", async (ctx) => {
const text = ctx.message.text?.replace("/image", "")?.trim().toLowerCase();
logger.info(`Image: ${ctx.from.username || ctx.from.first_name}: ${text}`);
const foundUser = await OpenAiGroup.findOne({ userId: ctx.from.id });
if (!foundUser) {
if (ctx.message.message_id) {
ctx.telegram.sendMessage(
ctx.message.chat.id,
`Please join @OpenAl_Group before using this bot`,
{
reply_to_message_id: ctx.message.message_id,
}
);
} else {
ctx.sendMessage(`Please join @OpenAl_Group before using this bot`);
}
return;
}
if (text) {
const res = await getImage(text);
if (res) {
ctx.sendChatAction("upload_photo");
if (ctx.message.message_id) {
ctx.telegram.sendPhoto(ctx.message.chat.id, res, {
reply_to_message_id: ctx.message.message_id,
});
} else {
ctx.sendPhoto(res);
}
} else {
if (ctx.message.message_id) {
ctx.telegram.sendMessage(
ctx.message.chat.id,
"I can't generate image for this text\n\nPlease use this bot for Educational Purposes , else you will be blocked by bot.",
{
reply_to_message_id: ctx.message.message_id,
}
);
} else {
ctx.sendMessage(
"I can't generate image for this text\n\nPlease use this bot for Educational Purposes , else you will be blocked by bot."
);
}
}
} else {
ctx.telegram.sendMessage(
ctx.message.chat.id,
"You have to give some description after /image",
{
reply_to_message_id: ctx.message.message_id,
}
);
}
await checkAndSave(ctx);
});
//Bot on ask command
bot.command("ask", async (ctx) => {
const text = ctx.message.text?.replace("/ask", "")?.trim().toLowerCase();
const foundUser = await OpenAiGroup.findOne({ userId: ctx.from.id });
logger.info(`Chat: ${ctx.from.username || ctx.from.first_name}: ${text}`);
if (!foundUser || foundUser.member_left === true) {
if (ctx.message.message_id) {
ctx.telegram.sendMessage(
ctx.message.chat.id,
`Please join @OpenAl_Group before using this bot`,
{
reply_to_message_id: ctx.message.message_id,
}
);
} else {
ctx.sendMessage(`Please join @OpenAl_Group before using this bot`);
}
return;
}
if (text) {
ctx.sendChatAction("typing");
const res = await getChat(text);
if (res) {
if (ctx.message.message_id) {
ctx.telegram.sendMessage(ctx.message.chat.id, `${res}`, {
reply_to_message_id: ctx.message.message_id,
});
} else {
ctx.sendMessage(`${res}`);
}
}
} else {
if (ctx.message.message_id) {
ctx.telegram.sendMessage(
ctx.message.chat.id,
"Please ask anything after /ask",
{
reply_to_message_id: ctx.message.message_id,
}
);
} else {
ctx.sendMessage("Please ask anything after /ask");
}
}
await checkAndSave(ctx);
});
// Bot on en command
bot.command("en", async (ctx) => {
const text = ctx.message.text?.replace("/en", "")?.trim().toLowerCase();
logger.info(`EN: ${ctx.from.username || ctx.from.first_name}: ${text}`);
const foundUser = await OpenAiGroup.findOne({ userId: ctx.from.id });
if (!foundUser) {
if (ctx.message.message_id) {
ctx.telegram.sendMessage(
ctx.message.chat.id,
`Please join @OpenAl_Group before using this bot`,
{
reply_to_message_id: ctx.message.message_id,
}
);
} else {
ctx.sendMessage(`Please join @OpenAl_Group before using this bot`);
}
return;
}
if (text) {
ctx.sendChatAction("typing");
const res = await correctEngish(text);
if (res) {
ctx.telegram.sendMessage(ctx.message.chat.id, res, {
reply_to_message_id: ctx.message.message_id,
});
}
} else {
ctx.telegram.sendMessage(
ctx.message.chat.id,
"Please ask anything after /en",
{
reply_to_message_id: ctx.message.message_id,
}
);
}
});
bot.command("yo", async (ctx) => {
const text = ctx.message.text?.replace("/yo", "")?.trim().toLowerCase();
logger.info(`Joke: ${ctx.from.username || ctx.from.first_name}: ${text}`);
if (!foundUser) {
if (ctx.message.message_id) {
ctx.telegram.sendMessage(
ctx.message.chat.id,
`Please join @OpenAl_Group before using this bot`,
{
reply_to_message_id: ctx.message.message_id,
}
);
} else {
ctx.sendMessage(`Please join @OpenAl_Group before using this bot`);
}
return;
}
const ress = await axios.get("https://api.yomomma.info/");
ctx.sendChatAction("typing");
if (ress.data?.joke) {
ctx.telegram.sendMessage(ctx.message.chat.id, ress.data?.joke, {
reply_to_message_id: ctx.message.message_id,
});
}
});
bot.command('speech', async (ctx) => {
try {
const text = ctx.message.text?.replace("/speech", "")?.trim().toLowerCase();
logger.info(`Speech: ${ctx.from.username || ctx.from.first_name}: ${text}`);
if(!text) return ctx.reply('Give text for this command')
if (ctx.update.message.chat.id.toString() === "-1001745862327") {
ctx.sendChatAction('upload_voice')
const result = await speak(text, ctx)
} else {
ctx.sendMessage(`You can only use this text to speech feature in @OpenAl_Group `);
}
} catch (error) {
logger.error('Error in Speech')
}
})
bot.command('reset_pending', async (ctx) => {
const res = await axios.post(`https://api.telegram.org/bot${process.env.TG_API}/getWebhookInfo`)
if (res.data) {
if (res.data.result.pending_update_count) {
ctx.reply(`Reset Pending Update ${res.data.result.pending_update_count}`)
const res = await axios.post(`https://api.telegram.org/bot${process.env.TG_API}/setWebhook?drop_pending_updates=true`)
return res.data?.ok === true ? ctx.reply('Reset done') : ''
} else {
ctx.reply(`Pending Update ${res.data.result.pending_update_count}`)
}
}
})
bot.catch((err, ctx) => {
logger.error('Error', err)
})
bot.launch();