Compare commits

..

4 Commits

Author SHA1 Message Date
smallfawn
9360acb49e F 2025-03-09 21:38:09 +08:00
smallfawn
c542fd91b2 FIX BUG 2025-03-09 21:12:35 +08:00
smallfawn
ad512729ea Update bawangchaji.js 2025-03-09 21:08:23 +08:00
smallfawn
ca57772d6d 修复通知 2025-03-09 21:01:13 +08:00
9 changed files with 233 additions and 254 deletions

2
dw.js

File diff suppressed because one or more lines are too long

View File

@ -205,20 +205,17 @@ function Env(t, s) {
} }
async sendMsg() { async sendMsg() {
this.log("==============📣Center 通知📣==============") this.log("==============📣Center 通知📣==============")
for (let item of this.notifyStr) { for (let i = 0; i < this.notifyStr.length; i++) {
if (Object.prototype.toString.call(item) === '[object Object]') { if (Object.prototype.toString.call(this.notifyStr[i]) === '[object Object]' ||
item = JSON.stringify(item) Object.prototype.toString.call(this.notifyStr[i]) === '[object Array]') {
} this.notifyStr[i] = JSON.stringify(this.notifyStr[i]);
if (Object.prototype.toString.call(arg) === '[object Array]') {
item = JSON.stringify(item)
} }
} }
let message = this.notifyStr.join(this.logSeparator); let message = this.notifyStr.join(this.logSeparator);
if (this.isNode()) { if (this.isNode()) {
await notify.sendNotify(this.name, message); await notify.sendNotify(this.name, message);
} else { } else {
} }
} }
isNode() { isNode() {
@ -320,8 +317,8 @@ function Env(t, s) {
wait(t) { wait(t) {
return new Promise((s) => setTimeout(s, t)); return new Promise((s) => setTimeout(s, t));
} }
done(t = {}) { async done(t = {}) {
this.sendMsg(); await this.sendMsg();
const s = new Date().getTime(), const s = new Date().getTime(),
e = (s - this.startTime) / 1e3; e = (s - this.startTime) / 1e3;
this.log( this.log(

View File

@ -529,7 +529,7 @@ function _0x2fbb6b(_0x5a60f2) {
const _0x3608c4 = { const _0x3608c4 = {
"notify": true "notify": true
}; };
this.log("未找到变量,请检查变量" + _0x25b427.map(_0x357aa2 => "[" + _0x357aa2 + "]").join("或"), _0x3608c4); console.log("未找到变量,请检查变量" + _0x25b427.map(_0x357aa2 => "[" + _0x357aa2 + "]").join("或"), _0x3608c4);
return false; return false;
} }
this.log("共找到" + this.userCount + "个账号"); this.log("共找到" + this.userCount + "个账号");

View File

@ -248,20 +248,17 @@ function Env(t, s) {
} }
async sendMsg() { async sendMsg() {
this.log("==============📣Center 通知📣==============") this.log("==============📣Center 通知📣==============")
for (let item of this.notifyStr) { for (let i = 0; i < this.notifyStr.length; i++) {
if (Object.prototype.toString.call(item) === '[object Object]') { if (Object.prototype.toString.call(this.notifyStr[i]) === '[object Object]' ||
item = JSON.stringify(item) Object.prototype.toString.call(this.notifyStr[i]) === '[object Array]') {
} this.notifyStr[i] = JSON.stringify(this.notifyStr[i]);
if (Object.prototype.toString.call(arg) === '[object Array]') {
item = JSON.stringify(item)
} }
} }
let message = this.notifyStr.join(this.logSeparator); let message = this.notifyStr.join(this.logSeparator);
if (this.isNode()) { if (this.isNode()) {
await notify.sendNotify(this.name, message); await notify.sendNotify(this.name, message);
} else { } else {
} }
} }
isNode() { isNode() {
@ -363,8 +360,8 @@ function Env(t, s) {
wait(t) { wait(t) {
return new Promise((s) => setTimeout(s, t)); return new Promise((s) => setTimeout(s, t));
} }
done(t = {}) { async done(t = {}) {
this.sendMsg(); await this.sendMsg();
const s = new Date().getTime(), const s = new Date().getTime(),
e = (s - this.startTime) / 1e3; e = (s - this.startTime) / 1e3;
this.log( this.log(

View File

@ -189,20 +189,17 @@ function Env(t, s) {
} }
async sendMsg() { async sendMsg() {
this.log("==============📣Center 通知📣==============") this.log("==============📣Center 通知📣==============")
for (let item of this.notifyStr) { for (let i = 0; i < this.notifyStr.length; i++) {
if (Object.prototype.toString.call(item) === '[object Object]') { if (Object.prototype.toString.call(this.notifyStr[i]) === '[object Object]' ||
item = JSON.stringify(item) Object.prototype.toString.call(this.notifyStr[i]) === '[object Array]') {
} this.notifyStr[i] = JSON.stringify(this.notifyStr[i]);
if (Object.prototype.toString.call(arg) === '[object Array]') {
item = JSON.stringify(item)
} }
} }
let message = this.notifyStr.join(this.logSeparator); let message = this.notifyStr.join(this.logSeparator);
if (this.isNode()) { if (this.isNode()) {
await notify.sendNotify(this.name, message); await notify.sendNotify(this.name, message);
} else { } else {
} }
} }
isNode() { isNode() {
@ -304,8 +301,8 @@ function Env(t, s) {
wait(t) { wait(t) {
return new Promise((s) => setTimeout(s, t)); return new Promise((s) => setTimeout(s, t));
} }
done(t = {}) { async done(t = {}) {
this.sendMsg(); await this.sendMsg();
const s = new Date().getTime(), const s = new Date().getTime(),
e = (s - this.startTime) / 1e3; e = (s - this.startTime) / 1e3;
this.log( this.log(

View File

@ -164,20 +164,17 @@ function Env(t, s) {
} }
async sendMsg() { async sendMsg() {
this.log("==============📣Center 通知📣==============") this.log("==============📣Center 通知📣==============")
for (let item of this.notifyStr) { for (let i = 0; i < this.notifyStr.length; i++) {
if (Object.prototype.toString.call(item) === '[object Object]') { if (Object.prototype.toString.call(this.notifyStr[i]) === '[object Object]' ||
item = JSON.stringify(item) Object.prototype.toString.call(this.notifyStr[i]) === '[object Array]') {
} this.notifyStr[i] = JSON.stringify(this.notifyStr[i]);
if (Object.prototype.toString.call(arg) === '[object Array]') {
item = JSON.stringify(item)
} }
} }
let message = this.notifyStr.join(this.logSeparator); let message = this.notifyStr.join(this.logSeparator);
if (this.isNode()) { if (this.isNode()) {
await notify.sendNotify(this.name, message); await notify.sendNotify(this.name, message);
} else { } else {
} }
} }
isNode() { isNode() {
@ -279,8 +276,8 @@ function Env(t, s) {
wait(t) { wait(t) {
return new Promise((s) => setTimeout(s, t)); return new Promise((s) => setTimeout(s, t));
} }
done(t = {}) { async done(t = {}) {
this.sendMsg(); await this.sendMsg();
const s = new Date().getTime(), const s = new Date().getTime(),
e = (s - this.startTime) / 1e3; e = (s - this.startTime) / 1e3;
this.log( this.log(

View File

@ -167,20 +167,17 @@ function Env(t, s) {
} }
async sendMsg() { async sendMsg() {
this.log("==============📣Center 通知📣==============") this.log("==============📣Center 通知📣==============")
for (let item of this.notifyStr) { for (let i = 0; i < this.notifyStr.length; i++) {
if (Object.prototype.toString.call(item) === '[object Object]') { if (Object.prototype.toString.call(this.notifyStr[i]) === '[object Object]' ||
item = JSON.stringify(item) Object.prototype.toString.call(this.notifyStr[i]) === '[object Array]') {
} this.notifyStr[i] = JSON.stringify(this.notifyStr[i]);
if (Object.prototype.toString.call(arg) === '[object Array]') {
item = JSON.stringify(item)
} }
} }
let message = this.notifyStr.join(this.logSeparator); let message = this.notifyStr.join(this.logSeparator);
if (this.isNode()) { if (this.isNode()) {
await notify.sendNotify(this.name, message); await notify.sendNotify(this.name, message);
} else { } else {
} }
} }
isNode() { isNode() {
@ -282,8 +279,8 @@ function Env(t, s) {
wait(t) { wait(t) {
return new Promise((s) => setTimeout(s, t)); return new Promise((s) => setTimeout(s, t));
} }
done(t = {}) { async done(t = {}) {
this.sendMsg(); await this.sendMsg();
const s = new Date().getTime(), const s = new Date().getTime(),
e = (s - this.startTime) / 1e3; e = (s - this.startTime) / 1e3;
this.log( this.log(

View File

@ -194,20 +194,17 @@ function Env(t, s) {
} }
async sendMsg() { async sendMsg() {
this.log("==============📣Center 通知📣==============") this.log("==============📣Center 通知📣==============")
for (let item of this.notifyStr) { for (let i = 0; i < this.notifyStr.length; i++) {
if (Object.prototype.toString.call(item) === '[object Object]') { if (Object.prototype.toString.call(this.notifyStr[i]) === '[object Object]' ||
item = JSON.stringify(item) Object.prototype.toString.call(this.notifyStr[i]) === '[object Array]') {
} this.notifyStr[i] = JSON.stringify(this.notifyStr[i]);
if (Object.prototype.toString.call(arg) === '[object Array]') {
item = JSON.stringify(item)
} }
} }
let message = this.notifyStr.join(this.logSeparator); let message = this.notifyStr.join(this.logSeparator);
if (this.isNode()) { if (this.isNode()) {
await notify.sendNotify(this.name, message); await notify.sendNotify(this.name, message);
} else { } else {
} }
} }
isNode() { isNode() {
@ -309,8 +306,8 @@ function Env(t, s) {
wait(t) { wait(t) {
return new Promise((s) => setTimeout(s, t)); return new Promise((s) => setTimeout(s, t));
} }
done(t = {}) { async done(t = {}) {
this.sendMsg(); await this.sendMsg();
const s = new Date().getTime(), const s = new Date().getTime(),
e = (s - this.startTime) / 1e3; e = (s - this.startTime) / 1e3;
this.log( this.log(

View File

@ -102,20 +102,17 @@ function Env(t, s) {
} }
async sendMsg() { async sendMsg() {
this.log("==============📣Center 通知📣==============") this.log("==============📣Center 通知📣==============")
for (let item of this.notifyStr) { for (let i = 0; i < this.notifyStr.length; i++) {
if (Object.prototype.toString.call(item) === '[object Object]') { if (Object.prototype.toString.call(this.notifyStr[i]) === '[object Object]' ||
item = JSON.stringify(item) Object.prototype.toString.call(this.notifyStr[i]) === '[object Array]') {
} this.notifyStr[i] = JSON.stringify(this.notifyStr[i]);
if (Object.prototype.toString.call(arg) === '[object Array]') {
item = JSON.stringify(item)
} }
} }
let message = this.notifyStr.join(this.logSeparator); let message = this.notifyStr.join(this.logSeparator);
if (this.isNode()) { if (this.isNode()) {
await notify.sendNotify(this.name, message); await notify.sendNotify(this.name, message);
} else { } else {
} }
} }
isNode() { isNode() {
@ -217,8 +214,8 @@ function Env(t, s) {
wait(t) { wait(t) {
return new Promise((s) => setTimeout(s, t)); return new Promise((s) => setTimeout(s, t));
} }
done(t = {}) { async done(t = {}) {
this.sendMsg(); await this.sendMsg();
const s = new Date().getTime(), const s = new Date().getTime(),
e = (s - this.startTime) / 1e3; e = (s - this.startTime) / 1e3;
this.log( this.log(