koishi-plugin-wws-kokomi
Version:
战舰世界水表插件,简单调用了 kokomi 的接口
72 lines (70 loc) • 2.35 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,
inject: () => inject,
name: () => name
});
module.exports = __toCommonJS(src_exports);
var import_koishi = require("koishi");
var name = "wws-kokomi";
var inject = ["http"];
var defaultUrl = "http://43.133.59.53:8000/bot/";
var defaultToken = "user";
var Config = import_koishi.Schema.object({
url: import_koishi.Schema.string().default(defaultUrl).description("kokomi 的请求地址。"),
token: import_koishi.Schema.string().default(defaultToken).description("kokomi 的请求 Token")
});
function apply(ctx) {
ctx.command("wws [...args]").action(async ({ session }, ...args) => {
const res = await ctx.http.get(defaultUrl, {
params: {
token: defaultToken,
user_id: session.event.user.id,
message: args.length < 1 ? "me" : args.map((arg) => {
if (arg.includes(" ")) {
return `'${arg}'`;
}
return arg;
}).join(" "),
platform: "qq_bot",
platform_id: "123456",
channel_id: "123456"
}
});
if (res.type === "msg") {
return res.msg;
}
if (res.type === "img") {
return (0, import_koishi.h)("img", { src: res.img });
}
return "未知消息类型";
});
}
__name(apply, "apply");
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
Config,
apply,
inject,
name
});