Compare commits

...
5 Commits
Author SHA1 Message Date
shanmiteko 88ad8ecfcc fix(lib/data/env): [23:9] 2021-09-27 19:04:39 +08:00
shanmiteko 478d10d27e feat: 设置支持热更新(#29) 2021-09-27 18:40:11 +08:00
shanmite 6fbcf6e0b7 action: Publishing to NPM 2021-09-15 18:20:07 +08:00
jkluio78andshanmiteko 8bf47698ad feat: 新增设置not_check_article(#25) 2021-09-14 17:00:01 +08:00
shanmite c0bc4878e3 fix: 漏了逗号导致无法更新 2021-09-11 07:33:05 +00:00
10 changed files with 183 additions and 103 deletions
+25
View File
@@ -0,0 +1,25 @@
name: "Publishing to NPM"
on:
push:
branches:
- main
paths:
- "lib/**"
- "main.js"
pull_request:
branches:
- main
paths:
- "lib/**"
- "main.js"
workflow_dispatch:
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: JS-DevTools/npm-publish@v1
with:
token: ${{ secrets.NPM_TOKEN }}
+2 -1
View File
@@ -17,7 +17,8 @@
[Github仓库链接](https://github.com/shanmiteko/LotteryAutoScript)
[![Package Node.js project into an executable](https://github.com/shanmiteko/LotteryAutoScript/actions/workflows/pkg.yml/badge.svg)](https://github.com/shanmiteko/LotteryAutoScript/actions/workflows/pkg.yml)<br>
[![Build and push Docker images](https://github.com/shanmiteko/LotteryAutoScript/actions/workflows/docker.yml/badge.svg)](https://github.com/shanmiteko/LotteryAutoScript/actions/workflows/docker.yml)
[![Build and push Docker images](https://github.com/shanmiteko/LotteryAutoScript/actions/workflows/docker.yml/badge.svg)](https://github.com/shanmiteko/LotteryAutoScript/actions/workflows/docker.yml)<br>
[![Publishing to NPM](https://github.com/shanmiteko/LotteryAutoScript/actions/workflows/npmp.yml/badge.svg)](https://github.com/shanmiteko/LotteryAutoScript/actions/workflows/npmp.yml)
已实现功能:
- 监控用户转发
+63 -82
View File
@@ -1,89 +1,70 @@
/**
* ## 账号相关
* - `COOKIE` 是必填项
* - `NUMBER` 表示是第几个账号
* - `CLEAR` 是否启用清理功能
* - `ENABLE_MULTIPLE_ACCOUNT` 是否启用多账号
* - `MULTIPLE_ACCOUNT_PARM` 多账号参数(JSON格式)
* ## 调试相关
* - `LOTTERY_LOG_LEVEL` 输出日志等级 Error<Warn<Info<Debug 1<2<3<4
* - `NOT_GO_LOTTERY` 关闭抽奖行为
* ## 多账号
* 1. 将 ENABLE_MULTIPLE_ACCOUNT 的值改为true
* 2. 将账号信息依次填写于 multiple_account_parm 中, 参考例子类推
* - `WAIT` 表示下一个账号运行等待时间(毫秒)
*
* **按顺序依次执行, 防止访问频繁封禁IP**
*/
const account_parm = {
COOKIE: "",
NUMBER: 1,
CLEAR: true,
ENABLE_MULTIPLE_ACCOUNT: false,
MULTIPLE_ACCOUNT_PARM: "",
LOTTERY_LOG_LEVEL: 3,
NOT_GO_LOTTERY: ""
}
/**
* 为防止环境变量过长, 请将多账号填在此处
* @example
* ```js
* {
* COOKIE: "",
* NUMBER: 2,
* CLEAR: true,
* WAIT: 60 * 1000,
* },
* ```
* 请按照以上格式将参数依次填写在下方
*/
const multiple_account_parm = [
{
module.exports = Object.freeze({
/**
* ## 账号相关
* - `COOKIE` 是必填项
* - `NUMBER` 表示是第几个账号
* - `CLEAR` 是否启用清理功能
* - `ENABLE_MULTIPLE_ACCOUNT` 是否启用多账号
* - `MULTIPLE_ACCOUNT_PARM` 多账号参数(JSON格式)
* ## 调试相关
* - `LOTTERY_LOG_LEVEL` 输出日志等级 Error<Warn<Info<Debug 1<2<3<4
* - `NOT_GO_LOTTERY` 关闭抽奖行为
* ## 多账号
* 1. 将 ENABLE_MULTIPLE_ACCOUNT 的值改为true
* 2. 将账号信息依次填写于 multiple_account_parm 中, 参考例子类推
* - `WAIT` 表示下一个账号运行等待时间(毫秒)
*
* **按顺序依次执行, 防止访问频繁封禁IP**
*/
account_parm: {
COOKIE: "",
NUMBER: 1,
CLEAR: true,
WAIT: 60 * 1000,
ENABLE_MULTIPLE_ACCOUNT: false,
MULTIPLE_ACCOUNT_PARM: "",
LOTTERY_LOG_LEVEL: 3,
NOT_GO_LOTTERY: ""
},
]
/**
* 推送相关参数
*/
const push_parm = {
SCKEY: "",
SENDKEY: "",
QQ_SKEY: "",
QQ_MODE: "",
BARK_PUSH: "",
BARK_SOUND: "",
TG_BOT_TOKEN: "",
TG_USER_ID: "",
TG_PROXY_HOST: "",
TG_PROXY_PORT: "",
DD_BOT_TOKEN: "",
DD_BOT_SECRET: "",
QYWX_KEY: "",
IGOT_PUSH_KEY: "",
PUSH_PLUS_TOKEN: "",
PUSH_PLUS_USER: "",
SMTP_HOST: "",
SMTP_PORT: "",
SMTP_USER: "",
SMTP_PASS: "",
SMTP_TO_USER: ""
}
/**
* 为防止环境变量过长, 请将多账号填在此处
* 以大括号内容为模板依次复制,逗号分割
*/
multiple_account_parm: [
{
COOKIE: "",
NUMBER: 1,
CLEAR: true,
WAIT: 60 * 1000
}
],
/**
* 初始化环境变量
*/
function initEnv() {
process.env = {
...process.env,
...account_parm,
...push_parm
/**
* 推送相关参数
*/
push_parm: {
SCKEY: "",
SENDKEY: "",
QQ_SKEY: "",
QQ_MODE: "",
BARK_PUSH: "",
BARK_SOUND: "",
TG_BOT_TOKEN: "",
TG_USER_ID: "",
TG_PROXY_HOST: "",
TG_PROXY_PORT: "",
DD_BOT_TOKEN: "",
DD_BOT_SECRET: "",
QYWX_KEY: "",
IGOT_PUSH_KEY: "",
PUSH_PLUS_TOKEN: "",
PUSH_PLUS_USER: "",
SMTP_HOST: "",
SMTP_PORT: "",
SMTP_USER: "",
SMTP_PASS: "",
SMTP_TO_USER: ""
}
}
module.exports = { initEnv, multiple_account_parm };
})
+2 -2
View File
@@ -317,7 +317,7 @@ class Searcher {
if (isRelayed) {
_weight += 1;
}
if (_weight >= weight) {
if (_weight >= weight && !config.not_check_article) {
log.warn('获取动态', `1/2动态曾经转过,该专栏或已查看,故中止`)
_dyinfos = []
break
@@ -368,4 +368,4 @@ class Searcher {
}
module.exports = { Searcher };
module.exports = { Searcher };
+15 -6
View File
@@ -1,19 +1,28 @@
const { config_file } = require('../utils');
const my_config = require(config_file);
const config = {
...my_config["default_config"],
/**
* 原始设置
* @returns {Object}
*/
raw_config() {
delete require.cache[config_file];
return require(config_file)
},
/**
* @param {string} n
*/
updata(n) {
const new_config = my_config[`config_${n}`];
const new_config = this.raw_config()[`config_${n}`];
if (new_config) {
Object.entries(new_config)
.forEach(([k, v]) => this[k] = v)
this.setObject(new_config)
}
},
init () {
init() {
this.setObject(this.raw_config()["default_config"])
},
setObject(o) {
Object.entries(o).forEach(([k, v]) => this[k] = v)
}
};
+34
View File
@@ -0,0 +1,34 @@
const { env_file } = require("../utils");
const env = {
/**
* 原始环境
* @returns {Object}
*/
raw_env() {
delete require.cache[env_file];
return require(env_file)
},
init() {
const raw_env = this.raw_env()
this.setEnv({
...raw_env["account_parm"],
...raw_env["push_parm"]
})
},
/**
* @returns {Object[]}
*/
get_multiple_account() {
return this.raw_env()["multiple_account_parm"]
},
setEnv(o) {
process.env = {
...process.env,
...o
}
}
}
module.exports = env;
+1 -1
View File
@@ -28,7 +28,7 @@ function getLatestReleaseDownloadUrl(owner, repo) {
['darwin', 'macos']
]).get(process.platform)
const arch = new Map([
['x64', 'x64']
['x64', 'x64'],
['arm', 'armv7'],
['arm64', 'arm64']
]).get(process.arch)
+32 -8
View File
@@ -95,15 +95,21 @@ async function main() {
}
}
(async function () {
log.proPrint(metainfo, '\n')
/**
* 初始化环境
* @returns {boolean} 出错true
*/
function initEnv() {
if (hasFileOrDir(env_file)) {
const { initEnv, multiple_account_parm } = require(env_file);
const
env = require("./lib/data/env"),
multiple_account_parm = env.get_multiple_account();
if (multiple_account_parm) {
multiple_account = multiple_account_parm;
}
initEnv();
env.init();
log.init();
log.info('环境变量初始化', '成功加载env.js文件');
} else if (hasEnv('COOKIE') || hasEnv('MULTIPLE_ACCOUNT_PARM')) {
@@ -112,17 +118,34 @@ async function main() {
} else {
log.init();
log.error('环境变量初始化', '未在当前目录下找到env.js文件或者在环境变量中设置所需参数');
return
return true
}
return false
}
/**
* 初始化设置
* @returns {boolean} 出错true
*/
function initConfig() {
if (hasFileOrDir(config_file)) {
require("./lib/data/config");
const config = require("./lib/data/config");
config.init();
log.info('配置文件初始化', '成功加载my_config.js文件');
} else {
log.error('配置文件初始化', '未在当前目录下找到my_config.js文件');
return
return true
}
return false
}
(async function () {
log.proPrint(metainfo, '\n')
if (initEnv() || initConfig()) return;
/**OPTIONS */
process.env.lottery_mode = process.argv[2]
@@ -135,6 +158,7 @@ async function main() {
while (loop_wait) {
log.info('程序休眠', `${loop_wait / 1000}秒后再次启动`)
await delay(loop_wait)
if (initEnv() || initConfig()) return;
await main()
}
log.info('结束运行', '未在config.js中设置休眠时间')
+7 -1
View File
@@ -73,6 +73,12 @@ module.exports = {
* - 获取专栏数量
*/
article_scan_page: 3,
/**
* - 不检查专栏是否看过,若选择检查可以提高检测效率
* - 默认false(检查)
*/
not_check_article: false,
/**
* - 开奖时间距离现在的最大天数
@@ -249,4 +255,4 @@ module.exports = {
config_1: {},
config_2: {},
config_3: {}
}
}
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "lottery-auto-script",
"version": "2.1.4",
"version": "2.1.8",
"description": "自动参与B站动态抽奖",
"main": "main.js",
"scripts": {
@@ -52,4 +52,4 @@
"chalk": "^4.1.1",
"nodemailer": "^6.5.0"
}
}
}