koishi-plugin-soup
Version:
66 lines (64 loc) • 2.72 kB
JavaScript
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
var __export = (target, all) => {
for (var name2 in all)
__defProp(target, name2, { get: all[name2], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
// src/index.ts
var src_exports = {};
__export(src_exports, {
Config: () => Config,
apply: () => apply,
name: () => name
});
module.exports = __toCommonJS(src_exports);
var import_koishi = require("koishi");
var name = "soup";
var Config = import_koishi.Schema.object({
SoupReplyquote: import_koishi.Schema.boolean().default(true).description("是否在回复时引用用户消息")
});
function apply(ctx, config) {
const jt = "68747470733a2f2f6170692e61796672652e636f6d2f6a743f747970653d6b6f69736869267665723d312e302e30";
const djt = "68747470733a2f2f6170692e61796672652e636f6d2f646a743f747970653d6b6f69736869267665723d312e302e30";
ctx.middleware(async (session, next) => {
if (!session.guildId || !/^\d+$/.test(session.guildId) || !["qq", "onebot"].includes(session.platform)) return next();
if (session.content === "鸡汤") {
try {
const res = await ctx.http.get(Buffer.from(jt, "hex").toString());
if (res.includes("wwwroot") || res.includes("html") || res.length === 1) return;
return (config.SoupReplyquote ? (0, import_koishi.h)("quote", { id: session.messageId }) : "") + res;
} catch (error) {
ctx.logger("soup").warn("Server connection failed.");
}
}
if (session.content === "毒鸡汤") {
try {
const res = await ctx.http.get(Buffer.from(djt, "hex").toString());
if (res.includes("wwwroot") || res.includes("html") || res.length === 1) return;
return (config.SoupReplyquote ? (0, import_koishi.h)("quote", { id: session.messageId }) : "") + res;
} catch (error) {
ctx.logger("soup").warn("Server connection failed.");
}
}
return next();
});
}
__name(apply, "apply");
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
Config,
apply,
name
});