koishi.js 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  1. "use strict";
  2. var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
  3. function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
  4. return new (P || (P = Promise))(function (resolve, reject) {
  5. function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
  6. function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
  7. function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
  8. step((generator = generator.apply(thisArg, _arguments || [])).next());
  9. });
  10. };
  11. Object.defineProperty(exports, "__esModule", { value: true });
  12. exports.Message = void 0;
  13. const koishi_1 = require("koishi");
  14. require("koishi-adapter-onebot");
  15. const command_1 = require("./command");
  16. const loggers_1 = require("./loggers");
  17. const utils_1 = require("./utils");
  18. const logger = loggers_1.getLogger('qqbot');
  19. const cqUrlFix = (factory) => (...args) => factory(...args).replace(/(?<=\[CQ:.*)url=(?=(base64|file|https?):\/\/)/, 'file=');
  20. exports.Message = {
  21. Image: cqUrlFix(koishi_1.segment.image),
  22. Video: cqUrlFix(koishi_1.segment.video),
  23. Voice: cqUrlFix(koishi_1.segment.audio),
  24. ellipseBase64: (msg) => msg.replace(/(?<=\[CQ:.*base64:\/\/).*?(,|\])/g, '...$1'),
  25. separateAttachment: (msg) => {
  26. const attachments = [];
  27. const message = msg.replace(/\[CQ:(video|record),.*?\]/g, code => {
  28. attachments.push(code);
  29. return '';
  30. });
  31. return { message, attachments };
  32. },
  33. };
  34. class default_1 {
  35. constructor(opt) {
  36. this.messageQueues = {};
  37. this.tempSenders = {};
  38. this.next = (type, id) => {
  39. const queue = this.messageQueues[`${type}:${id}`];
  40. if (queue && queue.length) {
  41. queue[0]().then(() => {
  42. queue.shift();
  43. if (!queue.length)
  44. delete this.messageQueues[`${type}:${id}`];
  45. else
  46. this.next(type, id);
  47. });
  48. }
  49. };
  50. this.enqueue = (type, id, resolver) => {
  51. var _a, _b;
  52. let wasEmpty = false;
  53. const queue = (_a = this.messageQueues)[_b = `${type}:${id}`] || (_a[_b] = (() => { wasEmpty = true; return []; })());
  54. queue.push(() => koishi_1.sleep(200).then(resolver));
  55. logger.debug(`no. of message currently queued for ${type}:${id}: ${queue.length}`);
  56. if (wasEmpty)
  57. this.next(type, id);
  58. };
  59. this.getChat = (session) => __awaiter(this, void 0, void 0, function* () {
  60. switch (session.subtype) {
  61. case 'private':
  62. if (session.sender.groupId) {
  63. const friendList = yield session.bot.getFriendList();
  64. if (!friendList.some(friendItem => friendItem.userId === session.userId)) {
  65. this.tempSenders[session.userId] = session.sender.groupId;
  66. return {
  67. chatID: {
  68. qq: Number(session.userId),
  69. group: Number(session.sender.groupId),
  70. toString: () => session.userId,
  71. },
  72. chatType: "temp",
  73. };
  74. }
  75. }
  76. return {
  77. chatID: Number(session.userId),
  78. chatType: "private",
  79. };
  80. case 'group':
  81. return {
  82. chatID: Number(session.groupId),
  83. chatType: "group",
  84. };
  85. }
  86. });
  87. this.sendToGroup = (groupID, message) => new Promise((resolve, reject) => {
  88. this.enqueue('group', groupID, () => this.bot.sendMessage(groupID, message).then(resolve).catch(reject));
  89. });
  90. this.sendToUser = (userID, message) => new Promise((resolve, reject) => {
  91. this.enqueue('private', userID, () => this.bot.sendPrivateMessage(userID, message).then(resolve).catch(reject));
  92. });
  93. this.sendTo = (subscriber, messageChain, noErrors = false) => Promise.all((splitted => [splitted.message, ...splitted.attachments])(exports.Message.separateAttachment(messageChain)).map(msg => {
  94. switch (subscriber.chatType) {
  95. case 'group':
  96. return this.sendToGroup(subscriber.chatID.toString(), msg);
  97. case 'private':
  98. return this.sendToUser(subscriber.chatID.toString(), msg);
  99. case 'temp':
  100. return this.sendToUser(subscriber.chatID.qq.toString(), msg);
  101. }
  102. }))
  103. .then(response => {
  104. if (response === undefined)
  105. return;
  106. logger.info(`pushing data to ${JSON.stringify(subscriber.chatID)} was successful, response: ${response}`);
  107. })
  108. .catch(reason => {
  109. logger.error(exports.Message.ellipseBase64(`error pushing data to ${JSON.stringify(subscriber.chatID)}, reason: ${reason}`));
  110. if (!noErrors)
  111. throw reason instanceof Error ? reason : Error(reason);
  112. });
  113. this.initBot = () => {
  114. this.app = new koishi_1.App({
  115. type: 'onebot',
  116. server: `ws://${this.botInfo.host}:${this.botInfo.port}`,
  117. selfId: this.botInfo.bot_id.toString(),
  118. token: this.botInfo.access_token,
  119. axiosConfig: {
  120. maxContentLength: Infinity,
  121. },
  122. processMessage: msg => msg.trim(),
  123. });
  124. this.app.on('friend-request', (session) => __awaiter(this, void 0, void 0, function* () {
  125. const userString = `${session.username}(${session.userId})`;
  126. let groupId;
  127. let groupString;
  128. if (session.username in this.tempSenders)
  129. groupId = this.tempSenders[session.userId].toString();
  130. logger.debug(`detected new friend request event: ${userString}`);
  131. return session.bot.getGroupList().then(groupList => {
  132. if (groupList.some(groupItem => {
  133. const test = groupItem.groupId === groupId;
  134. if (test)
  135. groupString = `${groupItem.groupName}(${groupId})`;
  136. return test;
  137. })) {
  138. return session.bot.handleFriendRequest(session.messageId, true)
  139. .then(() => { logger.info(`accepted friend request from ${userString} (from group ${groupString})`); })
  140. .catch(error => { logger.error(`error accepting friend request from ${userString}, error: ${error}`); });
  141. }
  142. utils_1.chainPromises(groupList.map(groupItem => (done) => Promise.resolve(done ||
  143. this.bot.getGroupMember(groupItem.groupId, session.userId).then(() => {
  144. groupString = `${groupItem.groupName}(${groupItem.groupId})`;
  145. return session.bot.handleFriendRequest(session.messageId, true)
  146. .then(() => { logger.info(`accepted friend request from ${userString} (found in group ${groupString})`); })
  147. .catch(error => { logger.error(`error accepting friend request from ${userString}, error: ${error}`); })
  148. .then(() => true);
  149. }).catch(() => false)))).then(done => {
  150. if (done)
  151. return;
  152. logger.warn(`received friend request from ${userString} (stranger)`);
  153. logger.warn('please manually accept this friend request');
  154. });
  155. });
  156. }));
  157. this.app.on('group-request', (session) => __awaiter(this, void 0, void 0, function* () {
  158. const userString = `${session.username}(${session.userId})`;
  159. const groupString = `${session.groupName}(${session.groupId})`;
  160. logger.debug(`detected group invitation event: ${groupString}}`);
  161. return session.bot.getFriendList().then(friendList => {
  162. if (friendList.some(friendItem => friendItem.userId = session.userId)) {
  163. return session.bot.handleGroupRequest(session.messageId, true)
  164. .then(() => { logger.info(`accepted group invitation from ${userString} (friend)`); })
  165. .catch(error => { logger.error(`error accepting group invitation from ${userString}, error: ${error}`); });
  166. }
  167. logger.warn(`received group invitation from ${userString} (stranger)`);
  168. logger.warn('please manually accept this group invitation');
  169. });
  170. }));
  171. this.app.middleware((session) => __awaiter(this, void 0, void 0, function* () {
  172. const chat = yield this.getChat(session);
  173. const cmdObj = command_1.parseCmd(session.content);
  174. const reply = (msg) => __awaiter(this, void 0, void 0, function* () {
  175. const userString = `${session.username}(${session.userId})`;
  176. return (chat.chatType === "group" ? this.sendToGroup : this.sendToUser)(chat.chatID.toString(), msg)
  177. .catch(error => { logger.error(`error replying to message from ${userString}, error: ${error}`); });
  178. });
  179. switch (cmdObj.cmd) {
  180. case 'twitter_view':
  181. case 'twitter_get':
  182. command_1.view(chat, cmdObj.args, reply);
  183. break;
  184. case 'twitter_query':
  185. case 'twitter_gettimeline':
  186. command_1.query(chat, cmdObj.args, reply);
  187. break;
  188. case 'twitter_sub':
  189. case 'twitter_subscribe':
  190. this.botInfo.sub(chat, cmdObj.args, reply);
  191. break;
  192. case 'twitter_unsub':
  193. case 'twitter_unsubscribe':
  194. this.botInfo.unsub(chat, cmdObj.args, reply);
  195. break;
  196. case 'ping':
  197. case 'twitter':
  198. this.botInfo.list(chat, cmdObj.args, reply);
  199. break;
  200. case 'help':
  201. if (cmdObj.args.length === 0) {
  202. reply(`推特搬运机器人:
  203. /twitter - 查询当前聊天中的推文订阅
  204. /twitter_sub[scribe]〈链接|用户名〉- 订阅 Twitter 推文搬运
  205. /twitter_unsub[scribe]〈链接|用户名〉- 退订 Twitter 推文搬运
  206. /twitter_view〈链接〉- 查看推文
  207. /twitter_query〈链接|用户名〉[参数列表...] - 查询时间线(详见 /help twitter_query)\
  208. ${chat.chatType === "temp" ?
  209. '\n(当前游客模式下无法使用订阅功能,请先添加本账号为好友。)' : ''}`);
  210. }
  211. else if (cmdObj.args[0] === 'twitter_query') {
  212. reply(`查询时间线中的推文:
  213. /twitter_query〈链接|用户名〉[〈参数 1〉=〈值 1〉〈参数 2〉=〈值 2〉...]
  214. 参数列表(方框内全部为可选,留空则为默认):
  215. count:查询数量上限(类型:非零整数,最大值正负 50)[默认值:10]
  216. since:查询起始点(类型:正整数或日期)[默认值:(空,无限过去)]
  217. until:查询结束点(类型:正整数或日期)[默认值:(空,当前时刻)]
  218. noreps 忽略回复推文(类型:on/off)[默认值:on(是)]
  219. norts:忽略原生转推(类型:on/off)[默认值:off(否)]`)
  220. .then(() => reply(`\
  221. 起始点和结束点为正整数时取推特推文编号作为比较基准,否则会尝试作为日期读取。
  222. 推荐的日期格式:2012-12-22 12:22 UTC+2 (日期和时间均为可选,可分别添加)
  223. count 为正时,从新向旧查询;为负时,从旧向新查询
  224. count 与 since/until 并用时,取二者中实际查询结果较少者
  225. 例子:/twitter_query RiccaTachibana count=5 since="2019-12-30\
  226. UTC+9" until="2020-01-06 UTC+8" norts=on
  227. 从起始时间点(含)到结束时间点(不含)从新到旧获取最多 5 条推文,\
  228. 其中不包含原生转推(实际上用户只发了 1 条)`));
  229. }
  230. }
  231. }), true);
  232. };
  233. this.listen = (logMsg = 'connecting to bot provider...') => __awaiter(this, void 0, void 0, function* () {
  234. logger.warn(logMsg);
  235. try {
  236. yield this.app.start();
  237. }
  238. catch (err) {
  239. logger.error(`error connecting to bot provider at ${this.app.options.server}, will retry in 2.5s...`);
  240. yield koishi_1.sleep(2500);
  241. yield this.listen('retry connecting...');
  242. }
  243. });
  244. this.connect = () => __awaiter(this, void 0, void 0, function* () {
  245. this.initBot();
  246. yield this.listen();
  247. this.bot = this.app.getBot('onebot');
  248. });
  249. logger.warn(`Initialized koishi on ${opt.host}:${opt.port} with access_token ${opt.access_token}`);
  250. this.botInfo = opt;
  251. }
  252. }
  253. exports.default = default_1;
  254. //# sourceMappingURL=koishi.js.map