From 20be84b352f075f76747eb2ffd5b5072373e0b88 Mon Sep 17 00:00:00 2001 From: whyour Date: Sun, 5 May 2024 18:58:15 +0800 Subject: [PATCH] =?UTF-8?q?=E9=87=8D=E6=9E=84=20JavaScript=20=E8=84=9A?= =?UTF-8?q?=E6=9C=AC=E9=80=9A=E7=9F=A5=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sample/config.sample.sh | 20 +- sample/notify.js | 773 +++++++++++++++------------------------- sample/notify.py | 2 +- 3 files changed, 315 insertions(+), 480 deletions(-) diff --git a/sample/config.sample.sh b/sample/config.sample.sh index f352d0bb..543da592 100644 --- a/sample/config.sample.sh +++ b/sample/config.sample.sh @@ -56,6 +56,12 @@ export BARK_ICON="https://qn.whyour.cn/logo.png" export BARK_SOUND="" ## 下方填写推送消息分组,默认为"QingLong" export BARK_GROUP="QingLong" +## bark 推送时效性 +export BARK_LEVEL="active" +## bark 推送是否存档 +export BARK_ARCHIVE="" +## bark 推送跳转 URL +export BARK_URL="" ## 3. Telegram ## 下方填写自己申请@BotFather的Token,如10xxx4:AAFcqxxxxgER5uw @@ -172,7 +178,19 @@ export SMTP_NAME="" ## PUSHME_KEY (必填)填写PushMe APP上获取的push_key export PUSHME_KEY="" -## 15. 自定义通知 +## 16. 飞书机器人 +## 官方文档:https://www.feishu.cn/hc/zh-CN/articles/360024984973 +## FSKEY 飞书机器人的 FSKEY +export FSKEY="" + +## 17. Qmsg酱 +## 官方文档:https://qmsg.zendee.cn/docs/api/ +## qmsg 酱的 QMSG_KEY +## qmsg 酱的 QMSG_TYPE send 为私聊,group 为群聊 +export QMSG_KEY="" +export QMSG_TYPE="" + +## 18. 自定义通知 ## 自定义通知 接收回调的URL export WEBHOOK_URL="" ## WEBHOOK_BODY 和 WEBHOOK_HEADERS 多个参数时,直接换行或者使用 $'\n' 连接多行字符串,比如 export dd="line 1"$'\n'"line 2" diff --git a/sample/notify.js b/sample/notify.js index 0d587043..2783118e 100644 --- a/sample/notify.js +++ b/sample/notify.js @@ -1,399 +1,149 @@ -/* - * @Author: lxk0301 https://gitee.com/lxk0301 - * @Date: 2020-08-19 16:12:40 - * @Last Modified by: whyour - * @Last Modified time: 2021-5-1 15:00:54 - * sendNotify 推送通知功能 - * @param text 通知头 - * @param desp 通知体 - * @param params 某些推送通知方式点击弹窗可跳转, 例:{ url: 'https://abc.com' } - * @param author 作者仓库等信息 例:`本通知 By:https://github.com/whyour/qinglong` - */ - -const querystring = require('querystring'); +const querystring = require('node:querystring'); const got = require('got'); -const $ = new Env(); -const timeout = 15000; // 超时时间(单位毫秒) -// =======================================gotify通知设置区域============================================== -// gotify_url 填写gotify地址,如https://push.example.de:8080 -// gotify_token 填写gotify的消息应用token -// gotify_priority 填写推送消息优先级,默认为0 -let GOTIFY_URL = ''; -let GOTIFY_TOKEN = ''; -let GOTIFY_PRIORITY = 0; -// =======================================go-cqhttp通知设置区域=========================================== -// gobot_url 填写请求地址http://127.0.0.1/send_private_msg -// gobot_token 填写在go-cqhttp文件设置的访问密钥 -// gobot_qq 填写推送到个人QQ或者QQ群号 -// go-cqhttp相关API https://docs.go-cqhttp.org/api -let GOBOT_URL = ''; // 推送到个人QQ: http://127.0.0.1/send_private_msg 群:http://127.0.0.1/send_group_msg -let GOBOT_TOKEN = ''; // 访问密钥 -let GOBOT_QQ = ''; // 如果GOBOT_URL设置 /send_private_msg 则需要填入 user_id=个人QQ 相反如果是 /send_group_msg 则需要填入 group_id=QQ群 +const timeout = 15000; -// =======================================微信server酱通知设置区域=========================================== -// 此处填你申请的SCKEY. -// (环境变量名 PUSH_KEY) -let SCKEY = ''; +const push_config = { + HITOKOTO: true, // 启用一言(随机句子) -// =======================================PushDeer通知设置区域=========================================== -// 此处填你申请的PushDeer KEY. -// (环境变量名 DEER_KEY) -let PUSHDEER_KEY = ''; -let PUSHDEER_URL = ''; + BARK_PUSH: '', // bark IP 或设备码,例:https://api.day.app/DxHcxxxxxRxxxxxxcm/ + BARK_ARCHIVE: '', // bark 推送是否存档 + BARK_GROUP: '', // bark 推送分组 + BARK_SOUND: '', // bark 推送声音 + BARK_ICON: '', // bark 推送图标 + BARK_LEVEL: '', // bark 推送时效性 + BARK_URL: '', // bark 推送跳转URL -// =======================================Synology Chat通知设置区域=========================================== -// 此处填你申请的CHAT_URL与CHAT_TOKEN -// (环境变量名 CHAT_URL CHAT_TOKEN) -let CHAT_URL = ''; -let CHAT_TOKEN = ''; + DD_BOT_SECRET: '', // 钉钉机器人的 DD_BOT_SECRET + DD_BOT_TOKEN: '', // 钉钉机器人的 DD_BOT_TOKEN -// =======================================Bark App通知设置区域=========================================== -// 此处填你BarkAPP的信息(IP/设备码,例如:https://api.day.app/XXXXXXXX) -let BARK_PUSH = ''; -// BARK app推送图标,自定义推送图标(需iOS15或以上) -let BARK_ICON = 'https://qn.whyour.cn/logo.png'; -// BARK app推送铃声,铃声列表去APP查看复制填写 -let BARK_SOUND = ''; -// BARK app推送消息的分组, 默认为"QingLong" -let BARK_GROUP = 'QingLong'; -// BARK app推送消息的时效性, 默认为"active" -let BARK_LEVEL = 'active'; -// BARK app推送消息的跳转URL -let BARK_URL = ''; + FSKEY: '', // 飞书机器人的 FSKEY -// =======================================telegram机器人通知设置区域=========================================== -// 此处填你telegram bot 的Token,telegram机器人通知推送必填项.例如:1077xxx4424:AAFjv0FcqxxxxxxgEMGfi22B4yh15R5uw -// (环境变量名 TG_BOT_TOKEN) -let TG_BOT_TOKEN = ''; -// 此处填你接收通知消息的telegram用户的id,telegram机器人通知推送必填项.例如:129xxx206 -// (环境变量名 TG_USER_ID) -let TG_USER_ID = ''; -// tg推送HTTP代理设置(不懂可忽略,telegram机器人通知推送功能中非必填) -let TG_PROXY_HOST = ''; // 例如:127.0.0.1(环境变量名:TG_PROXY_HOST) -let TG_PROXY_PORT = ''; // 例如:1080(环境变量名:TG_PROXY_PORT) -let TG_PROXY_AUTH = ''; // tg代理配置认证参数 -// Telegram api自建的反向代理地址(不懂可忽略,telegram机器人通知推送功能中非必填),默认tg官方api(环境变量名:TG_API_HOST) -let TG_API_HOST = 'https://api.telegram.org'; -// =======================================钉钉机器人通知设置区域=========================================== -// 此处填你钉钉 bot 的webhook,例如:5a544165465465645d0f31dca676e7bd07415asdasd -// (环境变量名 DD_BOT_TOKEN) -let DD_BOT_TOKEN = ''; -// 密钥,机器人安全设置页面,加签一栏下面显示的SEC开头的字符串 -let DD_BOT_SECRET = ''; + // 推送到个人QQ:http://127.0.0.1/send_private_msg + // 群:http://127.0.0.1/send_group_msg + GOBOT_URL: '', // go-cqhttp + // 推送到个人QQ 填入 user_id=个人QQ + // 群 填入 group_id=QQ群 + GOBOT_QQ: '', // go-cqhttp 的推送群或用户 + GOBOT_TOKEN: '', // go-cqhttp 的 access_token -// =======================================企业微信基础设置=========================================== -// 企业微信反向代理地址 -// (环境变量名 QYWX_ORIGIN) -let QYWX_ORIGIN = ''; -// =======================================企业微信机器人通知设置区域=========================================== -// 此处填你企业微信机器人的 webhook(详见文档 https://work.weixin.qq.com/api/doc/90000/90136/91770),例如:693a91f6-7xxx-4bc4-97a0-0ec2sifa5aaa -// (环境变量名 QYWX_KEY) -let QYWX_KEY = ''; + GOTIFY_URL: '', // gotify地址,如https://push.example.de:8080 + GOTIFY_TOKEN: '', // gotify的消息应用token + GOTIFY_PRIORITY: 0, // 推送消息优先级,默认为0 -// =======================================企业微信应用消息通知设置区域=========================================== -/* - 此处填你企业微信应用消息的值(详见文档 https://work.weixin.qq.com/api/doc/90000/90135/90236) - 环境变量名 QYWX_AM依次填入 corpid,corpsecret,touser(注:多个成员ID使用|隔开),agentid,消息类型(选填,不填默认文本消息类型) - 注意用,号隔开(英文输入法的逗号),例如:wwcff56746d9adwers,B-791548lnzXBE6_BWfxdf3kSTMJr9vFEPKAbh6WERQ,mingcheng,1000001,2COXgjH2UIfERF2zxrtUOKgQ9XklUqMdGSWLBoW_lSDAdafat - 可选推送消息类型(推荐使用图文消息(mpnews)): - - 文本卡片消息: 0 (数字零) - - 文本消息: 1 (数字一) - - 图文消息(mpnews): 素材库图片id, 可查看此教程(http://note.youdao.com/s/HMiudGkb)或者(https://note.youdao.com/ynoteshare1/index.html?id=1a0c8aff284ad28cbd011b29b3ad0191&type=note) - */ -let QYWX_AM = ''; + IGOT_PUSH_KEY: '', // iGot 聚合推送的 IGOT_PUSH_KEY,例如:https://push.hellyw.com/XXXXXXXX -// =======================================iGot聚合推送通知设置区域=========================================== -// 此处填您iGot的信息(推送key,例如:https://push.hellyw.com/XXXXXXXX) -let IGOT_PUSH_KEY = ''; + PUSH_KEY: '', // server 酱的 PUSH_KEY,兼容旧版与 Turbo 版 -// =======================================push+设置区域======================================= -// 官方文档:http://www.pushplus.plus/ -// PUSH_PLUS_TOKEN:微信扫码登录后一对一推送或一对多推送下面的token(您的Token),不提供PUSH_PLUS_USER则默认为一对一推送 -// PUSH_PLUS_USER: 一对多推送的“群组编码”(一对多推送下面->您的群组(如无则新建)->群组编码,如果您是创建群组人。也需点击“查看二维码”扫描绑定,否则不能接受群组消息推送) -let PUSH_PLUS_TOKEN = ''; -let PUSH_PLUS_USER = ''; + DEER_KEY: '', // PushDeer 的 PUSHDEER_KEY + DEER_URL: '', // PushDeer 的 PUSHDEER_URL -// =======================================智能微秘书设置区域======================================= -// 官方文档:http://wechat.aibotk.com/docs/about -// AIBOTK_KEY: 填写智能微秘书个人中心的apikey -// AIBOTK_TYPE:填写发送的目标 room 或 contact, 填其他的不生效 -// AIBOTK_NAME: 填写群名或用户昵称,和上面的type类型要对应 -let AIBOTK_KEY = ''; -let AIBOTK_TYPE = ''; -let AIBOTK_NAME = ''; + CHAT_URL: '', // synology chat url + CHAT_TOKEN: '', // synology chat token -// =======================================飞书机器人设置区域======================================= -// 官方文档:https://www.feishu.cn/hc/zh-CN/articles/360024984973 -// FSKEY 飞书机器人的 FSKEY -let FSKEY = ''; + // 官方文档:http://www.pushplus.plus/ + PUSH_PLUS_TOKEN: '', // push+ 微信推送的用户令牌 + PUSH_PLUS_USER: '', // push+ 微信推送的群组编码 -// =======================================SMTP 邮件设置区域======================================= -// SMTP_SERVICE: 邮箱服务名称,比如126、163、Gmail、QQ等,支持列表 https://github.com/nodemailer/nodemailer/blob/master/lib/well-known/services.json -// SMTP_EMAIL: 填写 SMTP 收发件邮箱,通知将会由自己发给自己 -// SMTP_PASSWORD: 填写 SMTP 登录密码,也可能为特殊口令,视具体邮件服务商说明而定 -// SMTP_NAME: 填写 SMTP 收发件人姓名,可随意填写 -let SMTP_SERVICE = ''; -let SMTP_EMAIL = ''; -let SMTP_PASSWORD = ''; -let SMTP_NAME = ''; + QMSG_KEY: '', // qmsg 酱的 QMSG_KEY + QMSG_TYPE: '', // qmsg 酱的 QMSG_TYPE -// =======================================PushMe通知设置区域=========================================== -// 官方文档:https://push.i-i.me/ -// 此处填你的PushMe KEY. -let PUSHME_KEY = ''; + QYWX_ORIGIN: 'https://qyapi.weixin.qq.com', // 企业微信代理地址 -// =======================================CHRONOCAT通知设置区域=========================================== -// CHRONOCAT_URL Red协议连接地址 例: http://127.0.0.1:16530 -// CHRONOCAT_TOKEN 填写在CHRONOCAT文件生成的访问密钥 -// CHRONOCAT_QQ 个人:user_id=个人QQ 群则填入group_id=QQ群 多个用英文;隔开同时支持个人和群 -// CHRONOCAT相关API https://chronocat.vercel.app/install/docker/official/ -let CHRONOCAT_URL = ''; // CHRONOCAT Red协议连接地址 -let CHRONOCAT_TOKEN = ''; // CHRONOCAT 生成的访问密钥 -let CHRONOCAT_QQ = ''; // 个人:user_id=个人QQ 群则填入group_id=QQ群 多个用英文;隔开同时支持个人和群 如:user_id=xxx;group_id=xxxx;group_id=xxxxx + /* + 此处填你企业微信应用消息的值(详见文档 https://work.weixin.qq.com/api/doc/90000/90135/90236) + 环境变量名 QYWX_AM依次填入 corpid,corpsecret,touser(注:多个成员ID使用|隔开),agentid,消息类型(选填,不填默认文本消息类型) + 注意用,号隔开(英文输入法的逗号),例如:wwcff56746d9adwers,B-791548lnzXBE6_BWfxdf3kSTMJr9vFEPKAbh6WERQ,mingcheng,1000001,2COXgjH2UIfERF2zxrtUOKgQ9XklUqMdGSWLBoW_lSDAdafat + 可选推送消息类型(推荐使用图文消息(mpnews)): + - 文本卡片消息: 0 (数字零) + - 文本消息: 1 (数字一) + - 图文消息(mpnews): 素材库图片id, 可查看此教程(http://note.youdao.com/s/HMiudGkb)或者(https://note.youdao.com/ynoteshare1/index.html?id=1a0c8aff284ad28cbd011b29b3ad0191&type=note) + */ + QYWX_AM: '', // 企业微信应用 -// =======================================自定义通知设置区域======================================= -// 自定义通知 接收回调的URL -let WEBHOOK_URL = ''; -let WEBHOOK_BODY = ''; -let WEBHOOK_HEADERS = ''; -let WEBHOOK_METHOD = ''; -let WEBHOOK_CONTENT_TYPE = ''; + QYWX_KEY: '', // 企业微信机器人的 webhook(详见文档 https://work.weixin.qq.com/api/doc/90000/90136/91770),例如:693a91f6-7xxx-4bc4-97a0-0ec2sifa5aaa -// ==========================云端环境变量的判断与接收========================= -if (process.env.GOTIFY_URL) { - GOTIFY_URL = process.env.GOTIFY_URL; -} -if (process.env.GOTIFY_TOKEN) { - GOTIFY_TOKEN = process.env.GOTIFY_TOKEN; -} -if (process.env.GOTIFY_PRIORITY) { - GOTIFY_PRIORITY = process.env.GOTIFY_PRIORITY; -} + TG_BOT_TOKEN: '', // tg 机器人的 TG_BOT_TOKEN,例:1407203283:AAG9rt-6RDaaX0HBLZQq0laNOh898iFYaRQ + TG_USER_ID: '', // tg 机器人的 TG_USER_ID,例:1434078534 + TG_API_HOST: '', // tg 代理 api + TG_PROXY_AUTH: '', // tg 代理认证参数 + TG_PROXY_HOST: '', // tg 机器人的 TG_PROXY_HOST + TG_PROXY_PORT: '', // tg 机器人的 TG_PROXY_PORT -if (process.env.GOBOT_URL) { - GOBOT_URL = process.env.GOBOT_URL; -} -if (process.env.GOBOT_TOKEN) { - GOBOT_TOKEN = process.env.GOBOT_TOKEN; -} -if (process.env.GOBOT_QQ) { - GOBOT_QQ = process.env.GOBOT_QQ; -} + AIBOTK_KEY: '', // 智能微秘书 个人中心的apikey 文档地址:http://wechat.aibotk.com/docs/about + AIBOTK_TYPE: '', // 智能微秘书 发送目标 room 或 contact + AIBOTK_NAME: '', // 智能微秘书 发送群名 或者好友昵称和type要对应好 -if (process.env.PUSH_KEY) { - SCKEY = process.env.PUSH_KEY; -} + SMTP_SERVICE: '', // 邮箱服务名称,比如 126、163、Gmail、QQ 等,支持列表 https://github.com/nodemailer/nodemailer/blob/master/lib/well-known/services.json + SMTP_EMAIL: '', // SMTP 收发件邮箱,通知将会由自己发给自己 + SMTP_PASSWORD: '', // SMTP 登录密码,也可能为特殊口令,视具体邮件服务商说明而定 + SMTP_NAME: '', // SMTP 收发件人姓名,可随意填写 -if (process.env.DEER_KEY) { - PUSHDEER_KEY = process.env.DEER_KEY; - PUSHDEER_URL = process.env.DEER_URL; -} + PUSHME_KEY: '', // 官方文档:https://push.i-i.me,PushMe 酱的 PUSHME_KEY -if (process.env.CHAT_URL) { - CHAT_URL = process.env.CHAT_URL; -} + // CHRONOCAT API https://chronocat.vercel.app/install/docker/official/ + CHRONOCAT_QQ: '', // 个人: user_id=个人QQ 群则填入 group_id=QQ群 多个用英文;隔开同时支持个人和群 + CHRONOCAT_TOKEN: '', // 填写在CHRONOCAT文件生成的访问密钥 + CHRONOCAT_URL: '', // Red 协议连接地址 例: http://127.0.0.1:16530 -if (process.env.CHAT_TOKEN) { - CHAT_TOKEN = process.env.CHAT_TOKEN; -} + WEBHOOK_URL: '', // 自定义通知 请求地址 + WEBHOOK_BODY: '', // 自定义通知 请求体 + WEBHOOK_HEADERS: '', // 自定义通知 请求头 + WEBHOOK_METHOD: '', // 自定义通知 请求方法 + WEBHOOK_CONTENT_TYPE: '', // 自定义通知 content-type +}; -if (process.env.QQ_SKEY) { - QQ_SKEY = process.env.QQ_SKEY; -} - -if (process.env.QQ_MODE) { - QQ_MODE = process.env.QQ_MODE; -} - -if (process.env.BARK_PUSH) { - if ( - process.env.BARK_PUSH.indexOf('https') > -1 || - process.env.BARK_PUSH.indexOf('http') > -1 - ) { - // 兼容BARK自建用户 - BARK_PUSH = process.env.BARK_PUSH; - } else { - BARK_PUSH = `https://api.day.app/${process.env.BARK_PUSH}`; - } - if (process.env.BARK_ICON) { - BARK_ICON = process.env.BARK_ICON; - } - if (process.env.BARK_SOUND) { - BARK_SOUND = process.env.BARK_SOUND; - } - if (process.env.BARK_GROUP) { - BARK_GROUP = process.env.BARK_GROUP; - } - if (process.env.BARK_LEVEL) { - BARK_LEVEL = process.env.BARK_LEVEL; - } - if (process.env.BARK_URL) { - BARK_URL = process.env.BARK_URL; - } -} else { - if ( - BARK_PUSH && - BARK_PUSH.indexOf('https') === -1 && - BARK_PUSH.indexOf('http') === -1 - ) { - // 兼容BARK本地用户只填写设备码的情况 - BARK_PUSH = `https://api.day.app/${BARK_PUSH}`; - } -} -if (process.env.TG_BOT_TOKEN) { - TG_BOT_TOKEN = process.env.TG_BOT_TOKEN; -} -if (process.env.TG_USER_ID) { - TG_USER_ID = process.env.TG_USER_ID; -} -if (process.env.TG_PROXY_AUTH) TG_PROXY_AUTH = process.env.TG_PROXY_AUTH; -if (process.env.TG_PROXY_HOST) TG_PROXY_HOST = process.env.TG_PROXY_HOST; -if (process.env.TG_PROXY_PORT) TG_PROXY_PORT = process.env.TG_PROXY_PORT; -if (process.env.TG_API_HOST) TG_API_HOST = process.env.TG_API_HOST; - -if (process.env.DD_BOT_TOKEN) { - DD_BOT_TOKEN = process.env.DD_BOT_TOKEN; - if (process.env.DD_BOT_SECRET) { - DD_BOT_SECRET = process.env.DD_BOT_SECRET; +// 首先读取 面板变量 或者 github action 运行变量 +for (const key in push_config) { + const v = process.env[key]; + if (v) { + push_config[key] = v; } } -if (process.env.QYWX_ORIGIN) { - QYWX_ORIGIN = process.env.QYWX_ORIGIN; -} else { - QYWX_ORIGIN = 'https://qyapi.weixin.qq.com'; -} +const $ = { + post: (params, callback) => { + const { url, ...others } = params; + got.post(url, others).then( + (res) => { + let body = res.body; + try { + body = JSON.parse(body); + } catch (error) {} + callback(null, res, body); + }, + (err) => { + callback(err?.response?.body || err); + }, + ); + }, + get: (params, callback) => { + const { url, ...others } = params; + got.get(url, others).then( + (res) => { + let body = res.body; + try { + body = JSON.parse(body); + } catch (error) {} + callback(null, res, body); + }, + (err) => { + callback(err?.response?.body || err); + }, + ); + }, + logErr: console.log, +}; -if (process.env.QYWX_KEY) { - QYWX_KEY = process.env.QYWX_KEY; -} - -if (process.env.QYWX_AM) { - QYWX_AM = process.env.QYWX_AM; -} - -if (process.env.IGOT_PUSH_KEY) { - IGOT_PUSH_KEY = process.env.IGOT_PUSH_KEY; -} - -if (process.env.PUSH_PLUS_TOKEN) { - PUSH_PLUS_TOKEN = process.env.PUSH_PLUS_TOKEN; -} -if (process.env.PUSH_PLUS_USER) { - PUSH_PLUS_USER = process.env.PUSH_PLUS_USER; -} - -if (process.env.AIBOTK_KEY) { - AIBOTK_KEY = process.env.AIBOTK_KEY; -} -if (process.env.AIBOTK_TYPE) { - AIBOTK_TYPE = process.env.AIBOTK_TYPE; -} -if (process.env.AIBOTK_NAME) { - AIBOTK_NAME = process.env.AIBOTK_NAME; -} - -if (process.env.FSKEY) { - FSKEY = process.env.FSKEY; -} - -if (process.env.SMTP_SERVICE) { - SMTP_SERVICE = process.env.SMTP_SERVICE; -} -if (process.env.SMTP_EMAIL) { - SMTP_EMAIL = process.env.SMTP_EMAIL; -} -if (process.env.SMTP_PASSWORD) { - SMTP_PASSWORD = process.env.SMTP_PASSWORD; -} -if (process.env.SMTP_NAME) { - SMTP_NAME = process.env.SMTP_NAME; -} -if (process.env.PUSHME_KEY) { - PUSHME_KEY = process.env.PUSHME_KEY; -} - -if (process.env.CHRONOCAT_URL) { - CHRONOCAT_URL = process.env.CHRONOCAT_URL; -} -if (process.env.CHRONOCAT_QQ) { - CHRONOCAT_QQ = process.env.CHRONOCAT_QQ; -} -if (process.env.CHRONOCAT_TOKEN) { - CHRONOCAT_TOKEN = process.env.CHRONOCAT_TOKEN; -} - -if (process.env.WEBHOOK_URL) { - WEBHOOK_URL = process.env.WEBHOOK_URL; -} -if (process.env.WEBHOOK_BODY) { - WEBHOOK_BODY = process.env.WEBHOOK_BODY; -} -if (process.env.WEBHOOK_HEADERS) { - WEBHOOK_HEADERS = process.env.WEBHOOK_HEADERS; -} -if (process.env.WEBHOOK_METHOD) { - WEBHOOK_METHOD = process.env.WEBHOOK_METHOD; -} -if (process.env.WEBHOOK_CONTENT_TYPE) { - WEBHOOK_CONTENT_TYPE = process.env.WEBHOOK_CONTENT_TYPE; -} -// ==========================云端环境变量的判断与接收========================= - -/** - * sendNotify 推送通知功能 - * @param text 通知头 - * @param desp 通知体 - * @param params 某些推送通知方式点击弹窗可跳转, 例:{ url: 'https://abc.com' } - * @param author 作者仓库等信息 例:`本通知 By:https://github.com/whyour/qinglong` - * @returns {Promise} - */ -async function sendNotify( - text, - desp, - params = {}, - author = '\n\n本通知 By:https://github.com/whyour/qinglong', -) { - // 提供6种通知 - desp += author; // 增加作者信息,防止被贩卖等 - - // 根据标题跳过一些消息推送,环境变量:SKIP_PUSH_TITLE 用回车分隔 - let skipTitle = process.env.SKIP_PUSH_TITLE; - if (skipTitle) { - if (skipTitle.split('\n').includes(text)) { - console.info(text + '在SKIP_PUSH_TITLE环境变量内,跳过推送!'); - return; - } - } - - await Promise.all([ - serverNotify(text, desp), // 微信server酱 - pushPlusNotify(text, desp), // pushplus(推送加) - ]); - // 由于上述两种微信通知需点击进去才能查看到详情,故text(标题内容)携带了账号序号以及昵称信息,方便不点击也可知道是哪个京东哪个活动 - text = text.match(/.*?(?=\s?-)/g) ? text.match(/.*?(?=\s?-)/g)[0] : text; - await Promise.all([ - BarkNotify(text, desp, params), // iOS Bark APP - tgBotNotify(text, desp), // telegram 机器人 - ddBotNotify(text, desp), // 钉钉机器人 - qywxBotNotify(text, desp), // 企业微信机器人 - qywxamNotify(text, desp), // 企业微信应用消息推送 - iGotNotify(text, desp, params), // iGot - gobotNotify(text, desp), // go-cqhttp - gotifyNotify(text, desp), // gotify - ChatNotify(text, desp), // synolog chat - PushDeerNotify(text, desp), // PushDeer - aibotkNotify(text, desp), // 智能微秘书 - fsBotNotify(text, desp), // 飞书机器人 - smtpNotify(text, desp), // SMTP 邮件 - pushMeNotify(text, desp, params), // PushMe - chronocatNotify(text, desp), // Chronocat - webhookNotify(text, desp), // 自定义通知 - ]); +async function one() { + const url = 'https://v1.hitokoto.cn/'; + const res = await got.get(url); + const body = JSON.parse(res.body); + return `${body.hitokoto} ----${body.from}`; } function gotifyNotify(text, desp) { return new Promise((resolve) => { + const { GOTIFY_URL, GOTIFY_TOKEN } = push_config; if (GOTIFY_URL && GOTIFY_TOKEN) { const options = { url: `${GOTIFY_URL}/message?token=${GOTIFY_TOKEN}`, @@ -407,14 +157,12 @@ function gotifyNotify(text, desp) { $.post(options, (err, resp, data) => { try { if (err) { - console.log('gotify发送通知调用API失败!!\n'); - console.log(err); + console.log('Gotify 发送通知调用API失败😞\n', err); } else { - data = JSON.parse(data); if (data.id) { - console.log('gotify发送通知消息成功🎉\n'); + console.log('Gotify 发送通知消息成功🎉\n'); } else { - console.log(`${data.message}\n`); + console.log(`Gotify 发送通知调用API失败😞 ${data.message}\n`); } } } catch (e) { @@ -431,6 +179,7 @@ function gotifyNotify(text, desp) { function gobotNotify(text, desp) { return new Promise((resolve) => { + const { GOBOT_URL } = push_config; if (GOBOT_URL) { const options = { url: `${GOBOT_URL}?access_token=${GOBOT_TOKEN}&${GOBOT_QQ}`, @@ -443,16 +192,16 @@ function gobotNotify(text, desp) { $.post(options, (err, resp, data) => { try { if (err) { - console.log('发送go-cqhttp通知调用API失败!!\n'); - console.log(err); + console.log('Go-cqhttp 通知调用API失败😞\n', err); } else { - data = JSON.parse(data); if (data.retcode === 0) { - console.log('go-cqhttp发送通知消息成功🎉\n'); + console.log('Go-cqhttp 发送通知消息成功🎉\n'); } else if (data.retcode === 100) { - console.log(`go-cqhttp发送通知消息异常: ${data.errmsg}\n`); + console.log(`Go-cqhttp 发送通知消息异常 ${data.errmsg}\n`); } else { - console.log(`go-cqhttp发送通知消息异常\n${JSON.stringify(data)}`); + console.log( + `Go-cqhttp 发送通知消息异常 ${JSON.stringify(data)}`, + ); } } } catch (e) { @@ -469,6 +218,7 @@ function gobotNotify(text, desp) { function serverNotify(text, desp) { return new Promise((resolve) => { + const { SCKEY } = push_config; if (SCKEY) { // 微信server酱推送通知一个\n不会换行,需要两个\n才能换行,故做此替换 desp = desp.replace(/[\n\r]/g, '\n\n'); @@ -485,18 +235,16 @@ function serverNotify(text, desp) { $.post(options, (err, resp, data) => { try { if (err) { - console.log('发送通知调用API失败!!\n'); - console.log(err); + console.log('Server 酱发送通知调用API失败😞\n', err); } else { - data = JSON.parse(data); // server酱和Server酱·Turbo版的返回json格式不太一样 if (data.errno === 0 || data.data.errno === 0) { - console.log('server酱发送通知消息成功🎉\n'); + console.log('Server 酱发送通知消息成功🎉\n'); } else if (data.errno === 1024) { // 一分钟内发送相同的内容会触发 - console.log(`server酱发送通知消息异常: ${data.errmsg}\n`); + console.log(`Server 酱发送通知消息异常 ${data.errmsg}\n`); } else { - console.log(`server酱发送通知消息异常\n${JSON.stringify(data)}`); + console.log(`Server 酱发送通知消息异常 ${JSON.stringify(data)}`); } } } catch (e) { @@ -511,9 +259,10 @@ function serverNotify(text, desp) { }); } -function PushDeerNotify(text, desp) { +function pushDeerNotify(text, desp) { return new Promise((resolve) => { - if (PUSHDEER_KEY) { + const { DEER_KEY, PUSHDEER_URL } = push_config; + if (DEER_KEY) { // PushDeer 建议对消息内容进行 urlencode desp = encodeURI(desp); const options = { @@ -527,18 +276,16 @@ function PushDeerNotify(text, desp) { $.post(options, (err, resp, data) => { try { if (err) { - console.log('发送通知调用API失败!!\n'); - console.log(err); + console.log('PushDeer 通知调用API失败😞\n', err); } else { - data = JSON.parse(data); // 通过返回的result的长度来判断是否成功 if ( data.content.result.length !== undefined && data.content.result.length > 0 ) { - console.log('PushDeer发送通知消息成功🎉\n'); + console.log('PushDeer 发送通知消息成功🎉\n'); } else { - console.log(`PushDeer发送通知消息异常\n${JSON.stringify(data)}`); + console.log(`PushDeer 发送通知消息异常😞 ${JSON.stringify(data)}`); } } } catch (e) { @@ -553,8 +300,9 @@ function PushDeerNotify(text, desp) { }); } -function ChatNotify(text, desp) { +function chatNotify(text, desp) { return new Promise((resolve) => { + const { CHAT_URL, CHAT_TOKEN } = push_config; if (CHAT_URL && CHAT_TOKEN) { // 对消息内容进行 urlencode desp = encodeURI(desp); @@ -568,14 +316,12 @@ function ChatNotify(text, desp) { $.post(options, (err, resp, data) => { try { if (err) { - console.log('发送通知调用API失败!!\n'); - console.log(err); + console.log('Chat 发送通知调用API失败😞\n', err); } else { - data = JSON.parse(data); if (data.success) { - console.log('Chat发送通知消息成功🎉\n'); + console.log('Chat 发送通知消息成功🎉\n'); } else { - console.log(`Chat发送通知消息异常\n${JSON.stringify(data)}`); + console.log(`Chat 发送通知消息异常 ${JSON.stringify(data)}`); } } } catch (e) { @@ -590,13 +336,26 @@ function ChatNotify(text, desp) { }); } -function BarkNotify(text, desp, params = {}) { +function barkNotify(text, desp, params = {}) { return new Promise((resolve) => { + let { + BARK_PUSH, + BARK_ICON, + BARK_SOUND, + BARK_GROUP, + BARK_LEVEL, + BARK_ARCHIVE, + BARK_URL, + } = push_config; if (BARK_PUSH) { + // 兼容BARK本地用户只填写设备码的情况 + if (!BARK_PUSH.startsWith('http')) { + BARK_PUSH = `https://api.day.app/${BARK_PUSH}`; + } const options = { url: `${BARK_PUSH}/${encodeURIComponent(text)}/${encodeURIComponent( desp, - )}?icon=${BARK_ICON}&sound=${BARK_SOUND}&group=${BARK_GROUP}&level=${BARK_LEVEL}&url=${BARK_URL}&${querystring.stringify( + )}?icon=${BARK_ICON}&sound=${BARK_SOUND}&group=${BARK_GROUP}&isArchive=${BARK_ARCHIVE}&level=${BARK_LEVEL}&url=${BARK_URL}&${querystring.stringify( params, )}`, headers: { @@ -607,14 +366,12 @@ function BarkNotify(text, desp, params = {}) { $.get(options, (err, resp, data) => { try { if (err) { - console.log('Bark APP发送通知调用API失败!!\n'); - console.log(err); + console.log('Bark APP 发送通知调用API失败😞\n', err); } else { - data = JSON.parse(data); if (data.code === 200) { - console.log('Bark APP发送通知消息成功🎉\n'); + console.log('Bark APP 发送通知消息成功🎉\n'); } else { - console.log(`${data.message}\n`); + console.log(`Bark APP 发送通知消息异常 ${data.message}\n`); } } } catch (e) { @@ -631,6 +388,8 @@ function BarkNotify(text, desp, params = {}) { function tgBotNotify(text, desp) { return new Promise((resolve) => { + const { TG_BOT_TOKEN, TG_USER_ID, TG_PROXY_HOST, TG_PROXY_PORT } = + push_config; if (TG_BOT_TOKEN && TG_USER_ID) { const options = { url: `${TG_API_HOST}/bot${TG_BOT_TOKEN}/sendMessage`, @@ -664,12 +423,10 @@ function tgBotNotify(text, desp) { $.post(options, (err, resp, data) => { try { if (err) { - console.log('telegram发送通知消息失败!!\n'); - console.log(err); + console.log('Telegram 发送通知消息失败😞\n', err); } else { - data = JSON.parse(data); if (data.ok) { - console.log('Telegram发送通知消息成功🎉。\n'); + console.log('Telegram 发送通知消息成功🎉。\n'); } else if (data.error_code === 400) { console.log( '请主动给bot发送一条消息并检查接收用户ID是否正确。\n', @@ -691,6 +448,7 @@ function tgBotNotify(text, desp) { } function ddBotNotify(text, desp) { return new Promise((resolve) => { + const { DD_BOT_TOKEN, DD_BOT_SECRET } = push_config; const options = { url: `https://oapi.dingtalk.com/robot/send?access_token=${DD_BOT_TOKEN}`, json: { @@ -714,14 +472,12 @@ function ddBotNotify(text, desp) { $.post(options, (err, resp, data) => { try { if (err) { - console.log('钉钉发送通知消息失败!!\n'); - console.log(err); + console.log('钉钉发送通知消息失败😞\n', err); } else { - data = JSON.parse(data); if (data.errcode === 0) { - console.log('钉钉发送通知消息成功🎉。\n'); + console.log('钉钉发送通知消息成功🎉\n'); } else { - console.log(`${data.errmsg}\n`); + console.log(`钉钉发送通知消息异常 ${data.errmsg}\n`); } } } catch (e) { @@ -734,14 +490,12 @@ function ddBotNotify(text, desp) { $.post(options, (err, resp, data) => { try { if (err) { - console.log('钉钉发送通知消息失败!!\n'); - console.log(err); + console.log('钉钉发送通知消息失败😞\n', err); } else { - data = JSON.parse(data); if (data.errcode === 0) { - console.log('钉钉发送通知消息完成。\n'); + console.log('钉钉发送通知消息成功🎉\n'); } else { - console.log(`${data.errmsg}\n`); + console.log(`钉钉发送通知消息异常 ${data.errmsg}\n`); } } } catch (e) { @@ -758,6 +512,7 @@ function ddBotNotify(text, desp) { function qywxBotNotify(text, desp) { return new Promise((resolve) => { + const { QYWX_ORIGIN, QYWX_KEY } = push_config; const options = { url: `${QYWX_ORIGIN}/cgi-bin/webhook/send?key=${QYWX_KEY}`, json: { @@ -775,14 +530,12 @@ function qywxBotNotify(text, desp) { $.post(options, (err, resp, data) => { try { if (err) { - console.log('企业微信发送通知消息失败!!\n'); - console.log(err); + console.log('企业微信发送通知消息失败😞\n', err); } else { - data = JSON.parse(data); if (data.errcode === 0) { console.log('企业微信发送通知消息成功🎉。\n'); } else { - console.log(`${data.errmsg}\n`); + console.log(`企业微信发送通知消息异常 ${data.errmsg}\n`); } } } catch (e) { @@ -798,6 +551,7 @@ function qywxBotNotify(text, desp) { } function ChangeUserId(desp) { + const { QYWX_AM } = push_config; const QYWX_AM_AY = QYWX_AM.split(','); if (QYWX_AM_AY[2]) { const userIdTmp = QYWX_AM_AY[2].split('|'); @@ -829,6 +583,7 @@ async function qywxamNotify(text, desp) { function do_qywxamNotify(text, desp) { return new Promise((resolve) => { + const { QYWX_AM, QYWX_ORIGIN } = push_config; if (QYWX_AM) { const QYWX_AM_AY = QYWX_AM.split(','); const options_accesstoken = { @@ -842,9 +597,8 @@ function do_qywxamNotify(text, desp) { }, timeout, }; - $.post(options_accesstoken, (err, resp, data) => { + $.post(options_accesstoken, (err, resp, json) => { let html = desp.replace(/\n/g, '
'); - let json = JSON.parse(data); let accesstoken = json.access_token; let options; @@ -915,11 +669,10 @@ function do_qywxamNotify(text, desp) { console.log( '成员ID:' + ChangeUserId(desp) + - '企业微信应用消息发送通知消息失败!!\n', + '企业微信应用消息发送通知消息失败😞\n', + err, ); - console.log(err); } else { - data = JSON.parse(data); if (data.errcode === 0) { console.log( '成员ID:' + @@ -927,7 +680,7 @@ function do_qywxamNotify(text, desp) { '企业微信应用消息发送通知消息成功🎉。\n', ); } else { - console.log(`${data.errmsg}\n`); + console.log(`企业微信应用消息发送通知消息异常 ${data.errmsg}\n`); } } } catch (e) { @@ -945,11 +698,12 @@ function do_qywxamNotify(text, desp) { function iGotNotify(text, desp, params = {}) { return new Promise((resolve) => { + const { IGOT_PUSH_KEY } = push_config; if (IGOT_PUSH_KEY) { // 校验传入的IGOT_PUSH_KEY是否有效 const IGOT_PUSH_KEY_REGX = new RegExp('^[a-zA-Z0-9]{24}$'); if (!IGOT_PUSH_KEY_REGX.test(IGOT_PUSH_KEY)) { - console.log('您所提供的IGOT_PUSH_KEY无效\n'); + console.log('您所提供的 IGOT_PUSH_KEY 无效\n'); resolve(); return; } @@ -964,14 +718,12 @@ function iGotNotify(text, desp, params = {}) { $.post(options, (err, resp, data) => { try { if (err) { - console.log('发送通知调用API失败!!\n'); - console.log(err); + console.log('IGot 发送通知调用API失败😞\n', err); } else { - if (typeof data === 'string') data = JSON.parse(data); if (data.ret === 0) { - console.log('iGot发送通知消息成功🎉\n'); + console.log('IGot 发送通知消息成功🎉\n'); } else { - console.log(`iGot发送通知消息失败:${data.errMsg}\n`); + console.log(`IGot 发送通知消息异常 ${data.errMsg}\n`); } } } catch (e) { @@ -988,6 +740,7 @@ function iGotNotify(text, desp, params = {}) { function pushPlusNotify(text, desp) { return new Promise((resolve) => { + const { PUSH_PLUS_TOKEN, PUSH_PLUS_USER } = push_config; if (PUSH_PLUS_TOKEN) { desp = desp.replace(/[\n\r]/g, '
'); // 默认为html, 不支持plaintext const body = { @@ -1008,24 +761,23 @@ function pushPlusNotify(text, desp) { try { if (err) { console.log( - `push+发送${ + `Push+ 发送${ PUSH_PLUS_USER ? '一对多' : '一对一' - }通知消息失败!!\n`, + }通知消息失败😞\n`, + err, ); - console.log(err); } else { - data = JSON.parse(data); if (data.code === 200) { console.log( - `push+发送${ + `Push+ 发送${ PUSH_PLUS_USER ? '一对多' : '一对一' - }通知消息完成。\n`, + }通知消息完成🎉\n`, ); } else { console.log( - `push+发送${ + `Push+ 发送${ PUSH_PLUS_USER ? '一对多' : '一对一' - }通知消息失败:${data.msg}\n`, + }通知消息异常 ${data.msg}\n`, ); } } @@ -1043,6 +795,7 @@ function pushPlusNotify(text, desp) { function aibotkNotify(text, desp) { return new Promise((resolve) => { + const { AIBOTK_KEY, AIBOTK_TYPE, AIBOTK_NAME } = push_config; if (AIBOTK_KEY && AIBOTK_TYPE && AIBOTK_NAME) { let json = {}; let url = ''; @@ -1081,14 +834,12 @@ function aibotkNotify(text, desp) { $.post(options, (err, resp, data) => { try { if (err) { - console.log('智能微秘书发送通知消息失败!!\n'); - console.log(err); + console.log('智能微秘书发送通知消息失败😞\n', err); } else { - data = JSON.parse(data); if (data.code === 0) { console.log('智能微秘书发送通知消息成功🎉。\n'); } else { - console.log(`${data.error}\n`); + console.log(`智能微秘书发送通知消息异常 ${data.error}\n`); } } } catch (e) { @@ -1105,6 +856,7 @@ function aibotkNotify(text, desp) { function fsBotNotify(text, desp) { return new Promise((resolve) => { + const { FSKEY } = push_config; if (FSKEY) { const options = { url: `https://open.feishu.cn/open-apis/bot/v2/hook/${FSKEY}`, @@ -1117,14 +869,12 @@ function fsBotNotify(text, desp) { $.post(options, (err, resp, data) => { try { if (err) { - console.log('发送通知调用API失败!!\n'); - console.log(err); + console.log('飞书发送通知调用API失败😞\n', err); } else { - data = JSON.parse(data); if (data.StatusCode === 0 || data.code === 0) { console.log('飞书发送通知消息成功🎉\n'); } else { - console.log(`${data.msg}\n`); + console.log(`飞书发送通知消息异常 ${data.msg}\n`); } } } catch (e) { @@ -1140,6 +890,7 @@ function fsBotNotify(text, desp) { } async function smtpNotify(text, desp) { + const { SMTP_EMAIL, SMTP_PASSWORD, SMTP_SERVICE, SMTP_NAME } = push_config; if (![SMTP_EMAIL, SMTP_PASSWORD].every(Boolean) || !SMTP_SERVICE) { return; } @@ -1165,18 +916,18 @@ async function smtpNotify(text, desp) { transporter.close(); if (info.messageId) { - console.log('SMTP发送通知消息成功🎉\n'); + console.log('SMTP 发送通知消息成功🎉\n'); return true; } - console.log('SMTP发送通知消息失败!!\n'); + console.log('SMTP 发送通知消息失败😞\n'); } catch (e) { - console.log('SMTP发送通知消息出现错误!!\n'); - console.log(e); + console.log('SMTP 发送通知消息出现异常😞\n', e); } } function pushMeNotify(text, desp, params = {}) { return new Promise((resolve) => { + const { PUSHME_KEY } = push_config; if (PUSHME_KEY) { const options = { url: `https://push.i-i.me?push_key=${PUSHME_KEY}`, @@ -1189,13 +940,12 @@ function pushMeNotify(text, desp, params = {}) { $.post(options, (err, resp, data) => { try { if (err) { - console.log('PushMeNotify发送通知调用API失败!!\n'); - console.log(err); + console.log('PushMe 发送通知调用API失败😞\n', err); } else { if (data === 'success') { - console.log('PushMe发送通知消息成功🎉\n'); + console.log('PushMe 发送通知消息成功🎉\n'); } else { - console.log(`${data}\n`); + console.log(`PushMe 发送通知消息异常 ${data}\n`); } } } catch (e) { @@ -1212,6 +962,7 @@ function pushMeNotify(text, desp, params = {}) { function chronocatNotify(title, desp) { return new Promise((resolve) => { + const { CHRONOCAT_TOKEN, CHRONOCAT_QQ, CHRONOCAT_URL } = push_config; if (!CHRONOCAT_TOKEN || !CHRONOCAT_QQ || !CHRONOCAT_URL) { resolve(); return; @@ -1261,14 +1012,12 @@ function chronocatNotify(title, desp) { $.post(options, (err, resp, data) => { try { if (err) { - console.log('Chronocat发送QQ通知消息失败!!\n'); - console.log(err); + console.log('Chronocat 发送QQ通知消息失败😞\n', err); } else { - data = JSON.parse(data); if (chat_type === 1) { - console.log(`QQ个人消息:${ids}推送成功!`); + console.log(`Chronocat 个人消息 ${ids}推送成功🎉`); } else { - console.log(`QQ群消息:${ids}推送成功!`); + console.log(`Chronocat 群消息 ${ids}推送成功🎉`); } } } catch (e) { @@ -1282,8 +1031,50 @@ function chronocatNotify(title, desp) { }); } +function qmsgNotify(text, desp) { + return new Promise((resolve) => { + const { QMSG_KEY, QMSG_TYPE } = push_config; + if (QMSG_KEY && QMSG_TYPE) { + const options = { + url: `https://qmsg.zendee.cn/${QMSG_TYPE}/${QMSG_KEY}`, + body: `msg=${text}\n\n${desp.replace('----', '-')}`, + headers: { + 'Content-Type': 'application/x-www-form-urlencoded', + }, + timeout, + }; + $.post(options, (err, resp, data) => { + try { + if (err) { + console.log('Qmsg 发送通知调用API失败😞\n', err); + } else { + if (data.code === 0) { + console.log('Qmsg 发送通知消息成功🎉\n'); + } else { + console.log(`Qmsg 发送通知消息异常 ${data}\n`); + } + } + } catch (e) { + $.logErr(e, resp); + } finally { + resolve(data); + } + }); + } else { + resolve(); + } + }); +} + function webhookNotify(text, desp) { return new Promise((resolve) => { + const { + WEBHOOK_URL, + WEBHOOK_BODY, + WEBHOOK_HEADERS, + WEBHOOK_CONTENT_TYPE, + WEBHOOK_METHOD, + } = push_config; if (!WEBHOOK_URL.includes('$title') && !WEBHOOK_BODY.includes('$title')) { resolve(); return; @@ -1311,9 +1102,9 @@ function webhookNotify(text, desp) { got(formatUrl, options).then((resp) => { try { if (resp.statusCode !== 200) { - console.log(`自定义发送通知消息失败!!\n${resp.body}`); + console.log(`自定义发送通知消息失败😞 ${resp.body}\n`); } else { - console.log(`自定义发送通知消息成功🎉。\n${resp.body}`); + console.log(`自定义发送通知消息成功🎉 ${resp.body}\n`); } } catch (e) { $.logErr(e, resp); @@ -1413,25 +1204,51 @@ function formatBodyFun(contentType, body) { return {}; } -function formatNotifyContentFun(url, body, title, content) { - if (!url.includes('$title') && !body.includes('$title')) { - return {}; +/** + * sendNotify 推送通知功能 + * @param text 通知头 + * @param desp 通知体 + * @param params 某些推送通知方式点击弹窗可跳转, 例:{ url: 'https://abc.com' } + * @returns {Promise} + */ +async function sendNotify(text, desp, params = {}) { + // 根据标题跳过一些消息推送,环境变量:SKIP_PUSH_TITLE 用回车分隔 + let skipTitle = process.env.SKIP_PUSH_TITLE; + if (skipTitle) { + if (skipTitle.split('\n').includes(text)) { + console.info(text + '在 SKIP_PUSH_TITLE 环境变量内,跳过推送'); + return; + } } - return { - formatUrl: url - .replaceAll('$title', encodeURIComponent(title)) - .replaceAll('$content', encodeURIComponent(content)), - formatBody: body - .replaceAll('$title', title) - .replaceAll('$content', content), - }; + hitokoto = push_config.HITOKOTO; + if (hitokoto) { + desp += '\n\n' + (await one()); + } + + await Promise.all([ + serverNotify(text, desp), // 微信server酱 + pushPlusNotify(text, desp), // pushplus + barkNotify(text, desp, params), // iOS Bark APP + tgBotNotify(text, desp), // telegram 机器人 + ddBotNotify(text, desp), // 钉钉机器人 + qywxBotNotify(text, desp), // 企业微信机器人 + qywxamNotify(text, desp), // 企业微信应用消息推送 + iGotNotify(text, desp, params), // iGot + gobotNotify(text, desp), // go-cqhttp + gotifyNotify(text, desp), // gotify + chatNotify(text, desp), // synolog chat + pushDeerNotify(text, desp), // PushDeer + aibotkNotify(text, desp), // 智能微秘书 + fsBotNotify(text, desp), // 飞书机器人 + smtpNotify(text, desp), // SMTP 邮件 + pushMeNotify(text, desp, params), // PushMe + chronocatNotify(text, desp), // Chronocat + webhookNotify(text, desp), // 自定义通知 + qmsgNotify(text, desp), // 自定义通知 + ]); } module.exports = { sendNotify, - BARK_PUSH, }; - -// prettier-ignore -function Env(t, s) { return new class { constructor(t, s) { this.name = t, this.data = null, this.dataFile = "box.dat", this.logs = [], this.logSeparator = "\n", this.startTime = (new Date).getTime(), Object.assign(this, s), this.log("", `\ud83d\udd14${this.name}, \u5f00\u59cb!`) } isNode() { return "undefined" != typeof module && !!module.exports } isQuanX() { return "undefined" != typeof $task } isSurge() { return "undefined" != typeof $httpClient && "undefined" == typeof $loon } isLoon() { return "undefined" != typeof $loon } getScript(t) { return new Promise(s => { $.get({ url: t }, (t, e, i) => s(i)) }) } runScript(t, s) { return new Promise(e => { let i = this.getdata("@chavy_boxjs_userCfgs.httpapi"); i = i ? i.replace(/\n/g, "").trim() : i; let o = this.getdata("@chavy_boxjs_userCfgs.httpapi_timeout"); o = o ? 1 * o : 20, o = s && s.timeout ? s.timeout : o; const [h, a] = i.split("@"), r = { url: `http://${a}/v1/scripting/evaluate`, body: { script_text: t, mock_type: "cron", timeout: o }, headers: { "X-Key": h, Accept: "*/*" } }; $.post(r, (t, s, i) => e(i)) }).catch(t => this.logErr(t)) } loaddata() { if (!this.isNode()) return {}; { this.fs = this.fs ? this.fs : require("fs"), this.path = this.path ? this.path : require("path"); const t = this.path.resolve(this.dataFile), s = this.path.resolve(process.cwd(), this.dataFile), e = this.fs.existsSync(t), i = !e && this.fs.existsSync(s); if (!e && !i) return {}; { const i = e ? t : s; try { return JSON.parse(this.fs.readFileSync(i)) } catch (t) { return {} } } } } writedata() { if (this.isNode()) { this.fs = this.fs ? this.fs : require("fs"), this.path = this.path ? this.path : require("path"); const t = this.path.resolve(this.dataFile), s = this.path.resolve(process.cwd(), this.dataFile), e = this.fs.existsSync(t), i = !e && this.fs.existsSync(s), o = JSON.stringify(this.data); e ? this.fs.writeFileSync(t, o) : i ? this.fs.writeFileSync(s, o) : this.fs.writeFileSync(t, o) } } lodash_get(t, s, e) { const i = s.replace(/\[(\d+)\]/g, ".$1").split("."); let o = t; for (const t of i) if (o = Object(o)[t], void 0 === o) return e; return o } lodash_set(t, s, e) { return Object(t) !== t ? t : (Array.isArray(s) || (s = s.toString().match(/[^.[\]]+/g) || []), s.slice(0, -1).reduce((t, e, i) => Object(t[e]) === t[e] ? t[e] : t[e] = Math.abs(s[i + 1]) >> 0 == +s[i + 1] ? [] : {}, t)[s[s.length - 1]] = e, t) } getdata(t) { let s = this.getval(t); if (/^@/.test(t)) { const [, e, i] = /^@(.*?)\.(.*?)$/.exec(t), o = e ? this.getval(e) : ""; if (o) try { const t = JSON.parse(o); s = t ? this.lodash_get(t, i, "") : s } catch (t) { s = "" } } return s } setdata(t, s) { let e = !1; if (/^@/.test(s)) { const [, i, o] = /^@(.*?)\.(.*?)$/.exec(s), h = this.getval(i), a = i ? "null" === h ? null : h || "{}" : "{}"; try { const s = JSON.parse(a); this.lodash_set(s, o, t), e = this.setval(JSON.stringify(s), i) } catch (s) { const h = {}; this.lodash_set(h, o, t), e = this.setval(JSON.stringify(h), i) } } else e = $.setval(t, s); return e } getval(t) { return this.isSurge() || this.isLoon() ? $persistentStore.read(t) : this.isQuanX() ? $prefs.valueForKey(t) : this.isNode() ? (this.data = this.loaddata(), this.data[t]) : this.data && this.data[t] || null } setval(t, s) { return this.isSurge() || this.isLoon() ? $persistentStore.write(t, s) : this.isQuanX() ? $prefs.setValueForKey(t, s) : this.isNode() ? (this.data = this.loaddata(), this.data[s] = t, this.writedata(), !0) : this.data && this.data[s] || null } initGotEnv(t) { this.got = this.got ? this.got : require("got"), this.cktough = this.cktough ? this.cktough : require("tough-cookie"), this.ckjar = this.ckjar ? this.ckjar : new this.cktough.CookieJar, t && (t.headers = t.headers ? t.headers : {}, void 0 === t.headers.Cookie && void 0 === t.cookieJar && (t.cookieJar = this.ckjar)) } get(t, s = (() => { })) { t.headers && (delete t.headers["Content-Type"], delete t.headers["Content-Length"]), this.isSurge() || this.isLoon() ? $httpClient.get(t, (t, e, i) => { !t && e && (e.body = i, e.statusCode = e.status), s(t, e, i) }) : this.isQuanX() ? $task.fetch(t).then(t => { const { statusCode: e, statusCode: i, headers: o, body: h } = t; s(null, { status: e, statusCode: i, headers: o, body: h }, h) }, t => s(t)) : this.isNode() && (this.initGotEnv(t), this.got(t).on("redirect", (t, s) => { try { const e = t.headers["set-cookie"].map(this.cktough.Cookie.parse).toString(); this.ckjar.setCookieSync(e, null), s.cookieJar = this.ckjar } catch (t) { this.logErr(t) } }).then(t => { const { statusCode: e, statusCode: i, headers: o, body: h } = t; s(null, { status: e, statusCode: i, headers: o, body: h }, h) }, t => s(t))) } post(t, s = (() => { })) { if (t.body && t.headers && !t.headers["Content-Type"] && (t.headers["Content-Type"] = "application/x-www-form-urlencoded"), delete t.headers["Content-Length"], this.isSurge() || this.isLoon()) $httpClient.post(t, (t, e, i) => { !t && e && (e.body = i, e.statusCode = e.status), s(t, e, i) }); else if (this.isQuanX()) t.method = "POST", $task.fetch(t).then(t => { const { statusCode: e, statusCode: i, headers: o, body: h } = t; s(null, { status: e, statusCode: i, headers: o, body: h }, h) }, t => s(t)); else if (this.isNode()) { this.initGotEnv(t); const { url: e, ...i } = t; this.got.post(e, i).then(t => { const { statusCode: e, statusCode: i, headers: o, body: h } = t; s(null, { status: e, statusCode: i, headers: o, body: h }, h) }, t => s(t)) } } time(t) { let s = { "M+": (new Date).getMonth() + 1, "d+": (new Date).getDate(), "H+": (new Date).getHours(), "m+": (new Date).getMinutes(), "s+": (new Date).getSeconds(), "q+": Math.floor(((new Date).getMonth() + 3) / 3), S: (new Date).getMilliseconds() }; /(y+)/.test(t) && (t = t.replace(RegExp.$1, ((new Date).getFullYear() + "").substr(4 - RegExp.$1.length))); for (let e in s) new RegExp("(" + e + ")").test(t) && (t = t.replace(RegExp.$1, 1 == RegExp.$1.length ? s[e] : ("00" + s[e]).substr(("" + s[e]).length))); return t } msg(s = t, e = "", i = "", o) { const h = t => !t || !this.isLoon() && this.isSurge() ? t : "string" == typeof t ? this.isLoon() ? t : this.isQuanX() ? { "open-url": t } : void 0 : "object" == typeof t && (t["open-url"] || t["media-url"]) ? this.isLoon() ? t["open-url"] : this.isQuanX() ? t : void 0 : void 0; $.isMute || (this.isSurge() || this.isLoon() ? $notification.post(s, e, i, h(o)) : this.isQuanX() && $notify(s, e, i, h(o))), this.logs.push("", "==============\ud83d\udce3\u7cfb\u7edf\u901a\u77e5\ud83d\udce3=============="), this.logs.push(s), e && this.logs.push(e), i && this.logs.push(i) } log(...t) { t.length > 0 ? this.logs = [...this.logs, ...t] : console.log(this.logs.join(this.logSeparator)) } logErr(t, s) { const e = !this.isSurge() && !this.isQuanX() && !this.isLoon(); e ? $.log("", `\u2757\ufe0f${this.name}, \u9519\u8bef!`, t.stack) : $.log("", `\u2757\ufe0f${this.name}, \u9519\u8bef!`, t) } wait(t) { return new Promise(s => setTimeout(s, t)) } done(t = {}) { const s = (new Date).getTime(), e = (s - this.startTime) / 1e3; this.log("", `\ud83d\udd14${this.name}, \u7ed3\u675f! \ud83d\udd5b ${e} \u79d2`), this.log(), (this.isSurge() || this.isQuanX() || this.isLoon()) && $done(t) } }(t, s) } diff --git a/sample/notify.py b/sample/notify.py index 0e40fcbc..3176d3a0 100644 --- a/sample/notify.py +++ b/sample/notify.py @@ -33,7 +33,7 @@ def print(text, *args, **kw): # 通知服务 # fmt: off push_config = { - 'HITOKOTO': False, # 启用一言(随机句子) + 'HITOKOTO': True, # 启用一言(随机句子) 'BARK_PUSH': '', # bark IP 或设备码,例:https://api.day.app/DxHcxxxxxRxxxxxxcm/ 'BARK_ARCHIVE': '', # bark 推送是否存档