2022-02-08 14:36:02 +08:00
/ *
2022-02-13 00:28:36 +08:00
脚本 : 取关京东店铺和商品
更新时间 : 2021 - 05 - 08
因种豆得豆和宠汪汪以及NobyDa大佬的京东签到脚本会关注店铺和商品 , 故此脚本用来取消已关注的店铺和商品
默认 : 每运行一次脚本全部已关注的店铺与商品
建议此脚本运行时间在 种豆得豆和宠汪汪脚本运行之后 再执行
现有功能 : 1 、 取关商品 。 2 、 取关店铺 。 3 、 匹配到boxjs输入的过滤关键词后 , 不再进行此商品 / 店铺后面 ( 包含输入的关键词商品 / 店铺 ) 的取关
脚本兼容 : Quantumult X , Surge , Loon , JSBox , Node . js , 小火箭
=== === === === == Quantumult X === === === ==
[ task _local ]
# 取关京东店铺商品
55 23 * * * jd _unsubscribe . js , tag = 取关京东店铺商品 , img - url = https : //raw.githubusercontent.com/Orz-3/mini/master/Color/jd.png, enabled=true
=== === === == Loon === === === ===
[ Script ]
cron "55 23 * * *" script - path = jd _unsubscribe . js , tag = 取关京东店铺商品
=== === === === Surge === === === === =
取关京东店铺商品 = type = cron , cronexp = "55 23 * * *" , wake - system = 1 , timeout = 3600 , script - path = jd _unsubscribe . js
=== === === == 小火箭 === === ==
取关京东店铺商品 = type = cron , script - path = jd _unsubscribe . js , cronexpr = "55 23 * * *" , timeout = 3600 , enable = true
2022-02-08 14:36:02 +08:00
* /
2022-02-13 00:28:36 +08:00
const $ = new Env ( '取关京东店铺和商品' ) ;
2022-02-08 14:36:02 +08:00
//Node.js用户请在jdCookie.js处填写京东ck;
const jdCookieNode = $ . isNode ( ) ? require ( './jdCookie.js' ) : '' ;
const notify = $ . isNode ( ) ? require ( './sendNotify' ) : '' ;
2022-02-13 00:28:36 +08:00
2022-02-08 14:36:02 +08:00
//IOS等用户直接用NobyDa的jd cookie
let cookiesArr = [ ] , cookie = '' ;
2022-02-13 00:28:36 +08:00
if ( $ . isNode ( ) ) {
Object . keys ( jdCookieNode ) . forEach ( ( item ) => {
cookiesArr . push ( jdCookieNode [ item ] )
} )
if ( process . env . JD _DEBUG && process . env . JD _DEBUG === 'false' ) console . log = ( ) => {
} ;
2022-02-08 14:36:02 +08:00
} else {
2022-02-13 00:28:36 +08:00
cookiesArr = [ $ . getdata ( 'CookieJD' ) , $ . getdata ( 'CookieJD2' ) , ... jsonParse ( $ . getdata ( 'CookiesJD' ) || "[]" ) . map ( item => item . cookie ) ] . filter ( item => ! ! item ) ;
2022-02-08 14:36:02 +08:00
}
2022-02-13 00:28:36 +08:00
const jdNotify = $ . getdata ( 'jdUnsubscribeNotify' ) ; //是否关闭通知, false打开通知推送, true关闭通知推送
let goodPageSize = $ . getdata ( 'jdUnsubscribePageSize' ) || 20 ; // 运行一次取消多全部已关注的商品。数字0表示不取关任何商品
let shopPageSize = $ . getdata ( 'jdUnsubscribeShopPageSize' ) || 20 ; // 运行一次取消全部已关注的店铺。数字0表示不取关任何店铺
let stopGoods = $ . getdata ( 'jdUnsubscribeStopGoods' ) || '' ; //遇到此商品不再进行取关,此处内容需去商品详情页(自营处)长按拷贝商品信息
let stopShop = $ . getdata ( 'jdUnsubscribeStopShop' ) || '' ; //遇到此店铺不再进行取关,此处内容请尽量从头开始输入店铺名称
const JD _API _HOST = 'https://wq.jd.com/fav' ;
! ( async ( ) => {
if ( ! cookiesArr [ 0 ] ) {
$ . msg ( '【京东账号一】取关京东店铺商品失败' , '【提示】请先获取京东账号一cookie\n直接使用NobyDa的京东签到获取' , 'https://bean.m.jd.com/bean/signIndex.action' , { "open-url" : "https://bean.m.jd.com/bean/signIndex.action" } ) ;
}
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 = '' ;
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 requireConfig ( ) ;
await jdUnsubscribe ( ) ;
await showMsg ( ) ;
2022-02-08 14:36:02 +08:00
}
2022-02-13 00:28:36 +08:00
}
} ) ( )
. catch ( ( e ) => {
$ . log ( '' , ` ❌ ${ $ . name } , 失败! 原因: ${ e } ! ` , '' )
} )
. finally ( ( ) => {
$ . done ( ) ;
2022-02-08 14:36:02 +08:00
} )
2022-02-13 00:28:36 +08:00
async function jdUnsubscribe ( ) {
await Promise . all ( [
goodsMain ( ) ,
shopMain ( )
] )
//再次获取还有多少已关注的店铺与商品
await Promise . all ( [
getFollowGoods ( ) ,
getFollowShops ( )
] )
2022-02-08 14:36:02 +08:00
}
2022-02-13 00:28:36 +08:00
function showMsg ( ) {
if ( ! jdNotify || jdNotify === 'false' ) {
$ . msg ( $ . name , ` ` , ` 【京东账号 ${ $ . index } 】 ${ $ . nickName } \n 【已取消关注店铺】 ${ $ . unsubscribeShopsCount } 个 \n 【已取消关注商品】 ${ $ . unsubscribeGoodsCount } 个 \n 【还剩关注店铺】 ${ $ . shopsTotalNum } 个 \n 【还剩关注商品】 ${ $ . goodsTotalNum } 个 \n ` ) ;
} else {
$ . log ( ` \n 【京东账号 ${ $ . index } 】 ${ $ . nickName } \n 【已取消关注店铺】 ${ $ . unsubscribeShopsCount } 个 \n 【已取消关注商品】 ${ $ . unsubscribeGoodsCount } 个 \n 【还剩关注店铺】 ${ $ . shopsTotalNum } 个 \n 【还剩关注商品】 ${ $ . goodsTotalNum } 个 \n ` ) ;
}
2022-02-08 14:36:02 +08:00
}
2022-02-13 00:28:36 +08:00
async function goodsMain ( ) {
$ . unsubscribeGoodsCount = 0 ;
if ( ( goodPageSize * 1 ) !== 0 ) {
await unsubscribeGoods ( ) ;
const le = Math . ceil ( $ . goodsTotalNum / 20 ) - 1 >= 0 ? Math . ceil ( $ . goodsTotalNum / 20 ) - 1 : 0 ;
for ( let i = 0 ; i < new Array ( le ) . length ; i ++ ) {
await $ . wait ( 100 ) ;
await unsubscribeGoods ( ) ;
}
} else {
console . log ( ` \n 您设置的是不取关商品 \n ` ) ;
}
2022-02-08 14:36:02 +08:00
}
2022-02-13 00:28:36 +08:00
async function unsubscribeGoods ( ) {
let followGoods = await getFollowGoods ( ) ;
if ( followGoods . iRet === '0' ) {
if ( followGoods . totalNum > 0 ) {
for ( let item of followGoods [ 'data' ] ) {
console . log ( ` 是否匹配:: ${ item . commTitle . indexOf ( stopGoods . replace ( /\ufffc|\s*/g , '' ) ) } ` )
if ( stopGoods && item . commTitle . indexOf ( stopGoods . replace ( /\ufffc|\s*/g , '' ) ) > - 1 ) {
console . log ( ` 匹配到了您设定的商品-- ${ stopGoods } ,不在进行取消关注商品 ` )
break ;
}
let res = await unsubscribeGoodsFun ( item . commId ) ;
if ( res . iRet === 0 && res . errMsg === 'success' ) {
console . log ( ` 取消关注商品--- ${ item . commTitle . substring ( 0 , 20 ) . concat ( '...' ) } ---成功 ` )
$ . unsubscribeGoodsCount ++ ;
console . log ( ` 已成功取消关注【商品】: ${ $ . unsubscribeGoodsCount } 个 \n ` )
} else {
console . log ( ` 取关商品失败: ${ JSON . stringify ( res ) } ` )
console . log ( ` 取消关注商品--- ${ item . commTitle . substring ( 0 , 20 ) . concat ( '...' ) } ---失败 \n ` )
}
await $ . wait ( 1000 ) ;
}
}
} else {
console . log ( ` 获取已关注商品失败: ${ JSON . stringify ( followGoods ) } ` ) ;
}
2022-02-08 14:36:02 +08:00
}
2022-02-13 00:28:36 +08:00
function getFollowGoods ( ) {
$ . goodsTotalNum = 0 ;
return new Promise ( ( resolve ) => {
const option = {
url : ` ${ JD _API _HOST } /comm/FavCommQueryFilter?cp=1&pageSize=20&_= ${ Date . now ( ) } &category=0&promote=0&cutPrice=0&coupon=0&stock=0&areaNo=1_72_4139_0&sceneval=2&g_login_type=1&callback=jsonpCBKB&g_ty=ls ` ,
headers : {
"Host" : "wq.jd.com" ,
"Accept" : "*/*" ,
"Connection" : "keep-alive" ,
"Cookie" : cookie ,
"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" ) ,
"Accept-Language" : "zh-cn" ,
"Referer" : "https://wqs.jd.com/my/fav/goods_fav.shtml?ptag=37146.4.1&sceneval=2&jxsid=15963530166144677970" ,
"Accept-Encoding" : "gzip, deflate, br"
} ,
}
$ . get ( option , async ( err , resp , data ) => {
try {
data = JSON . parse ( data . slice ( 14 , - 13 ) ) ;
if ( data . iRet === '0' ) {
$ . goodsTotalNum = data . totalNum ;
console . log ( ` 当前已关注【商品】: ${ $ . goodsTotalNum } 个 \n ` )
} else {
$ . goodsTotalNum = 0 ;
}
} catch ( e ) {
$ . logErr ( e , resp ) ;
} finally {
resolve ( data ) ;
}
} ) ;
} )
2022-02-08 14:36:02 +08:00
}
2022-02-13 00:28:36 +08:00
function unsubscribeGoodsFun ( commId ) {
return new Promise ( resolve => {
const option = {
url : ` ${ JD _API _HOST } /comm/FavCommDel?commId= ${ commId } &_= ${ Date . now ( ) } &sceneval=2&g_login_type=1&callback=jsonpCBKP&g_ty=ls ` ,
headers : {
"Host" : "wq.jd.com" ,
"Accept" : "*/*" ,
"Connection" : "keep-alive" ,
'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" ) ,
'Referer' : 'https://wqs.jd.com/my/fav/goods_fav.shtml?ptag=37146.4.1&sceneval=2&jxsid=15963530166144677970' ,
'Cookie' : cookie ,
"Accept-Language" : "zh-cn" ,
"Accept-Encoding" : "gzip, deflate, br"
} ,
}
$ . get ( option , ( err , resp , data ) => {
try {
data = JSON . parse ( data . slice ( 14 , - 13 ) . replace ( ',}' , '}' ) ) ;
// console.log('data', data);
// console.log('data', data.errMsg);
} catch ( e ) {
$ . logErr ( e , resp ) ;
} finally {
resolve ( data ) ;
}
} ) ;
} )
2022-02-08 14:36:02 +08:00
}
2022-02-13 00:28:36 +08:00
async function shopMain ( ) {
$ . unsubscribeShopsCount = 0 ;
if ( ( shopPageSize * 1 ) !== 0 ) {
await unsubscribeShops ( ) ;
const le = Math . ceil ( $ . shopsTotalNum / 20 ) - 1 >= 0 ? Math . ceil ( $ . shopsTotalNum / 20 ) - 1 : 0 ;
for ( let i = 0 ; i < new Array ( le ) . length ; i ++ ) {
await $ . wait ( 100 ) ;
await unsubscribeShops ( ) ;
}
} else {
console . log ( ` \n 您设置的是不取关店铺 \n ` ) ;
}
2022-02-08 14:36:02 +08:00
}
2022-02-13 00:28:36 +08:00
async function unsubscribeShops ( ) {
let followShops = await getFollowShops ( ) ;
if ( followShops . iRet === '0' ) {
if ( followShops . totalNum > 0 ) {
for ( let item of followShops . data ) {
if ( stopShop && ( item . shopName && item . shopName . indexOf ( stopShop . replace ( /\s*/g , '' ) ) > - 1 ) ) {
console . log ( ` 匹配到了您设定的店铺-- ${ item . shopName } ,不在进行取消关注店铺 ` )
break ;
}
let res = await unsubscribeShopsFun ( item . shopId ) ;
if ( res . iRet === '0' ) {
console . log ( ` 取消已关注店铺--- ${ item . shopName } ----成功 ` )
$ . unsubscribeShopsCount ++ ;
console . log ( ` 已成功取消关注【店铺】: ${ $ . unsubscribeShopsCount } 个 \n ` )
} else {
console . log ( ` 取消已关注店铺--- ${ item . shopName } ----失败 \n ` )
}
await $ . wait ( 1000 ) ;
}
2022-02-08 14:36:02 +08:00
}
2022-02-13 00:28:36 +08:00
} else {
console . log ( ` 获取已关注店铺失败: ${ JSON . stringify ( followShops ) } ` ) ;
}
2022-02-08 14:36:02 +08:00
}
2022-02-13 00:28:36 +08:00
function getFollowShops ( ) {
$ . shopsTotalNum = 0 ;
return new Promise ( ( resolve ) => {
const option = {
url : ` ${ JD _API _HOST } /shop/QueryShopFavList?cp=1&pageSize=20&_= ${ Date . now ( ) } &sceneval=2&g_login_type=1&callback=jsonpCBKA&g_ty=ls ` ,
headers : {
"Host" : "wq.jd.com" ,
"Accept" : "*/*" ,
"Connection" : "keep-alive" ,
"Cookie" : cookie ,
"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" ) ,
"Accept-Language" : "zh-cn" ,
"Referer" : "https://wqs.jd.com/my/fav/shop_fav.shtml?sceneval=2&jxsid=15963530166144677970&ptag=7155.1.9" ,
"Accept-Encoding" : "gzip, deflate, br"
} ,
2022-02-08 14:36:02 +08:00
}
2022-02-13 00:28:36 +08:00
$ . get ( option , ( err , resp , data ) => {
try {
data = JSON . parse ( data . slice ( 14 , - 13 ) ) ;
if ( data . iRet === '0' ) {
$ . shopsTotalNum = data . totalNum ;
console . log ( ` 当前已关注【店铺】: ${ $ . shopsTotalNum } 个 \n ` )
} else {
$ . shopsTotalNum = 0 ;
}
} catch ( e ) {
$ . logErr ( e , resp ) ;
} finally {
resolve ( data ) ;
}
} ) ;
} )
}
2022-02-08 14:36:02 +08:00
2022-02-13 00:28:36 +08:00
function unsubscribeShopsFun ( shopId ) {
return new Promise ( resolve => {
const option = {
url : ` ${ JD _API _HOST } /shop/DelShopFav?shopId= ${ shopId } &_= ${ Date . now ( ) } &sceneval=2&g_login_type=1&callback=jsonpCBKG&g_ty=ls ` ,
headers : {
"Host" : "wq.jd.com" ,
"Accept" : "*/*" ,
"Connection" : "keep-alive" ,
'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" ) ,
'Referer' : 'https://wqs.jd.com/my/fav/shop_fav.shtml?sceneval=2&jxsid=15960121319555534107&ptag=7155.1.9' ,
'Cookie' : cookie ,
"Accept-Language" : "zh-cn" ,
"Accept-Encoding" : "gzip, deflate, br"
} ,
}
$ . get ( option , ( err , resp , data ) => {
try {
data = JSON . parse ( data . slice ( 14 , - 13 ) ) ;
} catch ( e ) {
$ . logErr ( e , resp ) ;
} finally {
resolve ( data ) ;
}
} ) ;
} )
}
2022-02-08 14:36:02 +08:00
2022-02-13 00:28:36 +08:00
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" )
}
}
$ . 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
2022-02-08 14:36:02 +08:00
}
2022-02-13 00:28:36 +08:00
if ( data [ 'retcode' ] === 0 ) {
$ . nickName = ( data [ 'base' ] && data [ 'base' ] . nickname ) || $ . UserName ;
} else {
$ . nickName = $ . UserName
2022-02-08 14:36:02 +08:00
}
2022-02-13 00:28:36 +08:00
} else {
console . log ( ` 京东服务器返回空数据 ` )
}
}
} catch ( e ) {
$ . logErr ( e , resp )
} finally {
resolve ( ) ;
}
} )
} )
}
2022-02-08 14:36:02 +08:00
2022-02-13 00:28:36 +08:00
function requireConfig ( ) {
return new Promise ( resolve => {
if ( $ . isNode ( ) && process . env . UN _SUBSCRIBES ) {
if ( process . env . UN _SUBSCRIBES . indexOf ( '&' ) > - 1 ) {
$ . UN _SUBSCRIBES = process . env . UN _SUBSCRIBES . split ( '&' ) ;
} else if ( process . env . UN _SUBSCRIBES . indexOf ( '\n' ) > - 1 ) {
$ . UN _SUBSCRIBES = process . env . UN _SUBSCRIBES . split ( '\n' ) ;
} else if ( process . env . UN _SUBSCRIBES . indexOf ( '\\n' ) > - 1 ) {
$ . UN _SUBSCRIBES = process . env . UN _SUBSCRIBES . split ( '\\n' ) ;
} else {
$ . UN _SUBSCRIBES = process . env . UN _SUBSCRIBES . split ( ) ;
}
console . log ( ` 您环境变量 UN_SUBSCRIBES 设置的内容为: \n ${ JSON . stringify ( $ . UN _SUBSCRIBES ) } ` )
goodPageSize = $ . UN _SUBSCRIBES [ 0 ] || goodPageSize ;
shopPageSize = $ . UN _SUBSCRIBES [ 1 ] || shopPageSize ;
stopGoods = $ . UN _SUBSCRIBES [ 2 ] || stopGoods ;
stopShop = $ . UN _SUBSCRIBES [ 3 ] || stopShop ;
}
resolve ( )
} )
}
2022-02-08 14:36:02 +08:00
2022-02-13 00:28:36 +08:00
function jsonParse ( str ) {
if ( typeof str == "string" ) {
try {
return JSON . parse ( str ) ;
} catch ( e ) {
console . log ( e ) ;
$ . msg ( $ . name , '' , '请勿随意在BoxJs输入框修改内容\n建议通过脚本去获取cookie' )
return [ ] ;
}
}
2022-02-08 14:36:02 +08:00
}
2022-02-13 00:28:36 +08:00
// 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" ] )