-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
218 lines (203 loc) · 6.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
const express = require("express");
const mongoose = require("mongoose");
const { Telegraf } = require("telegraf");
const { start } = require("./respond/start");
const { popular } = require("./respond/popular");
const { topRated } = require("./respond/topRated");
const { upcoming } = require("./respond/upcoming");
const { dayTrending } = require("./respond/dayTrending");
const { search } = require("./respond/search");
const StartModel = require("./model/StartModel");
const UserActionsModel = require("./model/UserActionsModel");
const { Webhook, MessageBuilder } = require("discord-webhook-node");
// using discord webhook to send errors in discord
const sentry = new Webhook(process.env.DISCORD_WEBHOOK);
require("dotenv").config();
const app = express();
const bot = new Telegraf(process.env.BOT_TOKEN);
app.get("/test", (req, res) => {
res.json({ ok: true });
});
const port = process.env.PORT;
app.listen(port, () => console.log(`app listening on port ${port}!`));
// error handler
process.on("uncaughtException", (err) => {
const embed = new MessageBuilder()
.setTitle("Error")
.setColor("red")
.setDescription(err.message);
sentry.send(embed);
});
process.on("unhandledRejection", (err) => {
const embed = new MessageBuilder()
.setTitle("Error")
.setColor("red")
.setDescription(err.message);
sentry.send(embed);
});
bot.start(async (ctx) => {
ctx.reply(`Welcome! (●'◡'●)`, start());
const user = await StartModel.findOne({ id: ctx.message.chat.id });
if (!user) {
let newStartModel = new StartModel({
id: ctx.message.chat.id,
name: ctx.message.chat.first_name,
username: ctx.message.chat.username,
date: new Date().toISOString()
});
await newStartModel.save();
}
});
bot.hears("Popular", async (ctx) => {
ctx.reply(`🎬 Current Popular Movies: `);
popular(ctx, bot);
let newUserAction = new UserActionsModel({
id: ctx.message.chat.id,
name: ctx.message.chat.first_name,
section: "Popular",
username: ctx.message.chat.username,
date: new Date().toISOString()
});
await newUserAction.save();
});
bot.command("popular", async (ctx) => {
ctx.reply(`🎬 Current Popular Movies: `);
popular(ctx, bot);
let newUserAction = new UserActionsModel({
id: ctx.message.chat.id,
name: ctx.message.chat.first_name,
section: "Popular",
username: ctx.message.chat.username,
date: new Date().toISOString()
});
await newUserAction.save();
});
bot.hears("Top Rated", async (ctx) => {
ctx.reply(`🎬 Top Rated Movies: `);
topRated(ctx, bot);
let newUserAction = new UserActionsModel({
id: ctx.message.chat.id,
name: ctx.message.chat.first_name,
section: "Top Rated",
username: ctx.message.chat.username,
date: new Date().toISOString()
});
await newUserAction.save();
});
bot.command("toprated", async (ctx) => {
ctx.reply(`🎬 Top Rated Movies: `);
topRated(ctx, bot);
let newUserAction = new UserActionsModel({
id: ctx.message.chat.id,
name: ctx.message.chat.first_name,
section: "Top Rated",
username: ctx.message.chat.username,
date: new Date().toISOString()
});
await newUserAction.save();
});
bot.hears("Upcoming", async (ctx) => {
ctx.reply(`🎬 Upcoming movies in theatres: `);
upcoming(ctx, bot);
let newUserAction = new UserActionsModel({
id: ctx.message.chat.id,
name: ctx.message.chat.first_name,
section: "Upcoming",
username: ctx.message.chat.username,
date: new Date().toISOString()
});
await newUserAction.save();
});
bot.command("upcoming", async (ctx) => {
ctx.reply(`🎬 Upcoming movies in theatres: `);
upcoming(ctx, bot);
let newUserAction = new UserActionsModel({
id: ctx.message.chat.id,
name: ctx.message.chat.first_name,
section: "Upcoming",
username: ctx.message.chat.username,
date: new Date().toISOString()
});
await newUserAction.save();
});
bot.hears("Day Trending", async (ctx) => {
ctx.reply(`🎬 daily trending movies: `);
dayTrending(ctx, bot);
let newUserAction = new UserActionsModel({
id: ctx.message.chat.id,
name: ctx.message.chat.first_name,
section: "Day Trending",
username: ctx.message.chat.username,
date: new Date().toISOString()
});
await newUserAction.save();
});
bot.command("daytrending", async (ctx) => {
ctx.reply(`🎬 daily trending movies: `);
dayTrending(ctx, bot);
let newUserAction = new UserActionsModel({
id: ctx.message.chat.id,
name: ctx.message.chat.first_name,
section: "Day Trending",
username: ctx.message.chat.username,
date: new Date().toISOString()
});
await newUserAction.save();
});
bot.hears("Search", (ctx) => {
ctx.reply(`🔍 Enter movie name: `);
bot.on("text", async (ctx) => {
let query = ctx.message.text;
search(ctx, bot, query);
let newUserAction = new UserActionsModel({
id: ctx.message.chat.id,
name: ctx.message.chat.first_name,
section: "Search",
username: ctx.message.chat.username,
message: ctx.message.text,
date: new Date().toISOString()
});
await newUserAction.save();
});
});
bot.command("search", (ctx) => {
ctx.reply(`🔍 Enter movie name: `);
bot.on("text", async (ctx) => {
let query = ctx.message.text;
search(ctx, bot, query);
let newUserAction = new UserActionsModel({
id: ctx.message.chat.id,
name: ctx.message.chat.first_name,
section: "Search",
username: ctx.message.chat.username,
message: ctx.message.text,
date: new Date().toISOString()
});
await newUserAction.save();
});
});
const setupMongooseDB = async () => {
await mongoose
.connect(process.env.MongoDB_URL, {
keepAlive: true,
useNewUrlParser: true,
useUnifiedTopology: true
})
.then(() => {
console.log("Connected to MongoDB...");
})
.catch((err) => {
console.log(err);
});
};
setupMongooseDB();
bot
.launch()
.then((r) => console.log(r))
.catch((err) => {
const embed = new MessageBuilder()
.setTitle("Bot Not Launch")
.setColor("red")
.setDescription(err);
sentry.send(embed);
});