mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-03 23:36:43 +02:00
189 lines
7.7 KiB
JavaScript
189 lines
7.7 KiB
JavaScript
const Command = require('../../framework/Command');
|
|
const { PermissionFlagsBits } = require('discord.js');
|
|
const { createCanvas, loadImage } = require('canvas');
|
|
const { TwitterOpenApi } = require('twitter-openapi-typescript');
|
|
const api = new TwitterOpenApi();
|
|
const moment = require('moment');
|
|
const request = require('node-superfetch');
|
|
const path = require('path');
|
|
const { formatNumberK, randomRange } = require('../../util/Util');
|
|
const { wrapText } = require('../../util/Canvas');
|
|
|
|
module.exports = class TweetCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'tweet',
|
|
aliases: ['fake-tweet', 'twitter-tweet', 'fake-twitter-tweet', 'x-post', 'x', 'fake-x-post'],
|
|
group: 'edit-image-text',
|
|
memberName: 'tweet',
|
|
description: 'Sends a Twitter tweet with the user and text of your choice.',
|
|
throttling: {
|
|
usages: 2,
|
|
duration: 10
|
|
},
|
|
clientPermissions: [PermissionFlagsBits.AttachFiles],
|
|
credit: [
|
|
{
|
|
name: 'Twitter',
|
|
url: 'https://twitter.com/',
|
|
reason: 'Image, API',
|
|
reasonURL: 'https://developer.twitter.com/en/docs.html'
|
|
},
|
|
{
|
|
name: 'Google',
|
|
url: 'https://www.google.com/',
|
|
reason: 'Noto Font',
|
|
reasonURL: 'https://www.google.com/get/noto/'
|
|
}
|
|
],
|
|
args: [
|
|
{
|
|
key: 'user',
|
|
type: 'string',
|
|
max: 15
|
|
},
|
|
{
|
|
key: 'text',
|
|
type: 'string',
|
|
max: 280
|
|
}
|
|
]
|
|
});
|
|
|
|
this.guestClient = null;
|
|
}
|
|
|
|
async run(msg, { user, text }) {
|
|
if (!this.guestClient) this.guestClient = await api.getGuestClient();
|
|
const userData = await this.fetchUser(msg, user);
|
|
const avatar = await loadImage(userData.avatar);
|
|
const base1 = await loadImage(path.join(__dirname, '..', '..', 'assets', 'images', 'tweet', 'bg-1.png'));
|
|
const base2 = await loadImage(path.join(__dirname, '..', '..', 'assets', 'images', 'tweet', 'bg-2.png'));
|
|
const canvas = createCanvas(base1.width, base1.height + base2.height);
|
|
const ctx = canvas.getContext('2d');
|
|
ctx.font = this.client.fonts.get('ChirpRegular.ttf').toCanvasString(23);
|
|
const lines = await wrapText(ctx, text, 710);
|
|
const lineBreakLen = text.split('\n').length;
|
|
const linesLen = (23 * lines.length)
|
|
+ (23 * (lineBreakLen - 1))
|
|
+ (9 * (lines.length - 1))
|
|
+ (9 * (lineBreakLen - 1))
|
|
+ 20;
|
|
canvas.height += linesLen;
|
|
const likes = randomRange(Math.ceil(userData.followers * 0.0015), Math.ceil(userData.followers * 0.002));
|
|
const retweets = randomRange(Math.ceil(userData.followers * 0.00015), Math.ceil(userData.followers * 0.0002));
|
|
const quotTweets = randomRange(Math.ceil(userData.followers * 0.000015), Math.ceil(userData.followers * 0.00002));
|
|
const replies = randomRange(Math.ceil(userData.followers * 0.000015), Math.ceil(userData.followers * 0.00002));
|
|
const bookmarks = randomRange(Math.ceil(userData.followers * 0.000015), Math.ceil(userData.followers * 0.00002));
|
|
const views = randomRange(Math.ceil(userData.followers * 50), Math.ceil(userData.followers * 100));
|
|
ctx.fillStyle = 'black';
|
|
ctx.fillRect(0, base1.height, canvas.width, linesLen);
|
|
ctx.drawImage(base1, 0, 0);
|
|
const base2StartY = base1.height + linesLen;
|
|
ctx.drawImage(base2, 0, base2StartY);
|
|
ctx.textBaseline = 'top';
|
|
ctx.font = this.client.fonts.get('ChirpBold.ttf').toCanvasString(18);
|
|
ctx.fillStyle = 'white';
|
|
ctx.fillText(userData.name, 80, 88);
|
|
if (userData.verified) {
|
|
const verified = await loadImage(
|
|
path.join(__dirname, '..', '..', 'assets', 'images', 'tweet', 'verified.png')
|
|
);
|
|
const nameLen = ctx.measureText(userData.name).width;
|
|
ctx.drawImage(verified, 80 + nameLen + 3, 90, 20, 20);
|
|
}
|
|
ctx.font = this.client.fonts.get('ChirpRegular.ttf').toCanvasString(17);
|
|
ctx.fillStyle = '#71767b';
|
|
ctx.fillText(`@${userData.screenName}`, 80, 113);
|
|
ctx.fillStyle = 'white';
|
|
ctx.font = this.client.fonts.get('ChirpRegular.ttf').toCanvasString(23);
|
|
ctx.fillText(lines.join('\n'), 17, 160);
|
|
ctx.fillStyle = '#71767b';
|
|
ctx.font = this.client.fonts.get('Noto-Regular.ttf').toCanvasString(18);
|
|
const time = moment().format('h:mm A ∙ MMM D, YYYY ∙');
|
|
ctx.fillText(time, 18, base2StartY + 12);
|
|
const timeLen = ctx.measureText(time).width;
|
|
ctx.fillStyle = 'white';
|
|
ctx.font = this.client.fonts.get('Noto-Bold.ttf').toCanvasString(18);
|
|
ctx.fillText(formatNumberK(views), 18 + timeLen + 6, base2StartY + 12);
|
|
const viewsLen = ctx.measureText(formatNumberK(views)).width;
|
|
ctx.fillStyle = '#71767b';
|
|
ctx.font = this.client.fonts.get('Noto-Regular.ttf').toCanvasString(18);
|
|
ctx.fillText('Views', 18 + timeLen + 6 + viewsLen + 6, base2StartY + 12);
|
|
ctx.font = this.client.fonts.get('Noto-Regular.ttf').toCanvasString(16);
|
|
ctx.fillText(formatNumberK(replies), 64, base2StartY + 145);
|
|
ctx.fillText(formatNumberK(likes), 415, base2StartY + 145);
|
|
ctx.fillText(formatNumberK(retweets + quotTweets), 242, base2StartY + 145);
|
|
ctx.fillText(formatNumberK(bookmarks), 588, base2StartY + 145);
|
|
let currentLen = 17;
|
|
ctx.fillStyle = 'white';
|
|
ctx.font = this.client.fonts.get('Noto-Bold.ttf').toCanvasString(18);
|
|
ctx.fillText(formatNumberK(retweets), currentLen, base2StartY + 75);
|
|
currentLen += ctx.measureText(formatNumberK(retweets)).width;
|
|
currentLen += 5;
|
|
ctx.fillStyle = '#71767b';
|
|
ctx.font = this.client.fonts.get('Noto-Regular.ttf').toCanvasString(18);
|
|
ctx.fillText('Reposts', currentLen, base2StartY + 75);
|
|
currentLen += ctx.measureText('Reposts').width;
|
|
currentLen += 10;
|
|
ctx.fillStyle = 'white';
|
|
ctx.font = this.client.fonts.get('Noto-Bold.ttf').toCanvasString(18);
|
|
ctx.fillText(formatNumberK(quotTweets), currentLen, base2StartY + 75);
|
|
currentLen += ctx.measureText(formatNumberK(quotTweets)).width;
|
|
currentLen += 5;
|
|
ctx.fillStyle = '#71767b';
|
|
ctx.font = this.client.fonts.get('Noto-Regular.ttf').toCanvasString(18);
|
|
ctx.fillText('Quotes', currentLen, base2StartY + 75);
|
|
currentLen += ctx.measureText('Quotes').width;
|
|
currentLen += 10;
|
|
ctx.fillStyle = 'white';
|
|
ctx.font = this.client.fonts.get('Noto-Bold.ttf').toCanvasString(18);
|
|
ctx.fillText(formatNumberK(likes), currentLen, base2StartY + 75);
|
|
currentLen += ctx.measureText(formatNumberK(likes)).width;
|
|
currentLen += 5;
|
|
ctx.fillStyle = '#71767b';
|
|
ctx.font = this.client.fonts.get('Noto-Regular.ttf').toCanvasString(18);
|
|
ctx.fillText('Likes', currentLen, base2StartY + 75);
|
|
currentLen += ctx.measureText('Likes').width;
|
|
currentLen += 10;
|
|
ctx.fillStyle = 'white';
|
|
ctx.font = this.client.fonts.get('Noto-Bold.ttf').toCanvasString(18);
|
|
ctx.fillText(formatNumberK(bookmarks), currentLen, base2StartY + 75);
|
|
currentLen += ctx.measureText(formatNumberK(bookmarks)).width;
|
|
currentLen += 5;
|
|
ctx.fillStyle = '#71767b';
|
|
ctx.font = this.client.fonts.get('Noto-Regular.ttf').toCanvasString(18);
|
|
ctx.fillText('Bookmarks', currentLen, base2StartY + 75);
|
|
ctx.beginPath();
|
|
ctx.arc(17 + 26, 84 + 26, 26, 0, Math.PI * 2);
|
|
ctx.closePath();
|
|
ctx.clip();
|
|
ctx.drawImage(avatar, 17, 84, 52, 52);
|
|
return msg.say({ files: [{ attachment: canvas.toBuffer(), name: 'tweet.png' }] });
|
|
}
|
|
|
|
async fetchUser(msg, user) {
|
|
try {
|
|
const { data } = await this.guestClient.getUserApi().getUserByScreenName({ screenName: user });
|
|
const body = data.user.legacy;
|
|
const avatarRes = await request.get(body.profileImageUrlHttps);
|
|
return {
|
|
screenName: body.screenName,
|
|
name: body.name,
|
|
avatar: avatarRes.body,
|
|
verified: data.user.isBlueVerified,
|
|
followers: body.followersCount
|
|
};
|
|
} catch {
|
|
const avatarRes = await request.get(msg.author.displayAvatarURL({ extension: 'png', size: 64 }));
|
|
return {
|
|
screenName: msg.author.username.slice(0, 15),
|
|
name: msg.member ? msg.member.displayName.slice(0, 50) : msg.author.username.slice(0, 50),
|
|
avatar: avatarRes.body,
|
|
verified: false,
|
|
followers: 0
|
|
};
|
|
}
|
|
}
|
|
};
|