import settings from '../../lib/settings.js'; export async function setDefaultDevice() { this.setContext('toSetDefaultDevice'); await this.reply( `请发送默认设备信息,或者发送“取消”取消设置默认设备信息`, false, { at: true, recallMsg: 100 } ); } export async function toSetDefaultDevice() { const msg = this.e.msg.trim(); if (!msg) { this.reply('请发送设备信息', false, { at: true, recallMsg: 100 }); return false; } if (msg.includes('取消')) { await this.reply('已取消', false, { at: true, recallMsg: 100 }); this.finish('toSetDefaultDevice'); return false; } try { const info = JSON.parse(msg); if (!info) { this.reply('设备信息格式错误', false, { at: true, recallMsg: 100 }); return false; } if ( !info?.deviceName || !info?.deviceBoard || !info?.deviceModel || !info?.oaid || !info?.deviceFingerprint || !info?.deviceProduct ) { this.reply('设备信息格式错误', false, { at: true, recallMsg: 100 }); return false; } settings.setConfig('device', { productName: info.deviceProduct, productType: info.deviceName, modelName: info.deviceModel, oaid: info.oaid, deviceInfo: info.deviceFingerprint, board: info.deviceBoard, }); this.reply('默认设备信息设置成功', false, { at: true, recallMsg: 100 }); } catch (error) { this.reply('设备信息格式错误', false, { at: true, recallMsg: 100 }); } finally { this.finish('toSetDefaultDevice'); } }