1
0
mirror of https://github.com/6dylan6/jdpro.git synced 2026-04-18 18:28:07 +08:00

Compare commits

...

4 Commits

Author SHA1 Message Date
2024
ba4b018953 1 2025-01-14 13:06:24 +08:00
2024
a069399a69 1 2025-01-14 10:22:12 +08:00
2024
04c4fc06a3 1 2025-01-14 08:42:07 +08:00
2024
b3b1fca083 1 2025-01-14 07:27:48 +08:00
5 changed files with 33 additions and 11 deletions

7
jd_anan2_draw.js Normal file

File diff suppressed because one or more lines are too long

View File

@@ -25,7 +25,7 @@ else
fi fi
grep '6dylan6_20240905' /ql/data/config/task_before.sh >/dev/null 2>&1 || grep '6dylan6_20240905' /ql/config/task_before.sh > /dev/null 2>&1 grep '6dylan6_20240905' /ql/data/config/task_before.sh >/dev/null 2>&1 || grep '6dylan6_20240905' /ql/config/task_before.sh > /dev/null 2>&1
if [[ $? != 0 ]];then if [[ $? != 0 ]];then
cp /ql/repo/${repo}/docker/task_before.sh /ql/config/ >/dev/null 2>&1 || cp /ql/data/repo/${repo}/docker/task_before.sh /ql/data/config/ > /dev/null 2>&1 #cp /ql/repo/${repo}/docker/task_before.sh /ql/config/ >/dev/null 2>&1 || cp /ql/data/repo/${repo}/docker/task_before.sh /ql/data/config/ > /dev/null 2>&1
fi fi
[[ $QL_DIR == /ql ]] && dir_root=$QL_DIR [[ $QL_DIR == /ql ]] && dir_root=$QL_DIR
[[ -d $dir_root/data ]] && dir_data=$dir_root/data [[ -d $dir_root/data ]] && dir_data=$dir_root/data

File diff suppressed because one or more lines are too long

9
jx_ttlhb.js Normal file

File diff suppressed because one or more lines are too long

View File

@@ -2125,22 +2125,28 @@ function GetnickName2() {
} }
const got = require('got'); const got = require('got');
require('dotenv').config(); require('dotenv').config();
let exists = fs.existsSync('/ql/data/config/auth.json'); let Fileexists280 = fs.existsSync('/ql/data/db/keyv.sqlite');
let authFile=""; let Fileexists_ = fs.existsSync('/ql/data/config/auth.json');
if (exists) let authFile = "";
authFile="/ql/data/config/auth.json" if (Fileexists280)
authFile = "/ql/data/db/keyv.sqlite"
else if (Fileexists_)
authFile = "/ql/data/config/auth.json"
else else
authFile="/ql/config/auth.json" authFile = "/ql/config/auth.json"
const api = got.extend({ const api = got.extend({
prefixUrl: 'http://127.0.0.1:5600', prefixUrl: 'http://127.0.0.1:5600',
retry: { limit: 0 }, retry: { limit: 0 },
}); });
async function getToken() { async function getToken() {
const authConfig = JSON.parse(fs.readFileSync(authFile)); const authConfig = await fs.readFileSync(authFile);
return authConfig.token; // console.log(authConfig.toString().match(/"token":"(.*?)",/)[1])
return authConfig.toString().match(/"token":"(.*?)",/)[1];
} }
// getToken()
async function getEnvs(){ async function getEnvs(){
const token = await getToken(); const token = await getToken();