-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
67 lines (52 loc) · 1.64 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
import translate from 'translate-google';
import * as dotenv from 'dotenv';
dotenv.config();
import { connectDB, getUserDailyTweets } from './db.js';
import { postTweet, createTweetStream } from './twitter.js';
import { generateImage } from './images.js';
const main = async () => {
const accountName = process.env.ACCOUNT_USERNAME;
const dbCollection = await connectDB();
const stream = createTweetStream(accountName);
stream.on('tweet', async (tweet) => {
try {
const userId = tweet.user.id.toString();
const userTweetsToday = await getUserDailyTweets(dbCollection, userId);
if (userTweetsToday < 3) {
let tweetData = {
createdAt: new Date(tweet.created_at),
tweetId: tweet.id.toString(),
tweetIdStr: tweet.id_str,
text: tweet.text.replaceAll(`${accountName}`, ''),
user: {
userId,
userScreenName: tweet.user.screen_name,
},
};
const originalImage = await generateResponse(
tweetData.text,
tweetData.user.userScreenName
);
tweetData = {
...tweetData,
originalImage,
};
await dbCollection.insertOne(tweetData);
}
} catch (error) {
console.log('Error processing tweet\n', error);
}
});
};
const generateResponse = async (prompt, user) => {
const translatedPrompt = await translate(prompt, {
to: 'en',
});
const { parsedImage, originalImage } = await generateImage(translatedPrompt);
const tweetInfo = await postTweet(
`${prompt}\n\n🤖 Prompt by @${user}`,
parsedImage
);
return originalImage;
};
main();