You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
306 lines
18 KiB
306 lines
18 KiB
3 years ago
|
/*
|
||
|
安卓:中青看点极速版 (快应用,非IOS极速版,跟普通版青豆数据独立,普通版黑了也可以用)
|
||
|
邀请链接:https://user.youth.cn/h5/fastAppWeb/invite/invite_ground.html?share_uid=1037637302&channel=c8000&nickname=%E5%B0%8F%E8%84%91%E6%96%A7%E8%9B%8B%E8%9B%8B&avatar=http%3A%2F%2Fres.youth.cn%2Favatar_202201_04_04q_61d41c92e21131037637302n.jpg&v=1641312406
|
||
|
|
||
|
支持快应用的安卓手机才能玩
|
||
|
本脚本负责阅读文章,只需要ck即可
|
||
|
定时自己看着改吧,我也不知道一天几次能跑满阅读收益,可能十来次吧
|
||
|
25 8-22 * * *
|
||
|
|
||
|
青龙:
|
||
|
捉包找uid=xxxx&token=xxxxx&token_id=xxxxx,填到变量zqkdFastCookie里,多账号用@连接
|
||
|
|
||
|
V2P 重写:
|
||
|
[rewrite_local]
|
||
|
https://user.youth.cn/FastApi/NewTaskSimple/getTaskList https://raw.githubusercontent.com/leafxcy/JavaScript/main/zqkdFast/zqkdFast_read.js
|
||
|
[MITM]
|
||
|
user.youth.cn
|
||
|
*/
|
||
|
/*
|
||
|
安卓:中青看点极速版 (快应用,非IOS极速版,跟普通版青豆数据独立,普通版黑了也可以用)
|
||
|
邀请链接:https://user.youth.cn/h5/fastAppWeb/invite/invite_ground.html?share_uid=1037638361&channel=c8000&nickname=%E6%AF%8D%E8%80%81%E8%99%8E%E5%A5%B6%E8%8C%B6&avatar=http%3A%2F%2Fres.youth.cn%2Favatar_202201_04_04r_61d4470b744c11037637302y.jpg&v=1641305085
|
||
|
|
||
|
支持快应用的安卓手机才能玩
|
||
|
别再问圈X了,改了改了改了,没有圈X,你要捉了包自己放到圈X跑也不是不行
|
||
|
|
||
|
本脚本负责阅读文章,只需要ck即可
|
||
|
定时自己看着改吧,我也不知道一天几次能跑满阅读收益,可能十来次吧
|
||
|
25 8-22 * * *
|
||
|
|
||
|
青龙:
|
||
|
捉包找uid=xxxx&token=xxxxx&token_id=xxxxx,填到变量zqkdFastCookie里,多账号用@连接
|
||
|
|
||
|
V2P 重写:
|
||
|
[rewrite_local]
|
||
|
https://user.youth.cn/FastApi/NewTaskSimple/getTaskList https://raw.githubusercontent.com/leafxcy/JavaScript/main/zqkdFast/zqkdFast_read.js
|
||
|
[MITM]
|
||
|
user.youth.cn
|
||
|
*/
|
||
|
|
||
|
const jsname = '中青极速版文章'
|
||
|
const $ = Env(jsname)
|
||
|
const logDebug = 0
|
||
|
|
||
|
const updateStr = '2022.01.05 11:17 增加延迟'
|
||
|
const CryptoJS = require('crypto-js')
|
||
|
|
||
|
let rndtime = "" //毫秒
|
||
|
let httpResult //global buffer
|
||
|
|
||
|
let userCookie = ($.isNode() ? process.env.zqkdFastCookie : $.getdata('zqkdFastCookie')) || '';
|
||
|
let userCookieArr = []
|
||
|
|
||
|
let userIdx = 0
|
||
|
let userCount = 0
|
||
|
let userReadList = []
|
||
|
|
||
|
let maxReadNum = 0
|
||
|
|
||
|
///////////////////////////////////////////////////////////////////
|
||
|
|
||
|
!(async () => {
|
||
|
if (typeof $request !== "undefined") {
|
||
|
await GetRewrite()
|
||
|
}else {
|
||
|
console.log(updateStr)
|
||
|
|
||
|
if(!(await checkEnv())) return
|
||
|
|
||
|
for(userIdx=0; userIdx < userCount; userIdx++) {
|
||
|
let art_url=`catid=0&video_catid=1453`
|
||
|
await ListArts(userIdx,art_url,'文章')
|
||
|
art_url=`catid=1453&video_catid=0`
|
||
|
await ListArts(userIdx,art_url,'视频')
|
||
|
}
|
||
|
|
||
|
for(let i=0; i<maxReadNum; i++) {
|
||
|
console.log(`\n第${i+1}轮阅读`)
|
||
|
for(userIdx=0; userIdx < userCount; userIdx++) {
|
||
|
if(i<userReadList[userIdx].length) {
|
||
|
CompleteArts(userIdx,i)
|
||
|
await $.wait(200)
|
||
|
}
|
||
|
}
|
||
|
await $.wait(Math.floor(Math.random()*5000) + 30000)
|
||
|
}
|
||
|
}
|
||
|
})()
|
||
|
.catch((e) => $.logErr(e))
|
||
|
.finally(() => $.done())
|
||
|
|
||
|
///////////////////////////////////////////////////////////////////
|
||
|
async function checkEnv() {
|
||
|
if(userCookie) {
|
||
|
userCookieArr = userCookie.split('@')
|
||
|
userCount = userCookieArr.length
|
||
|
} else {
|
||
|
console.log('未找到zqkdFastCookie')
|
||
|
return false
|
||
|
}
|
||
|
|
||
|
for(let idx in userCookieArr) userReadList.push([])
|
||
|
|
||
|
console.log(`共找到${userCount}个CK`)
|
||
|
return true
|
||
|
}
|
||
|
|
||
|
async function GetRewrite() {
|
||
|
if($request.url.indexOf('FastApi/NewTaskSimple/getTaskList') > -1) {
|
||
|
console.log($request.url)
|
||
|
let uid = $request.url.match(/uid=(\w+)/)[1]
|
||
|
let token = $request.url.match(/token=([\w\%]+)/)[1]
|
||
|
let token_id = $request.url.match(/token_id=(\w+)/)[1]
|
||
|
let ck = `uid=${uid}&token=${token}&token_id=${token_id}`
|
||
|
let uidStr = 'uid='+uid
|
||
|
|
||
|
if(userCookie) {
|
||
|
if(userCookie.indexOf(uidStr) == -1) {
|
||
|
userCookie = userCookie + '@' + ck
|
||
|
$.setdata(userCookie, 'zqkdFastCookie');
|
||
|
ckList = userCookie.split('@')
|
||
|
$.msg(jsname+` 获取第${ckList.length}个zqkdFastCookie成功: ${ck}`)
|
||
|
} else {
|
||
|
console.log(jsname+` 找到重复的cookie: ${ck}`)
|
||
|
}
|
||
|
} else {
|
||
|
$.setdata(ck, 'zqkdFastCookie');
|
||
|
$.msg(jsname+` 获取第1个zqkdFastCookie成功: ${ck}`)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
///////////////////////////////////////////////////////////////////
|
||
|
async function ListArts(userIdx,arts,type) {
|
||
|
let caller = printCaller()
|
||
|
let userCk = userCookieArr[userIdx]
|
||
|
let url = `https://user.youth.cn/FastApi/article/lists.json?${arts}&op=0&behot_time=0&&app_version=2.5.5&${userCk}`
|
||
|
let urlObject = populateGetUrl(url)
|
||
|
await httpGet(urlObject,caller)
|
||
|
let result = httpResult;
|
||
|
if(!result) return
|
||
|
|
||
|
if(result.error_code == 0) {
|
||
|
for(let item of result.items) {
|
||
|
userReadList[userIdx].push(item.signature)
|
||
|
}
|
||
|
maxReadNum = getMax(maxReadNum,userReadList[userIdx].length)
|
||
|
console.log(`用户${userIdx+1}获取${type}列表成功,现有数量:${userReadList[userIdx].length}`)
|
||
|
} else {
|
||
|
console.log(`${result.message}`)
|
||
|
}
|
||
|
}
|
||
|
//https://user.youth.cn/FastApi/article/lists.json??catid=1453&video_catid=0&op=0&behot_time=0&&app_version=2.5.5
|
||
|
async function CompleteArts(uIdx,signIdx) {
|
||
|
let caller = printCaller()
|
||
|
let sign = userReadList[userIdx][signIdx]
|
||
|
|
||
|
let tmpstr=`app_version=2.5.5&signature=${sign}`
|
||
|
|
||
|
|
||
|
let fakesign=await encodeStr(tmpstr)
|
||
|
let newstr=`signature=${sign}&app_version=2.5.5&sign=${fakesign}`
|
||
|
|
||
|
//let url = `https://user.youth.cn/FastApi/article/complete.json?signature=${sign}&app_version=2.5.5`
|
||
|
let url = `https://user.youth.cn/FastApi/article/complete.json?${newstr}`
|
||
|
//console.log(url)
|
||
|
let urlObject = populateGetUrl(url)
|
||
|
await httpGet(urlObject,caller)
|
||
|
let result = httpResult;
|
||
|
if(!result) return
|
||
|
|
||
|
if(result.error_code == 0) {
|
||
|
console.log(`用户${uIdx+1}[${result.items.uid}]阅读文章获得${result.items.read_score}青豆`)
|
||
|
} else {
|
||
|
console.log(`${result.message}`)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function encodeStr(str) {
|
||
|
let Str1 = 'jdvylqcGGHHJZrfw0o2DgAbsmBCCGUapF1YChc'
|
||
|
//replacedStr = decodeURIComponent(str)
|
||
|
//replacedStr = replacedStr.replace(/\&/g, '')
|
||
|
replacedStr = str.replace(/\&/g, '')
|
||
|
replacedStr += Str1
|
||
|
md5Str = CryptoJS.MD5(replacedStr).toString()
|
||
|
return md5Str
|
||
|
}
|
||
|
////////////////////////////////////////////////////////////////////
|
||
|
function populatePostUrl(url,reqBody){
|
||
|
let urlObject = {
|
||
|
url: url,
|
||
|
headers: {
|
||
|
'User-Agent' : 'Mozilla/5.0 (Linux; Android 5.1; OPPO R9tm Build/LMY47I; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/43.0.2357.121 Mobile Safari/537.36 hap/1.0.8.1/oppo com.nearme.instant.platform/4.2.1 com.youth.kandianquickapp/2.5.5 ({"packageName":"com.oppo.launcher","type":"shortcut","extra":{"original":{"packageName":"com.oppo.market","type":"sdk","extra":{}},"scene":"api"}})',
|
||
|
'Accept-Language' : 'zh-CN,zh;q=0.9,en;q=0.8',
|
||
|
'Content-Type' : 'application/x-www-form-urlencoded; charset=utf-8',
|
||
|
'Host' : 'user.youth.cn',
|
||
|
'Connection' : 'Keep-Alive',
|
||
|
'Accept-Encoding' : 'gzip',
|
||
|
},
|
||
|
body: reqBody
|
||
|
}
|
||
|
return urlObject;
|
||
|
}
|
||
|
|
||
|
function populateGetUrl(url){
|
||
|
let urlObject = {
|
||
|
url: url,
|
||
|
headers: {
|
||
|
'User-Agent' : 'Mozilla/5.0 (Linux; Android 5.1; OPPO R9tm Build/LMY47I; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/43.0.2357.121 Mobile Safari/537.36 hap/1.0.8.1/oppo com.nearme.instant.platform/4.2.1 com.youth.kandianquickapp/2.5.5 ({"packageName":"com.oppo.launcher","type":"shortcut","extra":{"original":{"packageName":"com.oppo.market","type":"sdk","extra":{}},"scene":"api"}})',
|
||
|
'Accept-Language' : 'zh-CN,zh;q=0.9,en;q=0.8',
|
||
|
'Content-Type' : 'application/x-www-form-urlencoded; charset=utf-8',
|
||
|
'Host' : 'user.youth.cn',
|
||
|
'Connection' : 'Keep-Alive',
|
||
|
'Accept-Encoding' : 'gzip',
|
||
|
}
|
||
|
}
|
||
|
return urlObject;
|
||
|
}
|
||
|
|
||
|
async function httpPost(url,caller) {
|
||
|
httpResult = null
|
||
|
return new Promise((resolve) => {
|
||
|
$.post(url, async (err, resp, data) => {
|
||
|
try {
|
||
|
if (err) {
|
||
|
console.log(caller + ": post请求失败");
|
||
|
console.log(JSON.stringify(err));
|
||
|
$.logErr(err);
|
||
|
} else {
|
||
|
if (safeGet(data)) {
|
||
|
httpResult = JSON.parse(data);
|
||
|
if(logDebug) console.log(httpResult);
|
||
|
}
|
||
|
}
|
||
|
} catch (e) {
|
||
|
$.logErr(e, resp);
|
||
|
} finally {
|
||
|
resolve();
|
||
|
}
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
|
||
|
async function httpGet(url,caller) {
|
||
|
httpResult = null
|
||
|
return new Promise((resolve) => {
|
||
|
$.get(url, async (err, resp, data) => {
|
||
|
try {
|
||
|
if (err) {
|
||
|
console.log(caller + ": get请求失败");
|
||
|
console.log(JSON.stringify(err));
|
||
|
$.logErr(err);
|
||
|
} else {
|
||
|
if (safeGet(data,caller)) {
|
||
|
httpResult = JSON.parse(data);
|
||
|
if(logDebug) console.log(httpResult);
|
||
|
}
|
||
|
}
|
||
|
} catch (e) {
|
||
|
$.logErr(e, resp);
|
||
|
} finally {
|
||
|
resolve();
|
||
|
}
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
|
||
|
function safeGet(data,caller) {
|
||
|
try {
|
||
|
if (typeof JSON.parse(data) == "object") {
|
||
|
return true;
|
||
|
} else {
|
||
|
console.log(`Function ${caller}: 未知错误`);
|
||
|
console.log(data)
|
||
|
}
|
||
|
} catch (e) {
|
||
|
console.log(e);
|
||
|
console.log(`Function ${caller}: 服务器访问数据为空,请检查自身设备网络情况`);
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function printCaller(){
|
||
|
return (new Error()).stack.split("\n")[2].trim().split(" ")[1]
|
||
|
}
|
||
|
|
||
|
|
||
|
function getMin(a,b){
|
||
|
return ((a<b) ? a : b)
|
||
|
}
|
||
|
|
||
|
function getMax(a,b){
|
||
|
return ((a<b) ? b : a)
|
||
|
}
|
||
|
|
||
|
function randomString(len=12) {
|
||
|
let chars = 'qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM';
|
||
|
let maxLen = chars.length;
|
||
|
let str = '';
|
||
|
for (i = 0; i < len; i++) {
|
||
|
str += chars.charAt(Math.floor(Math.random()*maxLen));
|
||
|
}
|
||
|
return str;
|
||
|
}
|
||
|
|
||
|
function Env(t,e){"undefined"!=typeof process&&JSON.stringify(process.env).indexOf("GITHUB")>-1&&process.exit(0);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["Con
|
||
|
|