2
0
mirror of https://github.com/ctrlcvs/xiaoyao-cvs-plugin.git synced 2024-12-23 03:20:52 +08:00
xiaoyao-cvs-plugin/adapter/index.js
2022-09-18 22:34:09 +08:00

57 lines
1.3 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import plugin from '../../../lib/plugins/plugin.js'
import * as Atlas from '../apps/index.js'
import { render } from './render.js'
import { checkAuth, getMysApi } from './mys.js'
export class atlas extends plugin {
constructor (e) {
let rule = {
reg: '.+',
fnc: 'dispatch'
}
let event=e?.event || e?.sub_type
super({
name: 'xiaoyao-cvs-plugin',
desc: '图鉴插件',
event: event === 'poke' ? 'notice.*.poke' : 'message',
priority: 50,
rule: [rule],
})
Object.defineProperty(rule, 'log', {
get: () => !!this.isDispatch
})
}
accept () {
if(this.event==='notice.*.poke'){
this.e.msg = '#poke#'
}
this.e.original_msg = this.e.original_msg || this.e.msg
}
async dispatch (e) {
let msg = e.original_msg || ''
if (!msg) {
return false
}
e.checkAuth = async function (cfg) {
return await checkAuth(e, cfg)
}
e.getMysApi = async function (cfg) {
return await getMysApi(e, cfg)
}
msg = '#' + msg.replace(/#|/, '').trim()
for (let fn in Atlas.rule) {
let cfg = Atlas.rule[fn]
if (Atlas[fn] && new RegExp(cfg.reg).test(msg)) {
let ret = await Atlas[fn](e, {
render
})
if (ret === true) {
return true
}
}
}
return false
}
}