You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

336 lines
14KB

  1. from enum import Enum
  2. from config import conf
  3. from common.log import logger
  4. import requests
  5. import threading
  6. import time
  7. from bridge.reply import Reply, ReplyType
  8. import aiohttp
  9. import asyncio
  10. from bridge.context import ContextType
  11. from plugins import EventContext, EventAction
  12. class TaskType(Enum):
  13. GENERATE = "generate"
  14. UPSCALE = "upscale"
  15. VARIATION = "variation"
  16. RESET = "reset"
  17. class Status(Enum):
  18. PENDING = "pending"
  19. FINISHED = "finished"
  20. EXPIRED = "expired"
  21. ABORTED = "aborted"
  22. def __str__(self):
  23. return self.name
  24. class TaskMode(Enum):
  25. FAST = "fast"
  26. RELAX = "relax"
  27. class MJTask:
  28. def __init__(self, id, user_id: str, task_type: TaskType, raw_prompt=None, expires: int=60*30, status=Status.PENDING):
  29. self.id = id
  30. self.user_id = user_id
  31. self.task_type = task_type
  32. self.raw_prompt = raw_prompt
  33. self.send_func = None # send_func(img_url)
  34. self.expiry_time = time.time() + expires
  35. self.status = status
  36. self.img_url = None # url
  37. self.img_id = None
  38. def __str__(self):
  39. return f"id={self.id}, user_id={self.user_id}, task_type={self.task_type}, status={self.status}, img_id={self.img_id}"
  40. # midjourney bot
  41. class MJBot:
  42. def __init__(self, config):
  43. self.base_url = "https://api.link-ai.chat/v1/img/midjourney"
  44. self.headers = {"Authorization": "Bearer " + conf().get("linkai_api_key")}
  45. self.config = config
  46. self.tasks = {}
  47. self.temp_dict = {}
  48. self.tasks_lock = threading.Lock()
  49. self.event_loop = asyncio.new_event_loop()
  50. threading.Thread(name="mj-check-thread", target=self._run_loop, args=(self.event_loop,)).start()
  51. def judge_mj_task_type(self, e_context: EventContext) -> TaskType:
  52. """
  53. 判断MJ任务的类型
  54. :param e_context: 上下文
  55. :return: 任务类型枚举
  56. """
  57. trigger_prefix = conf().get("plugin_trigger_prefix", "$")
  58. context = e_context['context']
  59. if context.type == ContextType.TEXT:
  60. if self.config and self.config.get("enabled"):
  61. cmd_list = context.content.split(maxsplit=1)
  62. if cmd_list[0].lower() == f"{trigger_prefix}mj":
  63. return TaskType.GENERATE
  64. elif cmd_list[0].lower() == f"{trigger_prefix}mju":
  65. return TaskType.UPSCALE
  66. elif self.config.get("use_image_create_prefix") and \
  67. check_prefix(context.content, conf().get("image_create_prefix")):
  68. return TaskType.GENERATE
  69. def process_mj_task(self, mj_type: TaskType, e_context: EventContext):
  70. """
  71. 处理mj任务
  72. :param mj_type: mj任务类型
  73. :param e_context: 对话上下文
  74. """
  75. context = e_context['context']
  76. session_id = context["session_id"]
  77. cmd = context.content.split(maxsplit=1)
  78. if len(cmd) == 1:
  79. self._set_reply_text(self.get_help_text(verbose=True), e_context, level=ReplyType.INFO)
  80. return
  81. if not self._check_rate_limit(session_id, e_context):
  82. logger.warn("[MJ] midjourney task exceed rate limit")
  83. return
  84. if mj_type == TaskType.GENERATE:
  85. image_prefix = check_prefix(context.content, conf().get("image_create_prefix"))
  86. if image_prefix:
  87. raw_prompt = context.content.replace(image_prefix, "", 1)
  88. else:
  89. # 图片生成
  90. raw_prompt = cmd[1]
  91. reply = self.generate(raw_prompt, session_id, e_context)
  92. e_context['reply'] = reply
  93. e_context.action = EventAction.BREAK_PASS
  94. return
  95. elif mj_type == TaskType.UPSCALE:
  96. # 图片放大
  97. clist = cmd[1].split()
  98. if len(clist) < 2:
  99. self._set_reply_text(f"{cmd[0]} 命令缺少参数", e_context)
  100. return
  101. img_id = clist[0]
  102. index = int(clist[1])
  103. if index < 1 or index > 4:
  104. self._set_reply_text(f"图片序号 {index} 错误,应在 1 至 4 之间", e_context)
  105. return
  106. key = f"{TaskType.UPSCALE.name}_{img_id}_{index}"
  107. if self.temp_dict.get(key):
  108. self._set_reply_text(f"第 {index} 张图片已经放大过了", e_context)
  109. return
  110. # 图片放大操作
  111. reply = self.upscale(session_id, img_id, index, e_context)
  112. e_context['reply'] = reply
  113. e_context.action = EventAction.BREAK_PASS
  114. return
  115. else:
  116. self._set_reply_text(f"暂不支持该命令", e_context)
  117. def generate(self, prompt: str, user_id: str, e_context: EventContext) -> Reply:
  118. """
  119. 图片生成
  120. :param prompt: 提示词
  121. :param user_id: 用户id
  122. :param e_context: 对话上下文
  123. :return: 任务ID
  124. """
  125. logger.info(f"[MJ] image generate, prompt={prompt}")
  126. mode = self._fetch_mode(prompt)
  127. body = {"prompt": prompt, "mode": mode, "auto_translate": self.config.get("auto_translate")}
  128. res = requests.post(url=self.base_url + "/generate", json=body, headers=self.headers)
  129. if res.status_code == 200:
  130. res = res.json()
  131. logger.debug(f"[MJ] image generate, res={res}")
  132. if res.get("code") == 200:
  133. task_id = res.get("data").get("taskId")
  134. real_prompt = res.get("data").get("realPrompt")
  135. if mode == TaskMode.RELAX.name:
  136. time_str = "1~10分钟"
  137. else:
  138. time_str = "1~2分钟"
  139. content = f"🚀你的作品将在{time_str}左右完成,请耐心等待\n- - - - - - - - -\n"
  140. if real_prompt:
  141. content += f"初始prompt: {prompt}\n转换后prompt: {real_prompt}"
  142. else:
  143. content += f"prompt: {prompt}"
  144. reply = Reply(ReplyType.INFO, content)
  145. task = MJTask(id=task_id, status=Status.PENDING, raw_prompt=prompt, user_id=user_id, task_type=TaskType.GENERATE)
  146. # put to memory dict
  147. self.tasks[task.id] = task
  148. asyncio.run_coroutine_threadsafe(self.check_task(task, e_context), self.event_loop)
  149. return reply
  150. else:
  151. res_json = res.json()
  152. logger.error(f"[MJ] generate error, msg={res_json.get('message')}, status_code={res.status_code}")
  153. reply = Reply(ReplyType.ERROR, "图片生成失败,请稍后再试")
  154. return reply
  155. def upscale(self, user_id: str, img_id: str, index: int, e_context: EventContext) -> Reply:
  156. logger.info(f"[MJ] image upscale, img_id={img_id}, index={index}")
  157. body = {"type": TaskType.UPSCALE.name, "imgId": img_id, "index": index}
  158. res = requests.post(url=self.base_url + "/operate", json=body, headers=self.headers)
  159. if res.status_code == 200:
  160. res = res.json()
  161. logger.info(res)
  162. if res.get("code") == 200:
  163. task_id = res.get("data").get("taskId")
  164. content = f"🔎图片正在放大中,请耐心等待"
  165. reply = Reply(ReplyType.INFO, content)
  166. task = MJTask(id=task_id, status=Status.PENDING, user_id=user_id, task_type=TaskType.UPSCALE)
  167. # put to memory dict
  168. self.tasks[task.id] = task
  169. key = f"{TaskType.UPSCALE.name}_{img_id}_{index}"
  170. self.temp_dict[key] = True
  171. asyncio.run_coroutine_threadsafe(self.check_task(task, e_context), self.event_loop)
  172. return reply
  173. else:
  174. error_msg = ""
  175. if res.status_code == 461:
  176. error_msg = "请输入正确的图片ID"
  177. res_json = res.json()
  178. logger.error(f"[MJ] upscale error, msg={res_json.get('message')}, status_code={res.status_code}")
  179. reply = Reply(ReplyType.ERROR, error_msg or "图片生成失败,请稍后再试")
  180. return reply
  181. async def check_task(self, task: MJTask, e_context: EventContext):
  182. max_retry_times = 90
  183. while max_retry_times > 0:
  184. await asyncio.sleep(10)
  185. async with aiohttp.ClientSession() as session:
  186. url = f"{self.base_url}/tasks/{task.id}"
  187. async with session.get(url, headers=self.headers) as res:
  188. if res.status == 200:
  189. res_json = await res.json()
  190. logger.debug(f"[MJ] task check res, task_id={task.id}, status={res.status}, "
  191. f"data={res_json.get('data')}, thread={threading.current_thread().name}")
  192. if res_json.get("data") and res_json.get("data").get("status") == Status.FINISHED.name:
  193. # process success res
  194. if self.tasks.get(task.id):
  195. self.tasks[task.id].status = Status.FINISHED
  196. self._process_success_task(task, res_json.get("data"), e_context)
  197. return
  198. else:
  199. logger.warn(f"[MJ] image check error, status_code={res.status}")
  200. max_retry_times -= 20
  201. max_retry_times -= 1
  202. logger.warn("[MJ] end from poll")
  203. if self.tasks.get(task.id):
  204. self.tasks[task.id].status = Status.EXPIRED
  205. def _process_success_task(self, task: MJTask, res: dict, e_context: EventContext):
  206. """
  207. 处理任务成功的结果
  208. :param task: MJ任务
  209. :param res: 请求结果
  210. :param e_context: 对话上下文
  211. """
  212. # channel send img
  213. task.status = Status.FINISHED
  214. task.img_id = res.get("imgId")
  215. task.img_url = res.get("imgUrl")
  216. logger.info(f"[MJ] task success, task_id={task.id}, img_id={task.img_id}, img_url={task.img_url}")
  217. # send img
  218. reply = Reply(ReplyType.IMAGE_URL, task.img_url)
  219. channel = e_context["channel"]
  220. channel._send(reply, e_context["context"])
  221. # send info
  222. trigger_prefix = conf().get("plugin_trigger_prefix", "$")
  223. text = ""
  224. if task.task_type == TaskType.GENERATE:
  225. text = f"🎨绘画完成!\nprompt: {task.raw_prompt}\n- - - - - - - - -\n图片ID: {task.img_id}"
  226. text += f"\n\n🔎可使用 {trigger_prefix}mju 命令放大指定图片\n"
  227. text += f"例如:\n{trigger_prefix}mju {task.img_id} 1"
  228. reply = Reply(ReplyType.INFO, text)
  229. channel._send(reply, e_context["context"])
  230. self._print_tasks()
  231. return
  232. def _check_rate_limit(self, user_id: str, e_context: EventContext) -> bool:
  233. """
  234. midjourney任务限流控制
  235. :param user_id: 用户id
  236. :param e_context: 对话上下文
  237. :return: 任务是否能够生成, True:可以生成, False: 被限流
  238. """
  239. tasks = self.find_tasks_by_user_id(user_id)
  240. task_count = len([t for t in tasks if t.status == Status.PENDING])
  241. if task_count >= self.config.get("max_tasks_per_user"):
  242. reply = Reply(ReplyType.INFO, "您的Midjourney作图任务数已达上限,请稍后再试")
  243. e_context["reply"] = reply
  244. e_context.action = EventAction.BREAK_PASS
  245. return False
  246. task_count = len([t for t in self.tasks.values() if t.status == Status.PENDING])
  247. if task_count >= self.config.get("max_tasks"):
  248. reply = Reply(ReplyType.INFO, "Midjourney服务的总任务数已达上限,请稍后再试")
  249. e_context["reply"] = reply
  250. e_context.action = EventAction.BREAK_PASS
  251. return False
  252. return True
  253. def _fetch_mode(self, prompt) -> str:
  254. mode = self.config.get("mode")
  255. if "--relax" in prompt or mode == TaskMode.RELAX.name:
  256. return TaskMode.RELAX.name
  257. return TaskMode.FAST.name
  258. def _run_loop(self, loop: asyncio.BaseEventLoop):
  259. """
  260. 运行事件循环,用于轮询任务的线程
  261. :param loop: 事件循环
  262. """
  263. loop.run_forever()
  264. loop.stop()
  265. def _print_tasks(self):
  266. for id in self.tasks:
  267. logger.debug(f"[MJ] current task: {self.tasks[id]}")
  268. def _set_reply_text(self, content: str, e_context: EventContext, level: ReplyType=ReplyType.ERROR):
  269. """
  270. 设置回复文本
  271. :param content: 回复内容
  272. :param e_context: 对话上下文
  273. :param level: 回复等级
  274. """
  275. reply = Reply(level, content)
  276. e_context["reply"] = reply
  277. e_context.action = EventAction.BREAK_PASS
  278. def get_help_text(self, verbose=False, **kwargs):
  279. trigger_prefix = conf().get("plugin_trigger_prefix", "$")
  280. help_text = "利用midjourney来画图。\n"
  281. if not verbose:
  282. return help_text
  283. help_text += f"{trigger_prefix}mj 描述词1,描述词2 ... : 利用描述词作画,参数请放在提示词之后。\n{trigger_prefix}mjimage 描述词1,描述词2 ... : 利用描述词进行图生图,参数请放在提示词之后。\n{trigger_prefix}mjr ID: 对指定ID消息重新生成图片。\n{trigger_prefix}mju ID 图片序号: 对指定ID消息中的第x张图片进行放大。\n{trigger_prefix}mjv ID 图片序号: 对指定ID消息中的第x张图片进行变换。\n例如:\n\"{trigger_prefix}mj a little cat, white --ar 9:16\"\n\"{trigger_prefix}mjimage a white cat --ar 9:16\"\n\"{trigger_prefix}mju 1105592717188272288 2\""
  284. return help_text
  285. def find_tasks_by_user_id(self, user_id) -> list[MJTask]:
  286. result = []
  287. with self.tasks_lock:
  288. now = time.time()
  289. for task in self.tasks.values():
  290. if task.status == Status.PENDING and now > task.expiry_time:
  291. task.status = Status.EXPIRED
  292. logger.info(f"[MJ] {task} expired")
  293. if task.user_id == user_id:
  294. result.append(task)
  295. return result
  296. def check_prefix(content, prefix_list):
  297. if not prefix_list:
  298. return None
  299. for prefix in prefix_list:
  300. if content.startswith(prefix):
  301. return prefix
  302. return None