2022-02-11 20:42:38 +08:00
/ *
东东工厂 , 不是京喜工厂
活动入口 : 京东APP首页 - 数码电器 - 东东工厂
免费产生的电量 ( 10 秒1个电量 , 500 个电量满 , 5000 秒到上限不生产 , 算起来是84分钟达到上限 )
故建议1小时运行一次
开会员任务和去京东首页点击 “ 数码电器任务目前未做
不会每次运行脚本都投入电力
只有当心仪的商品存在 , 并且收集起来的电量满足当前商品所需电力 , 才投入
已支持IOS双京东账号 , Node . js支持N个京东账号
脚本兼容 : QuantumultX , Surge , Loon , JSBox , Node . js
=== === === === Quantumultx === === === === ===
[ task _local ]
# 东东工厂
50 4 , 17 * * * https : //raw.githubusercontent.com/KingRan/JDJB/main/jd_jdfactory_help_help.js, tag=东东工厂, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jd_factory.png, enabled=true
=== === === === === = Loon === === === === ==
[ Script ]
cron "50 4,17 * * *" script - path = https : //raw.githubusercontent.com/KingRan/JDJB/main/jd_jdfactory_help.js,tag=东东工厂
=== === === === === Surge === === === === === ==
东东工厂 = type = cron , cronexp = "50 4,17 * * *" , wake - system = 1 , timeout = 3600 , script - path = https : //raw.githubusercontent.com/KingRan/JDJB/main/jd_jdfactory_help.js
=== === === === 小火箭 === === ===
东东工厂 = type = cron , script - path = https : //raw.githubusercontent.com/KingRan/JDJB/main/jd_jdfactory_help.js, cronexpr="50 4,17 * * *", timeout=3600, enable=true
* /
2022-02-24 18:09:04 +08:00
const $ = new Env ( '东东工厂内部互助' ) ;
2022-02-11 20:42:38 +08:00
const notify = $ . isNode ( ) ? require ( './sendNotify' ) : '' ;
//Node.js用户请在jdCookie.js处填写京东ck;
const jdCookieNode = $ . isNode ( ) ? require ( './jdCookie.js' ) : '' ;
let jdNotify = true ; //是否关闭通知, false打开通知推送, true关闭通知推送
const randomCount = $ . isNode ( ) ? 20 : 5 ;
//IOS等用户直接用NobyDa的jd cookie
let cookiesArr = [ ] , cookie = '' , message ;
if ( $ . isNode ( ) ) {
Object . keys ( jdCookieNode ) . forEach ( ( item ) => {
cookiesArr . push ( jdCookieNode [ item ] )
} )
if ( process . env . JD _DEBUG && process . env . JD _DEBUG === 'false' ) console . log = ( ) => { } ;
if ( process . env . JDFACTORY _FORBID _ACCOUNT ) process . env . JDFACTORY _FORBID _ACCOUNT . split ( '&' ) . map ( ( item , index ) => Number ( item ) === 0 ? cookiesArr = [ ] : cookiesArr . splice ( Number ( item ) - 1 - index , 1 ) )
} else {
cookiesArr = [ $ . getdata ( 'CookieJD' ) , $ . getdata ( 'CookieJD2' ) , ... jsonParse ( $ . getdata ( 'CookiesJD' ) || "[]" ) . map ( item => item . cookie ) ] . filter ( item => ! ! item ) ;
}
let wantProduct = ` ` ; //心仪商品名称
const JD _API _HOST = 'https://api.m.jd.com/client.action' ;
const inviteCodes = [ ] ;
2022-02-24 18:09:04 +08:00
let lnrun = 0 ;
2022-02-11 20:42:38 +08:00
! ( async ( ) => {
await requireConfig ( ) ;
if ( ! cookiesArr [ 0 ] ) {
$ . msg ( $ . name , '【提示】请先获取京东账号一cookie\n直接使用NobyDa的京东签到获取' , 'https://bean.m.jd.com/bean/signIndex.action' , { "open-url" : "https://bean.m.jd.com/bean/signIndex.action" } ) ;
return ;
}
for ( let i = 0 ; i < cookiesArr . length ; i ++ ) {
if ( cookiesArr [ i ] ) {
cookie = cookiesArr [ i ] ;
$ . UserName = decodeURIComponent ( cookie . match ( /pt_pin=([^; ]+)(?=;?)/ ) && cookie . match ( /pt_pin=([^; ]+)(?=;?)/ ) [ 1 ] )
$ . index = i + 1 ;
$ . isLogin = true ;
$ . nickName = '' ;
message = '' ;
await TotalBean ( ) ;
console . log ( ` \n ******开始【京东账号 ${ $ . index } 】 ${ $ . nickName || $ . UserName } ********* \n ` ) ;
if ( ! $ . isLogin ) {
$ . msg ( $ . name , ` 【提示】cookie已失效 ` , ` 京东账号 ${ $ . index } ${ $ . nickName || $ . UserName } \n 请重新登录获取 \n https://bean.m.jd.com/bean/signIndex.action ` , { "open-url" : "https://bean.m.jd.com/bean/signIndex.action" } ) ;
if ( $ . isNode ( ) ) {
await notify . sendNotify ( ` ${ $ . name } cookie已失效 - ${ $ . UserName } ` , ` 京东账号 ${ $ . index } ${ $ . UserName } \n 请重新登录获取cookie ` ) ;
}
continue
}
//await shareCodesFormat();
2022-02-24 18:09:04 +08:00
await jdFactory ( )
await $ . wait ( 1500 ) ;
2022-02-11 20:42:38 +08:00
}
}
2022-02-24 18:09:04 +08:00
console . log ( ` \n 【开始账号内互助】 \n ` ) ;
2022-02-11 20:42:38 +08:00
for ( let i = 0 ; i < cookiesArr . length ; i ++ ) {
2022-02-24 18:09:04 +08:00
lnrun ++ ;
cookie = cookiesArr [ i ] ;
2022-02-11 20:42:38 +08:00
$ . UserName = decodeURIComponent ( cookie . match ( /pt_pin=([^; ]+)(?=;?)/ ) && cookie . match ( /pt_pin=([^; ]+)(?=;?)/ ) [ 1 ] )
2022-02-24 18:09:04 +08:00
$ . index = i + 1 ;
$ . isLogin = true ;
$ . nickName = '' ;
console . log ( ` \n 【京东账号 ${ $ . index } ( ${ $ . UserName } )开始助力好友】 \n ` )
console . log ( ` 格式化后的助力码:: ${ JSON . stringify ( inviteCodes ) } \n ` ) ;
for ( let code of inviteCodes ) {
if ( ! code ) continue
const helpRes = await jdfactory _collectScore ( code ) ;
if ( helpRes . code === 0 && helpRes . data . bizCode === - 7 ) {
console . log ( ` 助力机会已耗尽,跳出 ` ) ;
break
2022-02-11 20:42:38 +08:00
}
}
2022-02-24 18:09:04 +08:00
if ( lnrun == 5 ) {
console . log ( ` \n 【访问接口次数达到5次, 休息一分钟.....】 \n ` ) ;
await $ . wait ( 60 * 1000 ) ;
lnrun = 0 ;
}
2022-02-11 20:42:38 +08:00
}
} ) ( )
. catch ( ( e ) => {
$ . log ( '' , ` ❌ ${ $ . name } , 失败! 原因: ${ e } ! ` , '' )
} )
. finally ( ( ) => {
$ . done ( ) ;
} )
async function jdFactory ( ) {
try {
await jdfactory _getTaskDetail ( ) ;
} catch ( e ) {
$ . logErr ( e )
}
}
function showMsg ( ) {
return new Promise ( resolve => {
if ( ! jdNotify ) {
$ . msg ( $ . name , '' , ` ${ message } ` ) ;
} else {
$ . log ( ` ${ message } ` ) ;
}
if ( new Date ( ) . getHours ( ) === 12 ) {
$ . msg ( $ . name , '' , ` ${ message } ` ) ;
}
resolve ( )
} )
}
function jdfactory _collectScore ( taskToken ) {
return new Promise ( async resolve => {
await $ . wait ( 1000 ) ;
$ . post ( taskPostUrl ( "jdfactory_collectScore" , { taskToken } , "jdfactory_collectScore" ) , async ( err , resp , data ) => {
try {
if ( err ) {
console . log ( ` ${ JSON . stringify ( err ) } ` )
console . log ( ` ${ $ . name } API请求失败, 请检查网路重试 ` )
} else {
if ( safeGet ( data ) ) {
data = JSON . parse ( data ) ;
if ( data . data . bizCode === 0 ) {
$ . taskVos = data . data . result . taskVos ; //任务列表
console . log ( ` 领取做完任务的奖励: ${ JSON . stringify ( data . data . result ) } ` ) ;
} else {
console . log ( JSON . stringify ( data ) )
}
}
}
} catch ( e ) {
$ . logErr ( e , resp )
} finally {
resolve ( data ) ;
}
} )
} )
}
//获取任务列表
function jdfactory _getTaskDetail ( ) {
return new Promise ( resolve => {
$ . post ( taskPostUrl ( "jdfactory_getTaskDetail" , { } , "jdfactory_getTaskDetail" ) , async ( err , resp , data ) => {
try {
if ( err ) {
console . log ( ` ${ JSON . stringify ( err ) } ` )
console . log ( ` ${ $ . name } API请求失败, 请检查网路重试 ` )
} else {
if ( safeGet ( data ) ) {
data = JSON . parse ( data ) ;
if ( data . data . bizCode === 0 ) {
$ . taskVos = data . data . result . taskVos ; //任务列表
$ . taskVos . map ( item => {
if ( item . taskType === 14 ) {
console . log ( ` \n 【京东账号 ${ $ . index } ( ${ $ . UserName } )的 ${ $ . name } 好友互助码】 ${ item . assistTaskDetailVo . taskToken } \n ` )
inviteCodes . push ( item . assistTaskDetailVo . taskToken )
}
} )
}
}
}
} catch ( e ) {
$ . logErr ( e , resp )
} finally {
resolve ( ) ;
}
} )
} )
}
function requireConfig ( ) {
return new Promise ( resolve => {
console . log ( ` 开始获取 ${ $ . name } 配置文件 \n ` ) ;
//Node.js用户请在jdCookie.js处填写京东ck;
console . log ( ` 共 ${ cookiesArr . length } 个京东账号 \n ` ) ;
// console.log(`\n种豆得豆助力码::${JSON.stringify($.shareCodesArr)}`);
//console.log(`您提供了${$.shareCodesArr.length}个账号的${$.name}助力码\n`);
resolve ( )
} )
}
function taskPostUrl ( function _id , body = { } , function _id2 ) {
let url = ` ${ JD _API _HOST } ` ;
if ( function _id2 ) {
url += ` ?functionId= ${ function _id2 } ` ;
}
return {
url ,
body : ` functionId= ${ function _id } &body= ${ escape ( JSON . stringify ( body ) ) } &client=wh5&clientVersion=1.1.0 ` ,
headers : {
"Accept" : "application/json, text/plain, */*" ,
"Accept-Encoding" : "gzip, deflate, br" ,
"Accept-Language" : "zh-cn" ,
"Connection" : "keep-alive" ,
"Content-Type" : "application/x-www-form-urlencoded" ,
"Cookie" : cookie ,
"Host" : "api.m.jd.com" ,
"Origin" : "https://h5.m.jd.com" ,
"Referer" : "https://h5.m.jd.com/babelDiy/Zeus/2uSsV2wHEkySvompfjB43nuKkcHp/index.html" ,
"User-Agent" : "jdapp;iPhone;9.3.4;14.3;88732f840b77821b345bf07fd71f609e6ff12f43;network/4g;ADID/1C141FDD-C62F-425B-8033-9AAB7E4AE6A3;supportApplePay/0;hasUPPay/0;hasOCPay/0;model/iPhone11,8;addressid/2005183373;supportBestPay/0;appBuild/167502;jdSupportDarkMode/0;pv/414.19;apprpd/Babel_Native;ref/TTTChannelViewContoller;psq/5;ads/;psn/88732f840b77821b345bf07fd71f609e6ff12f43|1701;jdv/0|iosapp|t_335139774|appshare|CopyURL|1610885480412|1610885486;adk/;app_device/IOS;pap/JA2015_311210|9.3.4|IOS 14.3;Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148;supportJDSHWK/1" ,
} ,
timeout : 10000 ,
}
}
function TotalBean ( ) {
return new Promise ( async resolve => {
const options = {
"url" : ` https://wq.jd.com/user/info/QueryJDUserInfo?sceneval=2 ` ,
"headers" : {
"Accept" : "application/json,text/plain, */*" ,
"Content-Type" : "application/x-www-form-urlencoded" ,
"Accept-Encoding" : "gzip, deflate, br" ,
"Accept-Language" : "zh-cn" ,
"Connection" : "keep-alive" ,
"Cookie" : cookie ,
"Referer" : "https://wqs.jd.com/my/jingdou/my.shtml?sceneval=2" ,
"User-Agent" : $ . isNode ( ) ? ( process . env . JD _USER _AGENT ? process . env . JD _USER _AGENT : ( require ( './USER_AGENTS' ) . USER _AGENT ) ) : ( $ . getdata ( 'JDUA' ) ? $ . getdata ( 'JDUA' ) : "jdapp;iPhone;9.4.4;14.3;network/4g;Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148;supportJDSHWK/1" )
} ,
"timeout" : 10000 ,
}
$ . post ( options , ( err , resp , data ) => {
try {
if ( err ) {
console . log ( ` ${ JSON . stringify ( err ) } ` )
console . log ( ` ${ $ . name } API请求失败, 请检查网路重试 ` )
} else {
if ( data ) {
data = JSON . parse ( data ) ;
if ( data [ 'retcode' ] === 13 ) {
$ . isLogin = false ; //cookie过期
return
}
if ( data [ 'retcode' ] === 0 ) {
$ . nickName = ( data [ 'base' ] && data [ 'base' ] . nickname ) || $ . UserName ;
} else {
$ . nickName = $ . UserName
}
} else {
console . log ( ` 京东服务器返回空数据 ` )
}
}
} catch ( e ) {
$ . logErr ( e , resp )
} finally {
resolve ( ) ;
}
} )
} )
}
function safeGet ( data ) {
try {
if ( typeof JSON . parse ( data ) == "object" ) {
return true ;
}
} catch ( e ) {
console . log ( e ) ;
console . log ( ` 京东服务器访问数据为空,请检查自身设备网络情况 ` ) ;
return false ;
}
}
function jsonParse ( str ) {
if ( typeof str == "string" ) {
try {
return JSON . parse ( str ) ;
} catch ( e ) {
console . log ( e ) ;
$ . msg ( $ . name , '' , '请勿随意在BoxJs输入框修改内容\n建议通过脚本去获取cookie' )
return [ ] ;
}
}
}
// prettier-ignore
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 ( "" , ` 🔔 ${ this . name } , 开始! ` ) } 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 ( "@" ) , n = { url : ` http:// ${ h } /v1/scripting/evaluate ` , body : { script _text : t , mock _type : "cron" , timeout : r } , headers : { "X-Key" : o , Accept : "*/*" } } ; this . post ( n , ( 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" ] )