-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.ts
434 lines (383 loc) · 16.1 KB
/
index.ts
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
426
427
428
429
430
431
432
433
434
import { config } from "dotenv";
config(); // must load environment vars before anything else
import { Client as DiscordBot, ColorResolvable, MessageEmbed, TextChannel } from "discord.js";
import { debug } from "debug";
import { RedditBot, RedditUrlMessageHanlderProps, SubredditMessageHanlderProps } from "./bot";
import {
Comment,
fetchSubmission,
getRandomDefaultUserIcon,
getRedditSubmission,
getRedditUserIcon,
getSubmission,
getSubredditInfo,
Listing,
Submission,
SubredditMode,
SUBREDDIT_MODES,
} from "./reddit";
import cheerio from "cheerio";
import fetch from "node-fetch";
import { getCachedPackedUrl, getChannelIndex, storeCachedPackedUrl, storeChannelIndex } from "./redis";
import { TopGGApi } from "./topgg";
import { chdir } from "process";
import { getVideoOrDownload } from "./video";
import { createUnknownErrorEmbed, RedditBotError } from "./error";
const logger = debug("rdb");
const bot = new RedditBot(process.env.DISCORD_TOKEN!, process.env.PREFIX ?? "r/");
const topgg = process.env.TOPGG_TOKEN ? new TopGGApi(process.env.TOPGG_TOKEN, bot.getBot()) : null;
const DEFAULT_EMBED_COLOR = "#2f3136"; // 55ff11
const TRUNCATE_TITLE_LENGTH = 200; // Max is 256
const TRUNCATE_COMMENTS_LENGTH = 1000; // MAX_COMMENTS_LENGTH + MAX_DESCRIPTION_LENGTH is max 2048
const TRUNCATE_DESCRIPTION_LENGTH = 1000;
const TRUNCATE_COMMENT_LENGTH = 400;
const MAX_FILTER_TRIES = 35;
const SKIP_DESCRIPTION_LENGTH = 400;
const SKIP_MIN_POST_VOTES = 0;
function matchesChannelFilters(channel: TextChannel, submission: Submission): boolean {
// Skip post if it is pinned/stickied
if (submission.stickied) {
return false;
}
// Skip if too mush text
if ((submission.selftext ?? "").length > SKIP_DESCRIPTION_LENGTH) {
return false;
}
// Skip if smaller than vote requirement
if (Math.abs(submission.score) < SKIP_MIN_POST_VOTES) {
return false;
}
// Skip if nsfw and it isn't allowed
let allowNsfw = channel.nsfw;
if (!allowNsfw && (submission.title.toLowerCase().includes("nsf") || submission.over_18)) {
return false;
}
return true;
}
bot.on("redditRequest", async ({ subreddit, queryOrMode, channel, sender }: SubredditMessageHanlderProps) => {
logger("redditrequest", subreddit);
let currentIndex = await getChannelIndex(channel.id, subreddit, queryOrMode);
if (currentIndex === 0) {
if (SUBREDDIT_MODES.includes(queryOrMode)) {
channel.send({
embeds: [
new MessageEmbed().setDescription(
`You are browsing the **r/${subreddit}/${queryOrMode}** subreddit.\nUse \`${bot.prefix}/\` or repeat your input to get the next post.`
),
],
});
} else {
channel.send({
embeds: [
new MessageEmbed().setDescription(
`You are searching the **r/${subreddit}** subreddit with '_${queryOrMode}_'.\nUse \`${bot.prefix}/\` or repeat your input to get the next search result.`
),
],
});
}
}
let newIndex, submission;
try {
[newIndex, submission] = await getNextMatchingSubmission(subreddit, queryOrMode, currentIndex, channel);
} catch (ex) {
if (ex instanceof RedditBotError) {
logger("bot error (%s): %s", ex.type, ex.message);
await channel.send({ embeds: [ex.createEmbed()] });
} else {
logger("unknown error", ex);
await channel.send({ embeds: [createUnknownErrorEmbed()] });
}
return;
}
getNextMatchingSubmission(subreddit, queryOrMode, newIndex, channel)
.then(([, nextSubmission]) => {
if (!nextSubmission) return;
logger("preload %s", nextSubmission.permalink);
preloadSubmission(nextSubmission);
})
.catch((err) => {
logger("could not cache next submission:", err);
});
await storeChannelIndex(channel.id, subreddit, queryOrMode, newIndex);
await sendRedditSubmission(channel, submission, queryOrMode);
});
bot.on("redditUrl", async (props: RedditUrlMessageHanlderProps) => {
logger("redditurl", props.submissionId);
try {
let submission = await fetchSubmission(props.submissionId);
await sendRedditSubmission(props.channel, submission);
} catch (ex) {
if (ex instanceof RedditBotError) {
logger("bot error (%s): %s", ex.type, ex.message);
await props.channel.send({ embeds: [ex.createEmbed()] });
} else {
logger("unknown error", ex);
await props.channel.send({ embeds: [createUnknownErrorEmbed()] });
}
}
});
async function sendRedditSubmission(channel: TextChannel, submission: Submission, queryOrMode?: string | SubredditMode) {
let nsfw = submission.over_18 || submission.title.toLowerCase().includes("nsf");
let asSpoiler = submission.spoiler || nsfw;
let urlToSubmission = encodeURI("https://www.reddit.com" + submission.permalink);
let urlToAuthor = encodeURI("https://www.reddit.com/u/" + submission.author);
let urlIsAttachment = urlToSubmission !== submission.url;
let footerText = `On r/${submission.subreddit}`;
if (queryOrMode) {
if (SUBREDDIT_MODES.includes(queryOrMode)) {
footerText += `/${queryOrMode}`;
} else {
footerText += ` (searched '${queryOrMode}')`;
}
}
let cachedUserIcon = await getRedditUserIcon(submission.author, true);
let cachedSubredditInfo = await getSubredditInfo(submission.subreddit, true);
let cachedAttachment = urlIsAttachment ? await getUnpackedUrl(submission.url, true) : null;
let cachedDetails = await getSubmission(submission.id, true, 3);
let descriptionBuilder = "";
descriptionBuilder += numberToEmoijNumber(submission.score) + "\n";
descriptionBuilder += truncateString(submission.selftext, TRUNCATE_DESCRIPTION_LENGTH);
let containsCommentSection = false;
let commentSectionMaxThreadCount = urlIsAttachment ? 2 : 5;
if (cachedDetails && cachedDetails.comments) {
descriptionBuilder += truncateString(createCommentSection(cachedDetails.comments, commentSectionMaxThreadCount), TRUNCATE_COMMENTS_LENGTH);
containsCommentSection = true;
}
let embed = new MessageEmbed()
.setTitle(truncateString(submission.title, TRUNCATE_TITLE_LENGTH))
.setURL(urlToSubmission)
.setColor((cachedSubredditInfo?.color ?? DEFAULT_EMBED_COLOR) as ColorResolvable)
.setTimestamp(submission.created * 1000)
.setDescription(descriptionBuilder)
.setAuthor(submission.author, cachedUserIcon ?? getRandomDefaultUserIcon(), urlToAuthor)
.setFooter(footerText, cachedSubredditInfo?.icon ?? undefined);
let firstSentMessage = channel.send({ embeds: [embed] });
// Contains tasks that will edit the sent embed
let embedTasks = [];
if (cachedUserIcon === null) embedTasks.push(getRedditUserIcon(submission.author).then((e) => (cachedUserIcon = e)));
if (cachedSubredditInfo === null) embedTasks.push(getSubredditInfo(submission.subreddit).then((e) => (cachedSubredditInfo = e)));
if (cachedDetails === null) embedTasks.push(getSubmission(submission.id).then((e) => (cachedDetails = e)));
let otherTasks = [];
if (urlIsAttachment && cachedAttachment === null) otherTasks.push(getUnpackedUrl(submission.url).then((e) => (cachedAttachment = e)));
if (embedTasks.length > 0) {
await Promise.all(embedTasks as any);
if (!containsCommentSection && cachedDetails && cachedDetails.comments) {
descriptionBuilder += truncateString(
createCommentSection(cachedDetails.comments, commentSectionMaxThreadCount),
TRUNCATE_COMMENTS_LENGTH
);
} else {
logger("cached details is null");
}
embed.setDescription(descriptionBuilder);
embed.setAuthor(submission.author, cachedUserIcon ?? getRandomDefaultUserIcon());
embed.setColor((cachedSubredditInfo?.color ?? DEFAULT_EMBED_COLOR) as ColorResolvable);
embed.setFooter(footerText, cachedSubredditInfo?.icon ?? undefined);
(await firstSentMessage).edit({ embeds: [embed] });
}
if (otherTasks.length > 0) await Promise.all(otherTasks);
if (cachedAttachment) {
if (submission.is_video || isVideoUrl(cachedAttachment)) {
bot.sendVideoAttachment(channel, cachedAttachment, asSpoiler);
} else if (isImageUrl(cachedAttachment)) {
bot.sendImageAttachment(channel, cachedAttachment, asSpoiler);
} else {
bot.sendUrlAttachment(channel, cachedAttachment, asSpoiler);
}
}
}
async function preloadSubmission(submission: Submission) {
let urlToSubmission = encodeURI("https://www.reddit.com" + submission.permalink);
let urlIsAttachment = urlToSubmission !== submission.url;
async function preloadAttachment(url: string | null) {
if (!url) return;
if (isVideoUrl(url)) {
await getVideoOrDownload(url);
}
}
let tasks = [];
tasks.push(getRedditUserIcon(submission.author));
tasks.push(getSubredditInfo(submission.subreddit));
tasks.push(getSubmission(submission.id, false, 3));
if (urlIsAttachment) tasks.push(getUnpackedUrl(submission.url).then(preloadAttachment));
try {
await Promise.all(tasks as any);
} catch (ex) {
logger("error while preloading", ex);
}
}
async function getNextMatchingSubmission(
subreddit: string,
queryOrMode: SubredditMode | string,
index: number,
channel: TextChannel
): Promise<[number, Submission]> {
let triesRemaining = MAX_FILTER_TRIES;
let submission;
do {
if (triesRemaining-- <= 0) throw new RedditBotError("no-matching-posts");
submission = await getRedditSubmission(subreddit, queryOrMode, index++);
if (!submission) {
if (index <= 2) throw new RedditBotError("subreddit-not-found");
else
throw new RedditBotError(
"end-of-feed",
`You've reached the end of the **r/${subreddit}/${queryOrMode}** subreddit. Come back later for new posts, or browse a different subreddit.`
);
}
} while (!matchesChannelFilters(channel, submission));
return [index, submission];
}
function createCommentSection(comments: Listing<Comment>, maxThreads: number = 3): string {
let builder = "\n";
for (let i = 0, j = 0; j < maxThreads && i < comments?.children.length; i++) {
let comment = comments.children[i]?.data;
if (comment.score_hidden) continue;
// builder += "\n";
let level = 0;
while (comment && comment.body) {
builder += createIndentedComment(comment, level++);
comment = comment.replies?.data?.children[0]?.data;
}
j++;
}
return builder;
}
async function getUnpackedUrl(url: string, cacheOnly: boolean = false): Promise<string | null> {
let unpacked = await getCachedPackedUrl(url);
if (unpacked !== null) return unpacked;
if (cacheOnly) return null;
unpacked = await unpackUrl(url);
await storeCachedPackedUrl(url, unpacked);
return unpacked;
}
/**
* Convert a redirecting, 50/50, bit.ly, imgur... url to the direct url.
* @param {string} url The url to unpack/resolve.
*/
async function unpackUrl(url: string): Promise<string> {
if (url.startsWith("https://5050") || url.startsWith("http://5050") || url.startsWith("http://bit.ly") || url.startsWith("https://bit.ly")) {
try {
let res = await fetch(url, { redirect: "follow", method: "HEAD" });
url = res.url;
} catch (ex) {
logger("unpackUrl: could not get redirected url", ex.message);
}
}
if (url.startsWith("https://www.reddit.com/gallery/") || url.startsWith("https://reddit.com/gallery/")) {
let res = await (await fetch(url, { redirect: "follow" })).buffer();
let ch = cheerio.load(res);
let elem = ch("figure img");
if (elem) url = elem.attr("src") ?? url;
}
if (url.startsWith("https://imgur.com/gallery/")) {
url = "https://imgur.com/a/" + url.substring("https://imgur.com/gallery/".length);
}
if (
url.startsWith("https://postimg.cc/") ||
url.startsWith("https://www.flickr.com/") ||
url.startsWith("https://imgur.com/") ||
url.startsWith("https://gfycat.com/")
) {
try {
// <meta property="og:video" content="https://i.imgur.com/Xob3epw.mp4"/>
// <meta property="og:image" content="https://i.imgur.com/I42mS3H.jpg?fb" />
let res = await (await fetch(url, { redirect: "follow" })).buffer();
let ch = cheerio.load(res);
var elem = ch("head meta[property='og:video']");
if (elem) {
url = elem.attr("content") ?? url;
} else {
elem = ch("head meta[property='og:image']");
if (elem) url = elem.attr("content") ?? url;
}
logger("unpackUrl: extracted imgur/postimg url", url);
} catch (ex) {
logger("unpackUrl: could not extract imgur/postimg image", ex);
}
}
return url;
}
function isImageUrl(url: string): boolean {
// Remove query string
let i = url.indexOf("?");
if (i > 0) {
url = url.substring(0, i);
}
return (
url.endsWith(".gif") ||
url.endsWith(".png") ||
url.endsWith(".jpg") ||
url.startsWith("https://i.redd.it/") ||
url.startsWith("https://i.postimg.cc/")
);
}
function isVideoUrl(url: string): boolean {
// Remove query string
let i = url.indexOf("?");
if (i > 0) {
url = url.substring(0, i);
}
return (
url.endsWith(".gif") ||
url.endsWith(".gifv") ||
url.endsWith(".mp4") ||
url.startsWith("https://www.tiktok.com/") ||
url.startsWith("https://tiktok.com/") ||
url.startsWith("https://vm.tiktok.com/") ||
url.startsWith("https://v.redd.it/") ||
url.startsWith("https://streamable.com/") ||
url.startsWith("http://clips.twitch.tv/") ||
url.startsWith("https://clips.twitch.tv/") ||
url.startsWith("https://twitter.com/") ||
url.startsWith("https://gfycat.com/")
);
}
function numberToEmoijNumber(num: number, small: boolean = false) {
var out = "";
if (small) {
if (num === 0) {
out = "🔹";
} else if (num < 0) {
out = "🔻";
} else {
out = "🔺";
}
out += num;
} else {
if (num === 0) {
out = "⏺️ ";
} else if (num < 0) {
out = "⬇️ ";
num = -num;
} else {
out = "⬆️ ";
}
const str = num + "";
for (var i = 0; i < str.length; i++) {
//if ((str.length - i) % 3 == 0) out += ".";
out += String.fromCodePoint(str.codePointAt(i)!) + "\u20E3";
}
}
return out;
}
function createIndentedComment(comment: Comment, level: number) {
let title = `**${numberToEmoijNumber(comment.score, true)}** __${comment.author}__`;
let body = truncateString(comment.body, TRUNCATE_COMMENT_LENGTH).replace(/\n/g, " ");
if (level === 0) return "> " + title + "\n> " + body + "\n";
const MAX_WIDTH = 76; // discord embeds have a width of 75 characters
let width = MAX_WIDTH - level * 5;
let out = "";
let indent = "";
for (var i = 0; i < level; i++) indent += "\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0";
for (var i = 0; i < body.length / width; i++) {
if ((i + 1) * width < body.length) out += "> " + indent + body.substring(i * width, (i + 1) * width) + "\n";
else out += "> " + indent + body.substring(i * width) + "\n";
}
return "> " + indent + title + "\n" + out;
}
function truncateString(str: string, maxLength: number) {
const TRUNCATOR = "...";
if (str.length > maxLength - TRUNCATOR.length) return str.substring(0, maxLength - TRUNCATOR.length) + TRUNCATOR;
else return str;
}