eris/bot/txt2imgCommand.ts

88 lines
2.8 KiB
TypeScript
Raw Normal View History

2023-09-10 23:59:33 +00:00
import { Grammy, GrammyStatelessQ } from "../deps.ts";
2023-09-23 18:49:05 +00:00
import { formatUserChat } from "../utils/formatUserChat.ts";
import { getPngInfo, parsePngInfo, PngInfo } from "../sd/parsePngInfo.ts";
2023-09-10 18:56:17 +00:00
import { Context, logger } from "./mod.ts";
2023-09-23 18:49:05 +00:00
import { generationQueue } from "../app/generationQueue.ts";
import { getConfig } from "../app/config.ts";
2023-09-10 18:56:17 +00:00
2023-09-11 16:03:07 +00:00
export const txt2imgQuestion = new GrammyStatelessQ.StatelessQuestion<Context>(
2023-09-10 23:59:33 +00:00
"txt2img",
async (ctx) => {
if (!ctx.message.text) return;
2023-09-11 16:03:07 +00:00
await txt2img(ctx, ctx.message.text, false);
2023-09-10 23:59:33 +00:00
},
);
2023-09-10 18:56:17 +00:00
export async function txt2imgCommand(ctx: Grammy.CommandContext<Context>) {
2023-09-10 23:59:33 +00:00
await txt2img(ctx, ctx.match, true);
}
async function txt2img(ctx: Context, match: string, includeRepliedTo: boolean): Promise<void> {
if (!ctx.message?.from?.id) {
2023-09-11 09:22:15 +00:00
await ctx.reply("I don't know who you are");
return;
2023-09-10 18:56:17 +00:00
}
2023-09-10 23:59:33 +00:00
2023-09-22 02:59:22 +00:00
const config = await getConfig();
if (config.pausedReason != null) {
await ctx.reply(`I'm paused: ${config.pausedReason || "No reason given"}`);
2023-09-11 09:22:15 +00:00
return;
2023-09-10 18:56:17 +00:00
}
2023-09-10 23:59:33 +00:00
2023-09-22 02:59:22 +00:00
const jobs = await generationQueue.getAllJobs();
if (jobs.length >= config.maxJobs) {
2023-09-11 09:22:15 +00:00
await ctx.reply(
2023-09-22 02:59:22 +00:00
`The queue is full. Try again later. (Max queue size: ${config.maxJobs})`,
2023-09-10 18:56:17 +00:00
);
2023-09-11 09:22:15 +00:00
return;
2023-09-10 18:56:17 +00:00
}
2023-09-10 23:59:33 +00:00
2023-09-22 02:59:22 +00:00
const userJobs = jobs.filter((job) => job.state.from.id === ctx.message?.from?.id);
if (userJobs.length >= config.maxUserJobs) {
2023-09-11 09:22:15 +00:00
await ctx.reply(
2023-09-22 02:59:22 +00:00
`You already have ${config.maxUserJobs} jobs in queue. Try again later.`,
2023-09-10 18:56:17 +00:00
);
2023-09-11 09:22:15 +00:00
return;
2023-09-10 18:56:17 +00:00
}
2023-09-10 23:59:33 +00:00
2023-09-12 01:57:44 +00:00
let params: Partial<PngInfo> = {};
2023-09-11 20:43:12 +00:00
2023-09-10 23:59:33 +00:00
const repliedToMsg = ctx.message.reply_to_message;
2023-09-11 20:43:12 +00:00
if (includeRepliedTo && repliedToMsg?.document?.mime_type === "image/png") {
const file = await ctx.api.getFile(repliedToMsg.document.file_id);
const buffer = await fetch(file.getUrl()).then((resp) => resp.arrayBuffer());
2023-09-16 11:49:12 +00:00
params = parsePngInfo(getPngInfo(new Uint8Array(buffer)) ?? "", params);
2023-09-11 20:43:12 +00:00
}
2023-09-10 23:59:33 +00:00
const repliedToText = repliedToMsg?.text || repliedToMsg?.caption;
if (includeRepliedTo && repliedToText) {
2023-09-11 16:03:07 +00:00
// TODO: remove bot command from replied to text
2023-09-16 11:49:12 +00:00
params = parsePngInfo(repliedToText, params);
2023-09-10 23:59:33 +00:00
}
2023-09-11 20:43:12 +00:00
2023-09-16 11:49:12 +00:00
params = parsePngInfo(match, params);
2023-09-11 20:43:12 +00:00
2023-09-10 18:56:17 +00:00
if (!params.prompt) {
2023-09-11 09:22:15 +00:00
await ctx.reply(
2023-09-10 23:59:33 +00:00
"Please tell me what you want to see." +
txt2imgQuestion.messageSuffixMarkdown(),
{ reply_markup: { force_reply: true, selective: true }, parse_mode: "Markdown" },
);
2023-09-11 09:22:15 +00:00
return;
2023-09-10 18:56:17 +00:00
}
2023-09-10 23:59:33 +00:00
const replyMessage = await ctx.reply("Accepted. You are now in queue.");
2023-09-22 02:59:22 +00:00
await generationQueue.pushJob({
2023-09-12 01:57:44 +00:00
task: { type: "txt2img", params },
from: ctx.message.from,
chat: ctx.message.chat,
2023-09-22 02:59:22 +00:00
requestMessage: ctx.message,
replyMessage: replyMessage,
}, { retryCount: 3, retryDelayMs: 10_000 });
2023-09-10 23:59:33 +00:00
logger().debug(`Generation (txt2img) enqueued for ${formatUserChat(ctx.message)}`);
2023-09-10 18:56:17 +00:00
}