forked from pinks/eris
1
0
Fork 0
nyx/bot/txt2imgCommand.ts

85 lines
2.7 KiB
TypeScript
Raw Normal View History

2023-09-10 23:59:33 +00:00
import { Grammy, GrammyStatelessQ } from "../deps.ts";
2023-09-13 09:50:22 +00:00
import { formatUserChat } from "../common/utils.ts";
2023-09-10 18:56:17 +00:00
import { jobStore } from "../db/jobStore.ts";
2023-09-13 09:50:22 +00:00
import { getPngInfo, parsePngInfo, PngInfo } from "../common/parsePngInfo.ts";
2023-09-10 18:56:17 +00:00
import { Context, logger } from "./mod.ts";
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-11 17:08:12 +00:00
if (ctx.session.global.pausedReason != null) {
await ctx.reply(`I'm paused: ${ctx.session.global.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-17 23:01:09 +00:00
const jobs = await jobStore.getBy("status.type", { value: "waiting" });
2023-09-11 17:08:12 +00:00
if (jobs.length >= ctx.session.global.maxJobs) {
2023-09-11 09:22:15 +00:00
await ctx.reply(
2023-09-11 17:08:12 +00:00
`The queue is full. Try again later. (Max queue size: ${ctx.session.global.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-12 01:57:44 +00:00
const userJobs = jobs.filter((job) => job.value.from.id === ctx.message?.from?.id);
2023-09-11 17:08:12 +00:00
if (userJobs.length >= ctx.session.global.maxUserJobs) {
2023-09-11 09:22:15 +00:00
await ctx.reply(
2023-09-11 17:08:12 +00:00
`You already have ${ctx.session.global.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-10 18:56:17 +00:00
await jobStore.create({
2023-09-12 01:57:44 +00:00
task: { type: "txt2img", params },
from: ctx.message.from,
chat: ctx.message.chat,
requestMessageId: ctx.message.message_id,
status: { type: "waiting", message: replyMessage },
2023-09-10 18:56:17 +00:00
});
2023-09-10 23:59:33 +00:00
logger().debug(`Job enqueued for ${formatUserChat(ctx.message)}`);
2023-09-10 18:56:17 +00:00
}