Skip to content

Commit 7cadf90

Browse files
committed
取消微博钱包ck测试
1 parent 0a1b2d9 commit 7cadf90

3 files changed

Lines changed: 87 additions & 47 deletions

File tree

.github/workflows/youth_read.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ name: 中青自动阅读
66
on:
77
workflow_dispatch:
88
schedule:
9-
- cron: '6 1-12/2 * * *'
9+
- cron: '*/15 1-12/2 * * *'
1010
watch:
1111
types: started
1212
jobs:
@@ -35,24 +35,28 @@ jobs:
3535
node Task/Youth_Read.js
3636
env:
3737
YOUTH_READ: ${{ secrets.YOUTH_READ }}
38+
YOUTH_TIME: ${{ secrets.YOUTH_TIME }}
3839

3940
- name: '运行 【中青看点自动阅读二】'
4041
if: env.YOUTH_READ2
4142
run: |
4243
node Task/Youth_Read.js
4344
env:
4445
YOUTH_READ: ${{ secrets.YOUTH_READ2 }}
46+
YOUTH_TIME: ${{ secrets.YOUTH_TIME2 }}
4547

4648
- name: '运行 【中青看点自动阅读三】'
4749
if: env.YOUTH_READ3
4850
run: |
4951
node Task/Youth_Read.js
5052
env:
5153
YOUTH_READ: ${{ secrets.YOUTH_READ3 }}
54+
YOUTH_TIME: ${{ secrets.YOUTH_TIME3 }}
5255

5356
- name: '运行 【中青看点自动阅读四】'
5457
if: env.YOUTH_READ4
5558
run: |
5659
node Task/Youth_Read.js
5760
env:
5861
YOUTH_READ: ${{ secrets.YOUTH_READ4 }}
62+
YOUTH_TIME: ${{ secrets.YOUTH_TIME4 }}

Task/Youth_Read.js

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,10 @@ let ReadArr = [], YouthBody = "",readscore = 0;
4141
console.log(`-------------------------\n\n开始中青看点第${$.index}次阅读`)
4242
}
4343
await AutoRead();
44+
if (process.env.YOUTH_TIME){
45+
timebodyVal = process.env.YOUTH_TIME;
46+
await readTime()
47+
};
4448
}
4549
console.log(`-------------------------\n\n中青看点共完成${$.index}次阅读,共计获得${readscore}个青豆,阅读请求全部结束`)
4650
})()
@@ -80,4 +84,29 @@ function AutoRead() {
8084
})
8185
}
8286

87+
function batHost(api, body) {
88+
return {
89+
url: 'https://ios.baertt.com/v5/'+api,
90+
headers: {
91+
'User-Agent': 'KDApp/2.0.0 (iPhone; iOS 14.5; Scale/3.00)',
92+
'Host': 'ios.baertt.com',
93+
'Content-Type': 'application/x-www-form-urlencoded'
94+
},
95+
body: body
96+
}
97+
}
98+
99+
function readTime() {
100+
return new Promise((resolve, reject) => {
101+
$.post(batHost('user/stay.json',timebodyVal), (error, resp, data) => {
102+
let timeres = JSON.parse(data)
103+
if (timeres.error_code == 0) {
104+
readtimes = timeres.time / 60
105+
$.log(`阅读时长共计` + Math.floor(readtimes) + `分钟`)
106+
}
107+
resolve()
108+
})
109+
})
110+
}
111+
83112
function Env(t,e){class s{constructor(t){this.env=t}send(t,e="GET"){t="string"==typeof t?{url:t}:t;let s=this.get;return"POST"===e&&(s=this.post),new Promise((e,i)=>{s.call(this,t,(t,s,r)=>{t?i(t):e(s)})})}get(t){return this.send.call(this.env,t)}post(t){return this.send.call(this.env,t,"POST")}}return new class{constructor(t,e){this.name=t,this.http=new s(this),this.data=null,this.dataFile="box.dat",this.logs=[],this.isMute=!1,this.isNeedRewrite=!1,this.logSeparator="\n",this.startTime=(new Date).getTime(),Object.assign(this,e),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}toObj(t,e=null){try{return JSON.parse(t)}catch{return e}}toStr(t,e=null){try{return JSON.stringify(t)}catch{return e}}getjson(t,e){let s=e;const i=this.getdata(t);if(i)try{s=JSON.parse(this.getdata(t))}catch{}return s}setjson(t,e){try{return this.setdata(JSON.stringify(t),e)}catch{return!1}}getScript(t){return new Promise(e=>{this.get({url:t},(t,s,i)=>e(i))})}runScript(t,e){return new Promise(s=>{let i=this.getdata("@chavy_boxjs_userCfgs.httpapi");i=i?i.replace(/\n/g,"").trim():i;let r=this.getdata("@chavy_boxjs_userCfgs.httpapi_timeout");r=r?1*r:20,r=e&&e.timeout?e.timeout:r;const[o,h]=i.split("@"),a={url:`http://${h}/v1/scripting/evaluate`,body:{script_text:t,mock_type:"cron",timeout:r},headers:{"X-Key":o,Accept:"*/*"}};this.post(a,(t,e,i)=>s(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),e=this.path.resolve(process.cwd(),this.dataFile),s=this.fs.existsSync(t),i=!s&&this.fs.existsSync(e);if(!s&&!i)return{};{const i=s?t:e;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),e=this.path.resolve(process.cwd(),this.dataFile),s=this.fs.existsSync(t),i=!s&&this.fs.existsSync(e),r=JSON.stringify(this.data);s?this.fs.writeFileSync(t,r):i?this.fs.writeFileSync(e,r):this.fs.writeFileSync(t,r)}}lodash_get(t,e,s){const i=e.replace(/\[(\d+)\]/g,".$1").split(".");let r=t;for(const t of i)if(r=Object(r)[t],void 0===r)return s;return r}lodash_set(t,e,s){return Object(t)!==t?t:(Array.isArray(e)||(e=e.toString().match(/[^.[\]]+/g)||[]),e.slice(0,-1).reduce((t,s,i)=>Object(t[s])===t[s]?t[s]:t[s]=Math.abs(e[i+1])>>0==+e[i+1]?[]:{},t)[e[e.length-1]]=s,t)}getdata(t){let e=this.getval(t);if(/^@/.test(t)){const[,s,i]=/^@(.*?)\.(.*?)$/.exec(t),r=s?this.getval(s):"";if(r)try{const t=JSON.parse(r);e=t?this.lodash_get(t,i,""):e}catch(t){e=""}}return e}setdata(t,e){let s=!1;if(/^@/.test(e)){const[,i,r]=/^@(.*?)\.(.*?)$/.exec(e),o=this.getval(i),h=i?"null"===o?null:o||"{}":"{}";try{const e=JSON.parse(h);this.lodash_set(e,r,t),s=this.setval(JSON.stringify(e),i)}catch(e){const o={};this.lodash_set(o,r,t),s=this.setval(JSON.stringify(o),i)}}else s=this.setval(t,e);return s}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,e){return this.isSurge()||this.isLoon()?$persistentStore.write(t,e):this.isQuanX()?$prefs.setValueForKey(t,e):this.isNode()?(this.data=this.loaddata(),this.data[e]=t,this.writedata(),!0):this.data&&this.data[e]||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,e=(()=>{})){t.headers&&(delete t.headers["Content-Type"],delete t.headers["Content-Length"]),this.isSurge()||this.isLoon()?(this.isSurge()&&this.isNeedRewrite&&(t.headers=t.headers||{},Object.assign(t.headers,{"X-Surge-Skip-Scripting":!1})),$httpClient.get(t,(t,s,i)=>{!t&&s&&(s.body=i,s.statusCode=s.status),e(t,s,i)})):this.isQuanX()?(this.isNeedRewrite&&(t.opts=t.opts||{},Object.assign(t.opts,{hints:!1})),$task.fetch(t).then(t=>{const{statusCode:s,statusCode:i,headers:r,body:o}=t;e(null,{status:s,statusCode:i,headers:r,body:o},o)},t=>e(t))):this.isNode()&&(this.initGotEnv(t),this.got(t).on("redirect",(t,e)=>{try{if(t.headers["set-cookie"]){const s=t.headers["set-cookie"].map(this.cktough.Cookie.parse).toString();this.ckjar.setCookieSync(s,null),e.cookieJar=this.ckjar}}catch(t){this.logErr(t)}}).then(t=>{const{statusCode:s,statusCode:i,headers:r,body:o}=t;e(null,{status:s,statusCode:i,headers:r,body:o},o)},t=>{const{message:s,response:i}=t;e(s,i,i&&i.body)}))}post(t,e=(()=>{})){if(t.body&&t.headers&&!t.headers["Content-Type"]&&(t.headers["Content-Type"]="application/x-www-form-urlencoded"),t.headers&&delete t.headers["Content-Length"],this.isSurge()||this.isLoon())this.isSurge()&&this.isNeedRewrite&&(t.headers=t.headers||{},Object.assign(t.headers,{"X-Surge-Skip-Scripting":!1})),$httpClient.post(t,(t,s,i)=>{!t&&s&&(s.body=i,s.statusCode=s.status),e(t,s,i)});else if(this.isQuanX())t.method="POST",this.isNeedRewrite&&(t.opts=t.opts||{},Object.assign(t.opts,{hints:!1})),$task.fetch(t).then(t=>{const{statusCode:s,statusCode:i,headers:r,body:o}=t;e(null,{status:s,statusCode:i,headers:r,body:o},o)},t=>e(t));else if(this.isNode()){this.initGotEnv(t);const{url:s,...i}=t;this.got.post(s,i).then(t=>{const{statusCode:s,statusCode:i,headers:r,body:o}=t;e(null,{status:s,statusCode:i,headers:r,body:o},o)},t=>{const{message:s,response:i}=t;e(s,i,i&&i.body)})}}time(t){let e={"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 s in e)new RegExp("("+s+")").test(t)&&(t=t.replace(RegExp.$1,1==RegExp.$1.length?e[s]:("00"+e[s]).substr((""+e[s]).length)));return t}msg(e=t,s="",i="",r){const o=t=>{if(!t)return t;if("string"==typeof t)return this.isLoon()?t:this.isQuanX()?{"open-url":t}:this.isSurge()?{url:t}:void 0;if("object"==typeof t){if(this.isLoon()){let e=t.openUrl||t.url||t["open-url"],s=t.mediaUrl||t["media-url"];return{openUrl:e,mediaUrl:s}}if(this.isQuanX()){let e=t["open-url"]||t.url||t.openUrl,s=t["media-url"]||t.mediaUrl;return{"open-url":e,"media-url":s}}if(this.isSurge()){let e=t.url||t.openUrl||t["open-url"];return{url:e}}}};this.isMute||(this.isSurge()||this.isLoon()?$notification.post(e,s,i,o(r)):this.isQuanX()&&$notify(e,s,i,o(r)));let h=["","==============\ud83d\udce3\u7cfb\u7edf\u901a\u77e5\ud83d\udce3=============="];h.push(e),s&&h.push(s),i&&h.push(i),console.log(h.join("\n")),this.logs=this.logs.concat(h)}log(...t){t.length>0&&(this.logs=[...this.logs,...t]),console.log(t.join(this.logSeparator))}logErr(t,e){const s=!this.isSurge()&&!this.isQuanX()&&!this.isLoon();s?this.log("",`\u2757\ufe0f${this.name}, \u9519\u8bef!`,t.stack):this.log("",`\u2757\ufe0f${this.name}, \u9519\u8bef!`,t)}wait(t){return new Promise(e=>setTimeout(e,t))}done(t={}){const e=(new Date).getTime(),s=(e-this.startTime)/1e3;this.log("",`\ud83d\udd14${this.name}, \u7ed3\u675f! \ud83d\udd5b ${s} \u79d2`),this.log(),(this.isSurge()||this.isQuanX()||this.isLoon())&&$done(t)}}(t,e)}

Task/weibo.js

Lines changed: 53 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,25 @@
11
/*
22
更新时间: 2021-02-10 14:25
33
4-
本脚本仅适用于微博每日签到,支持Actions多账号运行
4+
本脚本仅适用于微博每日签到,支持多账号运行
55
6+
7+
获取ck: https:\/\/api\.weibo\.cn\/\d\/users\/show url script-request-header weibo.js
68
*/
79

810
const $ = new Env('新浪微博')
911
const notify = $.isNode() ? require('./sendNotify') : '';
10-
let tokenArr = [],payArr = [],paybag;
12+
let tokenArr = [];
13+
let wbtoken = $.getdata('sy_token_wb')
1114

1215
if (isGetCookie = typeof $request !==`undefined`) {
1316
GetCookie();
1417
$.done()
1518
}
19+
20+
if(!$.isNode()&&wbtoken.indexOf("#")==-1){
21+
tokenArr.push(wbtoken)
22+
} else {
1623
if ($.isNode()) {
1724
if (process.env.WB_TOKEN && process.env.WB_TOKEN.indexOf('#') > -1) {
1825
wbtoken = process.env.WB_TOKEN.split('#');
@@ -22,33 +29,18 @@ if ($.isNode()) {
2229
wbtoken = process.env.WB_TOKEN.split('\n');
2330
console.log(`您选择的是用换行隔开\n`)
2431
} else {
25-
wbtoken = process.env.WB_TOKEN.split()
26-
};
27-
if (process.env.WB_PAY && process.env.WB_PAY.indexOf('#') > -1) {
28-
wbPay = process.env.WB_PAY.split('#');
29-
}
30-
else if (process.env.WB_PAY && process.env.WB_PAY.split('\n').length > 0) {
31-
wbPay = process.env.WB_PAY.split('\n');
32-
} else {
33-
wbPay = process.env.WB_PAY.split()
32+
wbtoken = [process.env.WB_TOKEN]
3433
};
34+
console.log(`============ 脚本执行-北京时间(UTC+8):${new Date(new Date().getTime() + 8 * 60 * 60 * 1000).toLocaleString()} =============\n`)
35+
} else if (!$.isNode()&&wbtoken.indexOf("#")>-1) {
36+
wbtoken = wbtoken.split("#")
37+
}
3538
Object.keys(wbtoken).forEach((item) => {
3639
if (wbtoken[item]) {
3740
tokenArr.push(wbtoken[item])
3841
}
3942
});
40-
Object.keys(wbPay).forEach((item) => {
41-
if (wbPay[item]) {
42-
payArr.push(wbPay[item])
43-
}
44-
});
45-
console.log(`============ 脚本执行-国际标准时间(UTC):${new Date().toLocaleString()} =============\n`)
46-
console.log(`============ 脚本执行-北京时间(UTC+8):${new Date(new Date().getTime() + 8 * 60 * 60 * 1000).toLocaleString()} =============\n`)
47-
} else {
48-
tokenArr.push($.getdata('sy_token_wb'))
49-
payArr.push($.getdata('sy_payheader_wb'))
5043
}
51-
5244
!(async () => {
5345
if (!tokenArr[0]) {
5446
$.msg($.name, '【提示】请先获取新浪微博一cookie')
@@ -58,17 +50,12 @@ if ($.isNode()) {
5850
for (let i = 0; i < tokenArr.length; i++) {
5951
if (tokenArr[i]) {
6052
token = tokenArr[i];
61-
payheaderVal = payArr[i];
6253
$.index = i + 1;
6354
console.log(`\n开始【微博签到${$.index}】`)
6455
await getsign();
6556
await doCard();
66-
if (payheaderVal !== undefined){
6757
await paysign()
68-
} else {
69-
paybag = `【钱包签到】❌ 未获取Cooiekie`
70-
};
71-
await showmsg()
58+
await showmsg()
7259
}
7360
}
7461
})()
@@ -77,25 +64,32 @@ if ($.isNode()) {
7764

7865

7966
function GetCookie() {
80-
if ($request && $request.method != 'OPTIONS' && $request.url.indexOf("gsid=")>-1) {
81-
const signurlVal = $request.url
82-
const token = signurlVal.replace(/(.+)(gsid=[_a-zA-Z0-9-]+)(&.+)(&s=\w+)/,'$2$4')
83-
$.log(`token:${token}`)
84-
if (token) $.setdata(token, 'sy_token_wb')
85-
$.msg($.name, `获取微博签到Cookie: 成功`, ``)
86-
} else if ($request && $request.method != 'OPTIONS' && $request.url.match(/\/home\/welfare\/signin\/do\?_=[1-9]+/)) {
87-
const payheaderVal = JSON.stringify($request.headers)
88-
if (payheaderVal) $.setdata(payheaderVal, 'sy_payheader_wb')
89-
$.msg($.name, `获取微博钱包Cookie: 成功`, ``)}
67+
if ($request && $request.method != 'OPTIONS' && $request.url.indexOf("gsid=") > -1) {
68+
const signurlVal = $request.url;
69+
let token = signurlVal.replace(/(.+)(uid=\d+)(.+)(&gsid=[_a-zA-Z0-9-]+)(&.+)(&s=\w+)/,'$2$4$6'),
70+
uid = token.match(/uid=\d+/);
71+
if (wbtoken) {
72+
if (wbtoken.indexOf(uid) > -1) {
73+
$.log("此账号Cookie已存在,本次跳过")
74+
} else if (wbtoken.indexOf(uid) == -1) {
75+
tokens = wbtoken + "#" + token;
76+
$.setdata(tokens, 'sy_token_wb');
77+
$.log(`tokens: ${tokens}`)
78+
}
79+
} else {
80+
$.setdata(token, 'sy_token_wb');
81+
$.log(`tokens: ${token}`)
82+
}
83+
$.msg($.name, `获取微博签到Cookie: 成功`, ``)
84+
}
9085
}
91-
9286
//微博签到
9387
function getsign() {
9488
return new Promise((resolve, reject) =>{
9589
let signurl = {
96-
url: `https://api.weibo.cn/2/checkin/add?from=10B2093010&c=iphone&${token}`,
97-
headers: {"User-Agent": `Weibo/46902 (iPhone; iOS 14; Scale/3.00)`}}
98-
$.post(signurl, async(error, resp, data) => {
90+
url: `https://api.weibo.cn/2/checkin/add?from=10B2193010&c=iphone&${token}`,
91+
headers: {"User-Agent": `Weibo/52021 (iPhone; iOS 14.5; Scale/3.00)`}}
92+
$.get(signurl, async(error, resp, data) => {
9993
let result = JSON.parse(data)
10094
if (result.status == 10000){
10195
wbsign = `【微博签到】✅ 连续签到${result.data.continuous}天,收益: ${result.data.desc}💰\n`
@@ -121,13 +115,18 @@ function getsign() {
121115
function doCard() {
122116
return new Promise((resolve, reject) =>{
123117
let doCardurl = {
124-
url: `https://api.weibo.cn/2/!/ug/king_act_home?from=10B2093010&c=iphone&${token}`,
125-
headers: {"User-Agent": `Weibo/46902 (iPhone; iOS 14; Scale/3.00)`}}
118+
url: `https://api.weibo.cn/2/!/ug/king_act_home?from=10B2193010&c=iphone&${token}`,
119+
headers: {"User-Agent": `Weibo/52021 (iPhone; iOS 14.5; Scale/3.00)`}}
126120
$.get(doCardurl, (error, resp, data) => {
121+
//$.log(data)
127122
let result = JSON.parse(data)
128123
if (result.status ==10000){
129124
nickname = "昵称: "+result.data.user.nickname
125+
if(tokenArr.length==1){
130126
$.setdata(nickname,'wb_nick')
127+
} else {
128+
$.setdata(tokenArr.length+"合一(多账号)",'wb_nick')
129+
}
131130
signday = result.data.signin.title.split('<')[0]
132131
docard = `【每日打卡】 ✅ `+ signday+'天 积分总计: '+result.data.user.energy
133132
}
@@ -142,7 +141,15 @@ function doCard() {
142141
// 钱包签到
143142
function paysign() {
144143
return new Promise((resolve, reject) =>{
145-
$.post({url: `https://pay.sc.weibo.com/aj/mobile/home/welfare/signin/do?_=${$.startTime+10}`,headers: JSON.parse(payheaderVal)
144+
$.post({
145+
url: `https://pay.sc.weibo.com/aj/mobile/home/welfare/signin/do?_=${$.startTime+10}&${token}`,
146+
headers:{
147+
'Accept-Encoding': 'gzip, deflate',
148+
'Connection': 'keep-alive',
149+
'Content-Type': 'application/x-www-form-urlencoded',
150+
'Host': 'pay.sc.weibo.com',
151+
'User-Agent': 'Mozilla/5.0 (iPhone; CPU iPhone OS 14_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 Weibo (iPhone10,1__weibo__11.2.1__iphone__os14.5)'
152+
}
146153
}, (error, resp, data) => {
147154
let result = JSON.parse(data)
148155
if (result.status == 1){
@@ -152,7 +159,7 @@ function paysign() {
152159
paybag = `【微博钱包】 🔁\n`
153160
}
154161
else {
155-
paybag = `【钱包签到】❌ Cookie失效`+'\n'
162+
paybag = `【钱包签到】❌ Cookie失效`+'\n'
156163
}
157164
resolve()
158165
})

0 commit comments

Comments
 (0)