mirror of
https://github.com/ZZZure/ZZZ-Plugin.git
synced 2025-12-15 12:47:48 +00:00
38 lines
1,018 B
JavaScript
38 lines
1,018 B
JavaScript
import { ZZZPlugin } from '../lib/plugin.js';
|
|
import { ZZZNoteResp } from '../model/note.js';
|
|
import settings from '../lib/settings.js';
|
|
import _ from 'lodash';
|
|
import { rulePrefix } from '../lib/common.js';
|
|
|
|
export class Note extends ZZZPlugin {
|
|
constructor() {
|
|
super({
|
|
name: '[ZZZ-Plugin]Note',
|
|
dsc: 'zzznote',
|
|
event: 'message',
|
|
priority: _.get(settings.getConfig('priority'), 'note', 70),
|
|
rule: [
|
|
{
|
|
reg: `${rulePrefix}(note|每日|体力|便笺|便签)$`,
|
|
fnc: 'note',
|
|
},
|
|
],
|
|
});
|
|
}
|
|
async note() {
|
|
const { api, deviceFp } = await this.getAPI();
|
|
await this.getPlayerInfo();
|
|
const noteResponse = await api.getFinalData('zzzNote', {
|
|
deviceFp,
|
|
}).catch(e => {
|
|
this.reply(e.message);
|
|
throw e;
|
|
});
|
|
if (!noteResponse) return false;
|
|
const noteData = new ZZZNoteResp(noteResponse);
|
|
const finalData = {
|
|
note: noteData,
|
|
};
|
|
await this.render('note/index.html', finalData);
|
|
}
|
|
}
|