From 4247e161294c316b2032e3aad73463055d240e42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E6=B4=9B?= Date: Mon, 2 Aug 2021 11:00:39 +0800 Subject: [PATCH] =?UTF-8?q?=E8=85=BE=E8=AE=AF=E8=A7=86=E9=A2=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ck_vqq.js | 328 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ ck_vqq.py | 131 ---------------------- 2 files changed, 328 insertions(+), 131 deletions(-) create mode 100644 ck_vqq.js delete mode 100644 ck_vqq.py diff --git a/ck_vqq.js b/ck_vqq.js new file mode 100644 index 0000000..b444378 --- /dev/null +++ b/ck_vqq.js @@ -0,0 +1,328 @@ +/**** + * + * @description 腾讯视频好莱坞会员V力值签到,手机签到和领取任务及奖励。 + * @author BlueSkyClouds + * @create_at 2021-01-10 + */ + +/* + +[task_local] +#腾讯视频会员签到 +12 0-23/6 * * * ck_vqq.js + + */ + +const $ = new Env('腾讯视频会员签到'); +const notify = $.isNode() ? require('./sendNotify') : ''; +const fs = require('fs'); + +let rawdata = fs.readFileSync('/ql/config/check.json'); +let config = JSON.parse(rawdata); +let VQQ_COOKIE_LIST = config.VQQ_COOKIE_LIST[0] +const _cookie = VQQ_COOKIE_LIST.vqq_cookie +const ref_url = VQQ_COOKIE_LIST.auth_refresh + +const auth = getAuth() +const axios = require('axios') +const UTC8 = new Date().getTime() + new Date().getTimezoneOffset()*60*1000 + 8*60*60*1000; +notice = timeFormat(UTC8) + "\n" + +const headers = { + 'Referer': 'https://v.qq.com', + 'User-Agent':'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.204 Safari/537.36', + 'Cookie': _cookie +} + +/** + * @description 拼接REF_URL + */ +ref_url_ver() + +/** + * @description 封装一个解析setCookie的方法 + * @returns obj + * @param c_list + */ +function parseSet(c_list) { + let obj = {} + c_list.map(t=>{ + const obj = {} + t.split(', ')[0].split(';').forEach(item=>{ + const [key, val] = item.split('=') + obj[key] = val + }) + return obj + }).forEach(t=>obj = { ...obj, ...t }) + return obj +} + +/** + * @description 获取有效的cookie参数 + * @param {*} [c=_cookie] + * @returns obj + */ +function getAuth(c = _cookie) { + let needParams = [""] + //适配微信登录 + if(_cookie){ + if (_cookie.includes("main_login=wx")) { + needParams = ["tvfe_boss_uuid","video_guid","video_platform","pgv_pvid","pgv_info","pgv_pvi","pgv_si","_qpsvr_localtk","RK","ptcz","ptui_loginuin","main_login","access_token","appid","openid","vuserid","vusession"] + } else if (_cookie.includes("main_login=qq")){ + needParams = ["tvfe_boss_uuid","video_guid","video_platform","pgv_pvid","pgv_info","pgv_pvi","pgv_si","_qpsvr_localtk","RK","ptcz","ptui_loginuin","main_login","vqq_access_token","vqq_appid","vqq_openid","vqq_vuserid","vqq_vusession"] + } else { + console.log("getAuth - 无法提取有效cookie参数") + } + } + const obj = {} + if(c){ + c.split('; ').forEach(t=>{ + const [key, val] = t.split(/\=(.*)$/,2) + needParams.indexOf(key) !==-1 && ( obj[key] = val) + }) + } + return obj +} + +/** + * @description 刷新每天更新cookie参数 + * @returns + */ +function refCookie(url = ref_url) { + return new Promise((resovle, reject)=>{ + axios({ url, headers }).then(e =>{ + const { vusession } = parseSet(e.headers['set-cookie']) + const { vqq_vusession } = parseSet(e.headers['set-cookie']) + const { access_token } = parseSet(e.headers['set-cookie']) + //微信多一个access_token + if (vusession) { + auth['vusession'] = vusession + auth['access_token'] = access_token + } else { + auth['vqq_vusession'] = vqq_vusession + } + // 刷新cookie后去签到 + resovle({ + ...headers, Cookie: Object.keys(auth).map(i => i + '=' + auth[i]).join('; '), + 'Referer': 'https://m.v.qq.com' + }) + }).catch(reject) + }) +} + +/** + * @description 验证ref_url是否正确 + */ +function ref_url_ver(url = ref_url,_cookie) { + $.get({ + url, headers + }, function(error, response, data) { + if (error) { + $.log(error); + console.log("腾讯视频会员签到", "验证ref_url请求失败 ‼️‼️", error) + } else { + if (data.match(/nick/)) { //通过验证获取QQ昵称参数来判断是否正确 + console.log("验证成功,执行主程序") + exports.main() + } else { + console.log("验证ref_url失败,无法获取个人资料 ref_url或Cookie失效 ‼️‼️") + notify.sendNotify("腾讯视频会员签到", '验证ref_url失败,无法获取个人资料 ref_url或Cookie失效 ‼️‼️'); + } + } + }) +} + +// 手机端签到 +function txVideoSignIn(headers) { + $.get({ + url: `https://vip.video.qq.com/fcgi-bin/comm_cgi?name=hierarchical_task_system&cmd=2&_=${ parseInt(Math.random()*1000) }`,headers + }, function(error, response, data) { + if (error) { + $.log(error); + console.log("腾讯视频会员签到", "签到请求失败 ‼️‼️", error) + } else { + if (data.match(/Account Verify Error/)) { + notice += "腾讯视频会员签到:签到失败-Cookie失效 ‼️‼️"+ "\n" + console.log("腾讯视频会员签到:签到失败, Cookie失效 ‼️‼️") + } else if (data.match(/checkin_score/)) { + msg = data.match(/checkin_score": (.+?),"msg/)[1] + //通过分数判断是否重复签到 + if(msg == '0'){ + console.log("腾讯视频会员手机端签到失败:重复签到 ‼️‼️") + notice += "腾讯视频会员手机端签到失败:重复签到 ‼️‼️" + "\n" + }else{ + notice += "腾讯视频会员手机端签到成功:签到分数:" + msg + "分 🎉"+ "\n" + console.log("腾讯视频会员手机端签到成功:签到分数:" + msg + "分 🎉") + } + } else if (data.match(/Not VIP/)) { + notice += "腾讯视频会员签到:非会员无法签到" + console.log("腾讯视频会员签到:非会员无法签到" ) + } else { + console.log("腾讯视频会员签到:脚本待更新 ‼️‼️") + //输出日志查找原因 + console.log(data) + } + } + }) +} + +// 签到2 +function txVideoCheckin(headers){ + $.get({ + url: `http://v.qq.com/x/bu/mobile_checkin?isDarkMode=0&uiType=REGULAR`,headers + }, function(error, response, data) { + if (error) { + $.log(error); + console.log("腾讯视频会员二次签到", "签到请求失败 ‼️‼️", error) + } else { + if (data.match(/Unauthorized/)) { + notice += "腾讯视频会员二次签到失败:Cookie失效 ‼️‼️"+ "\n" + console.log("腾讯视频会员签到:二次签到失败, Cookie失效 ‼️‼️") + } else if (data.match(/isMultiple/)) { + console.log("腾讯视频会员二次签到:二次签到成功" ) + notice += "腾讯视频会员二次签到:二次签到成功" + "\n" + } else { + console.log("腾讯视频会员二次签到:签到失败,自行在腾讯视频APP内登录网址签到http://v.qq.com/x/bu/mobile_checkin (基本每周都需要手动签到一次才可以.)") + console.log("腾讯视频会员二次签到相关教程:https://cdn.jsdelivr.net/gh/BlueskyClouds/Script@master/img/2021/01/15/img/v_2sign.jpg") + notice += "腾讯视频会员二次签到:签到失败,自行在腾讯视频APP内部登录网址签到http://v.qq.com/x/bu/mobile_checkin"+ "\n" + "基本每周都需要手动签到一次第二天才会自动运行\n" + //输出日志查找原因 + //console.log(data) + } + } + }) +} + +//下载任务签到请求 +function txVideoDownTask1(headers) { + $.get({ + url: `https://vip.video.qq.com/fcgi-bin/comm_cgi?name=spp_MissionFaHuo&cmd=4&task_id=7&_=${ parseInt(Math.random()*1000) }`, headers + }, function(error, response, data) { + if (error) { + $.log(error); + console.log("腾讯视频会员签到", "下载任务签到请求 ‼️‼️", error) + } else { + if (data.match(/已发过货/)) { + console.log("腾讯视频会员下载任务签到:签到失败, 请勿重复领取任务 ‼️‼️") + notice += "腾讯视频会员下载任务签到:签到失败, 请勿重复领取任务 ‼️‼️" + "\n" + } else if (data.match(/score/)) { + msg = data.match(/score":(.*?)}/)[1] + console.log("腾讯视频会员下载任务签到:签到成功,签到分数:" + msg + "分 🎉") + notice += "腾讯视频会员下载任务签到:签到成功,签到分数:" + msg + "分 🎉" + "\n" + } else { + //console.log("腾讯视频会员下载任务签到", "", "签到失败, 任务未完成 ‼️‼️") + console.log("腾讯视频会员下载任务签到:", data) + notice += "腾讯视频会员下载任务签到:" + data.match(/msg":"(.*?)"/)[1] + "\n" + } + } + }) +} + +//赠送任务签到请求 +function txVideoDownTask2(headers) { + $.get({ + url: `https://vip.video.qq.com/fcgi-bin/comm_cgi?name=spp_MissionFaHuo&cmd=4&task_id=6&_=${ parseInt(Math.random()*1000) }`, headers + }, function(error, response, data) { + if (error) { + $.log(error); + console.log("腾讯视频会员签到", "赠送任务签到请求 ‼️‼️", error) + } else { + if (data.match(/已发过货/)) { + console.log("腾讯视频会员赠送任务签到:签到失败, 请勿重复领取任务 ‼️‼️") + notice += "腾讯视频会员赠送任务签到:签到失败, 请勿重复领取任务 ‼️‼️" + "\n" + } else if (data.match(/score/)) { + msg = data.match(/score":(.*?)}/)[1] + console.log("腾讯视频会员赠送任务签到:签到成功,签到分数:" + msg + "分 🎉") + notice += "腾讯视频会员赠送任务签到:签到成功,签到分数:" + msg + "分 🎉" + "\n" + } else { + //console.log("腾讯视频会员赠送任务签到", "", "签到失败, 任务未完成 ‼️‼️") + console.log("腾讯视频会员赠送任务签到:", data) + notice += "腾讯视频会员赠送任务签到:" + data.match(/msg":"(.*?)"/)[1] + "\n" + } + } + }) +} + +//弹幕任务签到请求 +function txVideoDownTask3(headers) { + $.get({ + url: `https://vip.video.qq.com/fcgi-bin/comm_cgi?name=spp_MissionFaHuo&cmd=4&task_id=3&_=${ parseInt(Math.random()*1000) }`, headers + }, function(error, response, data) { + if (error) { + $.log(error); + console.log("腾讯视频会员签到", "弹幕任务签到请求 ‼️‼️", error) + } else { + if (data.match(/已发过货/)) { + console.log("腾讯视频会员弹幕任务签到:签到失败, 请勿重复领取任务 ‼️‼️") + notice += "腾讯视频会员弹幕任务签到:签到失败, 请勿重复领取任务 ‼️‼️" + "\n" + } else if (data.match(/score/)) { + msg = data.match(/score":(.*?)}/)[1] + console.log("腾讯视频会员弹幕任务签到:签到成功,签到分数:" + msg + "分 🎉") + notice += "腾讯视频会员弹幕任务签到:签到成功,签到分数:" + msg + "分 🎉" + "\n" + } else { + //console.log("腾讯视频会员弹幕任务签到", "", "签到失败, 任务未完成 ‼️‼️") + console.log("腾讯视频会员弹幕任务签到:", data) + notice += "腾讯视频会员弹幕任务签到:" + data.match(/msg":"(.*?)"/)[1] + "\n" + } + } + }) +} + +//观看60分钟任务签到请求 +function txVideoDownTask4(headers) { + $.get({ + url: `https://vip.video.qq.com/fcgi-bin/comm_cgi?name=spp_MissionFaHuo&cmd=4&task_id=1&_=${ parseInt(Math.random()*1000) }`, headers + }, function(error, response, data) { + if (error) { + $.log(error); + console.log("腾讯视频会员签到", "观看任务签到请求 ‼️‼️", error) + } else { + if (data.match(/已发过货/)) { + console.log("腾讯视频会员观看任务签到:签到失败, 请勿重复领取任务 ‼️‼️") + notice += "腾讯视频会员观看任务签到:签到失败, 请勿重复领取任务 ‼️‼️" + "\n" + } else if (data.match(/score/)) { + msg = data.match(/score":(.*?)}/)[1] + console.log("腾讯视频会员观看任务签到:签到成功,签到分数:" + msg + "分 🎉") + notice += "腾讯视频会员观看任务签到:签到成功,签到分数:" + msg + "分 🎉" + "\n" + } else { + //console.log("腾讯视频会员观看任务签到", "", "签到失败, 任务未完成 ‼️‼️") + console.log("腾讯视频会员观看任务签到:", data) + notice += "腾讯视频会员观看任务签到:" + data.match(/msg":"(.*?)"/)[1] + "\n" + } + } + }) +} + +//推送 +function sendNotify() { + notify.sendNotify("腾讯视频会员签到", notice) +} +//主程序入口 +exports.main = () => new Promise( + (resovle, reject) => refCookie() + .then(params=>Promise.all([ + txVideoSignIn(params), + txVideoCheckin(params), + setTimeout(() => {txVideoDownTask1(params)},1000), + setTimeout(() => {txVideoDownTask2(params)},2000), + setTimeout(() => {txVideoDownTask3(params)},3000), + setTimeout(() => {txVideoDownTask4(params)},4000), + setTimeout(() => {sendNotify()},10000) + ]) + .then(e=>resovle()) + .catch(e=>reject()) + ).catch(e=>{ + console.log(e) + }) +) + +function timeFormat(time) { + let date; + if (time) { + date = new Date(time) + } else { + date = new Date(); + } + return date.getFullYear() + '年' + ((date.getMonth() + 1) >= 10 ? (date.getMonth() + 1) : '0' + (date.getMonth() + 1)) + '月' + (date.getDate() >= 10 ? date.getDate() : '0' + date.getDate()) + '日'; +} +// prettier-ignore +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}isShadowrocket(){return"undefined"!=typeof $rocket}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();s&&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=(()=>{})){const s=t.method?t.method.toLocaleLowerCase():"post";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[s](t,(t,s,i)=>{!t&&s&&(s.body=i,s.statusCode=s.status),e(t,s,i)});else if(this.isQuanX())t.method=s,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:i,...r}=t;this.got[s](i,r).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,e=null){const s=e?new Date(e):new Date;let i={"M+":s.getMonth()+1,"d+":s.getDate(),"H+":s.getHours(),"m+":s.getMinutes(),"s+":s.getSeconds(),"q+":Math.floor((s.getMonth()+3)/3),S:s.getMilliseconds()};/(y+)/.test(t)&&(t=t.replace(RegExp.$1,(s.getFullYear()+"").substr(4-RegExp.$1.length)));for(let e in i)new RegExp("("+e+")").test(t)&&(t=t.replace(RegExp.$1,1==RegExp.$1.length?i[e]:("00"+i[e]).substr((""+i[e]).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}}}};if(this.isMute||(this.isSurge()||this.isLoon()?$notification.post(e,s,i,o(r)):this.isQuanX()&&$notify(e,s,i,o(r))),!this.isMuteLog){let t=["","==============\ud83d\udce3\u7cfb\u7edf\u901a\u77e5\ud83d\udce3=============="];t.push(e),s&&t.push(s),i&&t.push(i),console.log(t.join("\n")),this.logs=this.logs.concat(t)}}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)} diff --git a/ck_vqq.py b/ck_vqq.py deleted file mode 100644 index 6f22aa8..0000000 --- a/ck_vqq.py +++ /dev/null @@ -1,131 +0,0 @@ -# -*- coding: utf-8 -*- -# 56 23 * * * -import json -import os -import re -import time -from urllib import parse - -import requests -from requests import utils -from getENV import getENv -from checksendNotify import send - - -class VQQCheckIn: - def __init__(self, check_item): - self.check_item = check_item - - @staticmethod - def refresh_cookie(url, headers, cookies): - login = requests.get(url=url, headers=headers, cookies=cookies) - nick = re.findall(r'nick":"(.*?)"', login.text) - if nick: - nick = nick[0] - try: - nick = parse.unquote(nick) - except Exception as e: - print(f"nick 转换失败: {e}") - else: - nick = "未获取到用户" - cookie = requests.utils.dict_from_cookiejar(login.cookies) - return cookie, nick - - @staticmethod - def sign_once(headers, cookies): - url = "http://v.qq.com/x/bu/mobile_checkin?isDarkMode=0&uiType=REGULAR" - res = requests.get(url=url, headers=headers, cookies=cookies) - res.encoding = "utf8" - match = re.search(r'isMultiple" />\s+(.*?)\s+<', res.text) - if "isMultiple" in res.text: - try: - value = match.group(1) - except Exception as e: - print(res.text) - value = "数据获取失败" - msg = f"成长值x{value}" - elif "Unauthorized" in res.text: - msg = "cookie 失效" - else: - msg = "签到失败(可能已签到)\n签到失败: 自行在腾讯视频APP内登录网址签到 http://v.qq.com/x/bu/mobile_checkin (基本每周都需要手动签到一次才可以)" - return msg - - @staticmethod - def sign_twice(headers, cookies): - this_time = int(round(time.time() * 1000)) - url = "https://vip.video.qq.com/fcgi-bin/comm_cgi?name=hierarchical_task_system&cmd=2&_=" + str(this_time) - res = requests.get(url=url, headers=headers, cookies=cookies) - res.encoding = "utf8" - if "Account Verify Error" in res.text: - msg = "签到失败-Cookie失效" - elif "Not VIP" in res.text: - msg = "非会员无法签到" - else: - try: - value = re.search('checkin_score": (.*?),', res.text).group(1) - except Exception as e: - print("获取成长值失败", e) - value = res.text - msg = f"成长值x{value}" - return msg - - @staticmethod - def tasks(headers, cookies): - task_map = { - "1": "观看视频60min", - "3": "使用弹幕特权", - "6": "使用赠片特权", - "7": "使用下载特权", - } - task_msg_list = [] - for task_id, task_name in task_map.items(): - this_time = int(round(time.time() * 1000)) - url = f"https://vip.video.qq.com/fcgi-bin/comm_cgi?name=spp_MissionFaHuo&cmd=4&task_id={task_id}&_=${this_time}" - res = requests.get(url=url, headers=headers, cookies=cookies) - res.encoding = "utf8" - if "score" in res.text: - msg = f"获得+10成长值" - elif "已发过货" in res.text: - msg = "任务已完成" - elif "任务未完成" in res.text: - msg = "任务未完成,需手动完成任务" - else: - msg = res.text - task_msg_list.append(f"{task_name}: {msg}") - time.sleep(1) - return "\n".join(task_msg_list) - - def main(self): - auth_refresh = self.check_item.get("auth_refresh") - if not auth_refresh: - return "参数错误: 缺少 auth_refresh 参数,请查看配置文档" - vqq_cookie = {item.split("=")[0]: item.split("=")[1] for item in self.check_item.get("vqq_cookie").split("; ")} - headers = { - "Referer": "https://v.qq.com", - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.204 Safari/537.36", - } - login_cookie, nick = self.refresh_cookie(url=auth_refresh, headers=headers, cookies=vqq_cookie) - if login_cookie.get("main_login") == "qq": - vqq_cookie["vqq_vusession"] = login_cookie.get("vqq_vusession") - else: - vqq_cookie["vusession"] = login_cookie.get("vusession") - vqq_cookie["access_token"] = login_cookie.get("access_token") - sign_once_msg = self.sign_once(headers=headers, cookies=vqq_cookie) - sign_twice_msg = self.sign_twice(headers=headers, cookies=vqq_cookie) - task_msg = self.tasks(headers=headers, cookies=vqq_cookie) - msg = f"用户信息: {nick}\n签到奖励1: {sign_once_msg}\n签到奖励2: {sign_twice_msg}\n{task_msg}" - return msg - - -def start(): - getENv() - with open("/ql/config/check.json", "r", encoding="utf-8") as f: - datas = json.loads(f.read()) - _check_item = datas.get("VQQ_COOKIE_LIST", [])[0] - res = VQQCheckIn(check_item=_check_item).main() - print(res) - send('腾讯视频', res) - - -if __name__ == "__main__": - start()