2023-09-24 13:08:35 +00:00
|
|
|
import { CommandContext } from "grammy";
|
|
|
|
import { StatelessQuestion } from "grammy_stateless_question";
|
|
|
|
import { maxBy } from "std/collections";
|
2023-09-23 18:49:05 +00:00
|
|
|
import { getConfig } from "../app/config.ts";
|
2023-09-24 13:08:35 +00:00
|
|
|
import { generationQueue } from "../app/generationQueue.ts";
|
|
|
|
import { parsePngInfo, PngInfo } from "../sd/parsePngInfo.ts";
|
|
|
|
import { formatUserChat } from "../utils/formatUserChat.ts";
|
|
|
|
import { ErisContext, logger } from "./mod.ts";
|
2023-09-12 01:57:44 +00:00
|
|
|
|
2023-09-24 15:19:44 +00:00
|
|
|
type QuestionState = { fileId?: string; params?: Partial<PngInfo> };
|
|
|
|
|
2023-09-24 13:08:35 +00:00
|
|
|
export const img2imgQuestion = new StatelessQuestion<ErisContext>(
|
2023-09-12 01:57:44 +00:00
|
|
|
"img2img",
|
2023-09-24 15:19:44 +00:00
|
|
|
async (ctx, stateString) => {
|
|
|
|
const state: QuestionState = JSON.parse(stateString);
|
2023-09-12 01:57:44 +00:00
|
|
|
await img2img(ctx, ctx.message.text, false, state);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
2023-09-24 13:08:35 +00:00
|
|
|
export async function img2imgCommand(ctx: CommandContext<ErisContext>) {
|
2023-09-12 01:57:44 +00:00
|
|
|
await img2img(ctx, ctx.match, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
async function img2img(
|
2023-09-24 13:08:35 +00:00
|
|
|
ctx: ErisContext,
|
2023-09-12 01:57:44 +00:00
|
|
|
match: string | undefined,
|
|
|
|
includeRepliedTo: boolean,
|
2023-09-24 15:19:44 +00:00
|
|
|
state: QuestionState = {},
|
2023-09-12 01:57:44 +00:00
|
|
|
): Promise<void> {
|
|
|
|
if (!ctx.message?.from?.id) {
|
2023-09-24 19:58:09 +00:00
|
|
|
await ctx.reply("I don't know who you are", {
|
|
|
|
reply_to_message_id: ctx.message?.message_id,
|
|
|
|
});
|
2023-09-12 01:57:44 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-09-22 02:59:22 +00:00
|
|
|
const config = await getConfig();
|
|
|
|
|
|
|
|
if (config.pausedReason != null) {
|
2023-09-24 19:58:09 +00:00
|
|
|
await ctx.reply(`I'm paused: ${config.pausedReason || "No reason given"}`, {
|
|
|
|
reply_to_message_id: ctx.message?.message_id,
|
|
|
|
});
|
2023-09-12 01:57:44 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-09-22 02:59:22 +00:00
|
|
|
const jobs = await generationQueue.getAllJobs();
|
|
|
|
if (jobs.length >= config.maxJobs) {
|
2023-09-24 19:58:09 +00:00
|
|
|
await ctx.reply(`The queue is full. Try again later. (Max queue size: ${config.maxJobs})`, {
|
|
|
|
reply_to_message_id: ctx.message?.message_id,
|
|
|
|
});
|
2023-09-12 01:57:44 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
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-24 19:58:09 +00:00
|
|
|
await ctx.reply(`You already have ${config.maxUserJobs} jobs in queue. Try again later.`, {
|
|
|
|
reply_to_message_id: ctx.message?.message_id,
|
|
|
|
});
|
2023-09-12 01:57:44 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const repliedToMsg = ctx.message.reply_to_message;
|
|
|
|
|
|
|
|
if (includeRepliedTo && repliedToMsg?.photo) {
|
|
|
|
const photos = repliedToMsg.photo;
|
2023-09-24 13:08:35 +00:00
|
|
|
const biggestPhoto = maxBy(photos, (p) => p.width * p.height);
|
2023-09-12 01:57:44 +00:00
|
|
|
if (!biggestPhoto) throw new Error("Message was a photo but had no photos?");
|
2023-09-24 15:19:44 +00:00
|
|
|
state.fileId = biggestPhoto.file_id;
|
|
|
|
if (!state.params) state.params = {};
|
|
|
|
state.params.width = biggestPhoto.width;
|
|
|
|
state.params.height = biggestPhoto.height;
|
2023-09-12 01:57:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (ctx.message.photo) {
|
|
|
|
const photos = ctx.message.photo;
|
2023-09-24 13:08:35 +00:00
|
|
|
const biggestPhoto = maxBy(photos, (p) => p.width * p.height);
|
2023-09-12 01:57:44 +00:00
|
|
|
if (!biggestPhoto) throw new Error("Message was a photo but had no photos?");
|
2023-09-24 15:19:44 +00:00
|
|
|
state.fileId = biggestPhoto.file_id;
|
|
|
|
if (!state.params) state.params = {};
|
|
|
|
state.params.width = biggestPhoto.width;
|
|
|
|
state.params.height = biggestPhoto.height;
|
2023-09-12 01:57:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const repliedToText = repliedToMsg?.text || repliedToMsg?.caption;
|
|
|
|
if (includeRepliedTo && repliedToText) {
|
|
|
|
// TODO: remove bot command from replied to text
|
2023-09-24 15:19:44 +00:00
|
|
|
state.params = parsePngInfo(repliedToText, state.params);
|
2023-09-12 01:57:44 +00:00
|
|
|
}
|
|
|
|
|
2023-09-24 15:19:44 +00:00
|
|
|
if (match) {
|
|
|
|
state.params = parsePngInfo(match, state.params);
|
|
|
|
}
|
2023-09-12 01:57:44 +00:00
|
|
|
|
2023-09-24 15:19:44 +00:00
|
|
|
if (!state.fileId) {
|
2023-09-12 01:57:44 +00:00
|
|
|
await ctx.reply(
|
|
|
|
"Please show me a picture to repaint." +
|
2023-09-24 15:19:44 +00:00
|
|
|
img2imgQuestion.messageSuffixMarkdown(JSON.stringify(state satisfies QuestionState)),
|
2023-09-24 19:58:09 +00:00
|
|
|
{
|
|
|
|
reply_markup: { force_reply: true, selective: true },
|
|
|
|
parse_mode: "Markdown",
|
|
|
|
reply_to_message_id: ctx.message?.message_id,
|
|
|
|
},
|
2023-09-12 01:57:44 +00:00
|
|
|
);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-09-24 15:19:44 +00:00
|
|
|
if (!state.params?.prompt) {
|
2023-09-12 01:57:44 +00:00
|
|
|
await ctx.reply(
|
|
|
|
"Please describe the picture you want to repaint." +
|
2023-09-24 15:19:44 +00:00
|
|
|
img2imgQuestion.messageSuffixMarkdown(JSON.stringify(state satisfies QuestionState)),
|
2023-09-24 19:58:09 +00:00
|
|
|
{
|
|
|
|
reply_markup: { force_reply: true, selective: true },
|
|
|
|
parse_mode: "Markdown",
|
|
|
|
reply_to_message_id: ctx.message?.message_id,
|
|
|
|
},
|
2023-09-12 01:57:44 +00:00
|
|
|
);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-09-24 19:58:09 +00:00
|
|
|
const replyMessage = await ctx.reply("Accepted. You are now in queue.", {
|
|
|
|
reply_to_message_id: ctx.message?.message_id,
|
|
|
|
});
|
2023-09-12 01:57:44 +00:00
|
|
|
|
2023-09-22 02:59:22 +00:00
|
|
|
await generationQueue.pushJob({
|
2023-09-24 15:19:44 +00:00
|
|
|
task: { type: "img2img", fileId: state.fileId, params: state.params },
|
2023-09-12 01:57:44 +00:00
|
|
|
from: ctx.message.from,
|
|
|
|
chat: ctx.message.chat,
|
2023-09-22 02:59:22 +00:00
|
|
|
requestMessage: ctx.message,
|
|
|
|
replyMessage: replyMessage,
|
2023-09-24 12:05:28 +00:00
|
|
|
}, { retryCount: 3, repeatDelayMs: 10_000 });
|
2023-09-12 01:57:44 +00:00
|
|
|
|
2023-09-24 12:05:28 +00:00
|
|
|
logger().debug(`Generation (img2img) enqueued for ${formatUserChat(ctx.message)}`);
|
2023-09-12 01:57:44 +00:00
|
|
|
}
|