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.
435 lines
22 KiB
435 lines
22 KiB
4 years ago
|
/*
|
||
|
快手极速
|
||
|
定时建议 10 7-16/1 * * *
|
||
|
|
||
|
|
||
|
export kshd='token1@token2@token3'
|
||
|
|
||
|
签到
|
||
|
https://nebula.kuaishou.com/rest/n/nebula/activity/earn/overview/basicInfo
|
||
|
|
||
|
广告请求
|
||
|
https://api.e.kuaishou.com/rest/e/v1/reward/ad
|
||
|
|
||
|
|
||
|
对应目标
|
||
|
https://raw.githubusercontent.com/liuqi6968/-/main/ks_js.js
|
||
|
|
||
|
mitm: nebula.kuaishou.com
|
||
|
api2.e.kuaishou.com
|
||
|
api.e.kuaishou.com
|
||
|
|
||
|
只测试了 v2p 其他的自测
|
||
|
没有多账号 懒不想写
|
||
|
|
||
|
自动获取不到的 手动抓
|
||
|
|
||
|
签到: kshd 整段cookie
|
||
|
广告请求: ggqqbody 整段body
|
||
|
|
||
|
|
||
|
*/
|
||
|
|
||
|
const jsname = '快手极速'
|
||
|
const $ = Env(jsname)
|
||
|
const notify = $.isNode() ? require('./sendNotify') : '';
|
||
|
|
||
|
let logDebug = 0
|
||
|
let httpResult //global buffer
|
||
|
|
||
|
let notifyStr=''
|
||
|
let notifyFlag=1
|
||
|
|
||
|
let kshd = ($.isNode() ? (process.env.kshd) : ($.getval('kshd'))) || '';
|
||
|
let ksggqqbody = ($.isNode() ? (process.env.ksggqqbody) : ($.getval('ggqqbody'))) || '';
|
||
|
let ksurl = 'https://nebula.kuaishou.com/rest/n/nebula/activity/earn/overview/basicInfo'
|
||
|
let kshdArr = []
|
||
|
let ggqqbodyArr = []
|
||
|
|
||
|
let token = ''
|
||
|
let userIdx = 0
|
||
|
|
||
|
let kstoken=''
|
||
|
let ggqqbody='',ksgjbody=''
|
||
|
let llsid=0,spid=0,openboxstatus=0
|
||
|
|
||
|
|
||
|
const hour = new Date(new Date().getTime() + new Date().getTimezoneOffset() * 60 * 1000 + 8 * 60 * 60 * 1000).getHours();
|
||
|
const minute = new Date(new Date().getTime() + new Date().getTimezoneOffset() * 60 * 1000 + 8 * 60 * 60 * 1000).getMinutes();
|
||
|
let task={
|
||
|
"0":{"taskName":"签到任务", "action":"Sign", "waittime":2},
|
||
|
"1":{"taskName":"广告任务", "action":"ksads", "waittime":30},
|
||
|
"2":{"taskName":"广告奖励", "action":"ksadsreward", "waittime":2},
|
||
|
"3":{"taskName":"宝箱任务", "action":"openbox", "waittime":16},
|
||
|
"4":{"taskName":"宝箱翻倍", "action":"openbox_double", "waittime":5},
|
||
|
"5":{"taskName":"逛街任务", "action":"ksgj", "waittime":3},
|
||
|
"6":{"taskName":"用户信息", "action":"userinfo", "waittime":1}
|
||
|
}
|
||
|
|
||
|
|
||
|
///////////////////////////////////////////////////////////////////
|
||
|
|
||
|
!(async () => {
|
||
|
|
||
|
if(typeof $request !== "undefined")
|
||
|
{
|
||
|
//
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
if(!await CheckEnv()) return
|
||
|
for (let i=0;i<7;i++){
|
||
|
let task_now=task[i]
|
||
|
let task_wait=task_now['waittime']
|
||
|
let newtime=task_wait
|
||
|
//console.log('等待时间:'+task_wait)
|
||
|
//console.log(`开始任务:${task_now['taskName']}`)
|
||
|
|
||
|
for(userIdx=0; userIdx<kshdArr.length; userIdx++) {
|
||
|
kstoken=kshdArr[userIdx]
|
||
|
ggqqbody=ggqqbodyArr[userIdx]
|
||
|
ksgjbody = kstoken.split('client_key=')[1].split('&')[0]
|
||
|
console.log(`用户${userIdx+1} 开始完成任务:${task_now['taskName']}`)
|
||
|
await eval(task_now['action']+'()')
|
||
|
}
|
||
|
if (task_wait>2) newtime=randomNum(task_wait-2,task_wait+3)
|
||
|
console.log(`一起等待${newtime}秒`)
|
||
|
await $.wait(newtime*1000)
|
||
|
}
|
||
|
}
|
||
|
await tgrj()
|
||
|
await showmsg()
|
||
|
})()
|
||
|
.catch((e) => $.logErr(e))
|
||
|
.finally(() => $.done())
|
||
|
|
||
|
async function CheckEnv() {
|
||
|
if(kshd) {
|
||
|
if(kshd.indexOf('@') > -1) {
|
||
|
let kshds = kshd.split('@')
|
||
|
for(let i=0; i<kshds.length; i++) {
|
||
|
kshdP = kshds[i]
|
||
|
kshdArr.push(kshdP)
|
||
|
}
|
||
|
} else {
|
||
|
kshdP = kshd
|
||
|
kshdArr.push(kshdP)
|
||
|
}
|
||
|
} else {
|
||
|
console.log('没有找到kshd')
|
||
|
return false
|
||
|
}
|
||
|
if(ksggqqbody) {
|
||
|
if(ksggqqbody.indexOf('@') > -1) {
|
||
|
let ksggqqbodys = ksggqqbody.split('@')
|
||
|
for(let i=0; i<ksggqqbodys.length; i++) {
|
||
|
ksggqqbodyP = ksggqqbodys[i]
|
||
|
ggqqbodyArr.push(ksggqqbodyP)
|
||
|
}
|
||
|
} else {
|
||
|
ksggqqbodyP = ksggqqbody
|
||
|
ggqqbodyArr.push(ksggqqbodyP)
|
||
|
}
|
||
|
} else {
|
||
|
console.log('没有找到ksggqqbody')
|
||
|
return false
|
||
|
}
|
||
|
return true
|
||
|
}
|
||
|
//通知
|
||
|
async function showmsg() {
|
||
|
|
||
|
let notifyBody = "\n///////////////////////\n"+jsname + "运行通知\n\n" + notifyStr
|
||
|
console.log(notifyBody);
|
||
|
|
||
|
if (notifyFlag==1 && minute<30) {
|
||
|
if (hour==12 || hour==18 ){
|
||
|
//$.msg(notifyBody);
|
||
|
if ($.isNode()){
|
||
|
await notify.sendNotify($.name, notifyBody )
|
||
|
otherts=false
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
//舔狗日记
|
||
|
function tgrj(timeout = 0) {
|
||
|
return new Promise((resolve) => {
|
||
|
let url = {
|
||
|
url: `https://api.ixiaowai.cn/tgrj/index.php`,
|
||
|
headers: {
|
||
|
'Accept': 'application/json',
|
||
|
'user-agent': 'Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1'
|
||
|
},
|
||
|
}
|
||
|
$.get(url, async (err, resp, data) => {
|
||
|
try {
|
||
|
result = data
|
||
|
if (result.length != 0) {
|
||
|
notifyStr += `\n【舔狗日记】:${result}\n`;
|
||
|
}
|
||
|
} catch (e) {
|
||
|
$.logErr(e, resp);
|
||
|
} finally {
|
||
|
resolve()
|
||
|
}
|
||
|
}, timeout)
|
||
|
})
|
||
|
}
|
||
|
|
||
|
///////////////////////////////////////////////////////////////////
|
||
|
//账号信息
|
||
|
async function userinfo(token) {
|
||
|
let caller = PrintCaller()
|
||
|
let url = `https://nebula.kuaishou.com/rest/n/nebula/activity/earn/overview/basicInfo`
|
||
|
let urlObject = PopulateGetUrl(url)
|
||
|
await HttpGet(urlObject,caller)
|
||
|
let result = httpResult;
|
||
|
if(!result) return
|
||
|
|
||
|
//console.log(`${JSON.stringify(result)}`);
|
||
|
if (result.result == 1) {
|
||
|
console.log(`用户:${result.data.userData.nickname}`)
|
||
|
console.log(`快乐豆:${result.data.totalCoin}`)
|
||
|
console.log(`礼品卷:${result.data.allCash}`)
|
||
|
notifyStr += `用户:${result.data.userData.nickname}\n快乐豆:${result.data.totalCoin}\n礼品卷:${result.data.allCash}`
|
||
|
}else console.log(`${JSON.stringify(result)}`)
|
||
|
}
|
||
|
//签到
|
||
|
async function Sign(token) {
|
||
|
let caller = PrintCaller()
|
||
|
let url = `https://nebula.kuaishou.com/rest/n/nebula/sign/sign?source=activity`
|
||
|
let urlObject = PopulateGetUrl(url)
|
||
|
//urlObject.headers.Cookie=token
|
||
|
await HttpGet(urlObject,caller)
|
||
|
let result = httpResult;
|
||
|
if(!result) return
|
||
|
|
||
|
if (result.result == 1) {
|
||
|
console.log(`${result.data.toast} - 获得:${result.data.totalCoin} 快乐豆`)
|
||
|
notifyStr += `${result.data.toast} - 获得:${result.data.totalCoin} 快乐豆\n`
|
||
|
}else console.log(`${result.error_msg}`)
|
||
|
}
|
||
|
//
|
||
|
async function yy(token) {
|
||
|
let caller = PrintCaller()
|
||
|
let url = `https://nebula.kuaishou.com/rest/n/nebula/reservation-task/reserve`
|
||
|
let urlObject = PopulateGetUrl(url)
|
||
|
await HttpGet(urlObject,caller)
|
||
|
let result = httpResult;
|
||
|
if(!result) return
|
||
|
|
||
|
//console.log(`${JSON.stringify(result)}`);
|
||
|
if (result.result == 1) {
|
||
|
console.log(`${result.data.feedbackPopup.title}`)
|
||
|
console.log(`${result.data.feedbackPopup.subTitle}`)
|
||
|
notifyStr += `${result.data.feedbackPopup.title}\n${result.data.feedbackPopup.subTitle}\n`
|
||
|
}else console.log(`${result.error_msg}`)
|
||
|
}
|
||
|
//
|
||
|
async function yylj(token) {
|
||
|
let caller = PrintCaller()
|
||
|
let url = `https://nebula.kuaishou.com/rest/n/nebula/reservation-task/award`
|
||
|
let urlObject = PopulateGetUrl(url)
|
||
|
await HttpGet(urlObject,caller)
|
||
|
let result = httpResult;
|
||
|
if(!result) return
|
||
|
|
||
|
//console.log(`${JSON.stringify(result)}`);
|
||
|
if (result.result == 1) {
|
||
|
console.log(`${result.data.msg}`)
|
||
|
notifyStr += `${result.data.msg}\n`
|
||
|
}else console.log(`${result.error_msg}`)
|
||
|
}
|
||
|
//开宝箱
|
||
|
async function openbox(token) {
|
||
|
let caller = PrintCaller()
|
||
|
let url = `https://nebula.kuaishou.com/rest/n/nebula/box/explore?isOpen=true&isReadyOfAdPlay=true`
|
||
|
let urlObject = PopulateGetUrl(url)
|
||
|
urlObject.headers.Cookie=token
|
||
|
await HttpGet(urlObject,caller)
|
||
|
let result = httpResult;
|
||
|
if(!result) return
|
||
|
|
||
|
//console.log(`${JSON.stringify(result)}`);
|
||
|
if (result.result == 1) {
|
||
|
let score=0
|
||
|
if (result.data&&result.data.commonAwardPopup&&result.data.commonAwardPopup.awardAmount)
|
||
|
score=result.data.commonAwardPopup.awardAmount
|
||
|
console.log(`开宝箱-获得:${score} 快乐豆`)
|
||
|
notifyStr += `开宝箱-获得:${score} 快乐豆\n`
|
||
|
openboxstatus=1
|
||
|
}else console.log(`${result.message}`)
|
||
|
}
|
||
|
//开宝箱视频翻倍
|
||
|
async function openbox_double(token) {
|
||
|
let caller = PrintCaller()
|
||
|
let url = `https://api.e.kuaishou.com/rest/r/ad/nebula/reward`
|
||
|
let reqBody = 'bizStr={\x22endTime\x22:1636362292887,\x22eventValue\x22:-1,\x22rewardList\x22:[{\x22creativeId\x22:' + spid + ',"extInfo":"","llsid":' + llsid + ',\x22taskType\x22:1}],\x22startTime\x22:1636362253612,\x22taskId\x22:77},ksgjbody'
|
||
|
let urlObject = PopulatePostUrl(url,reqBody)
|
||
|
urlObject.headers.Host='api.e.kuaishou.com'
|
||
|
urlObject.headers.Cookie=token
|
||
|
await HttpPost(urlObject,caller)
|
||
|
let result = httpResult;
|
||
|
if(!result) return
|
||
|
|
||
|
//console.log(`${JSON.stringify(result)}`);
|
||
|
if (result.result == 1) {
|
||
|
console.log(`宝箱翻倍-获得:${result.data.awardAmount} 快乐豆`)
|
||
|
notifyStr += `宝箱翻倍-获得:${result.data.awardAmount} 快乐豆\n`
|
||
|
openboxstatus=1
|
||
|
}else console.log(`${result.message}`)
|
||
|
}
|
||
|
//逛街
|
||
|
//{"result":1,"message":"成功","data":{"amount":50},"host":"ad-rs6-bjmt2090.idcyz.hb1.kwaidc.com","traceId":"ELqAgIDQqY67ChiLDSDYotrx2C8op4O2nAM=","ts":1638768480734}
|
||
|
async function ksgj(token) {
|
||
|
let caller = PrintCaller()
|
||
|
let url = `https://api.e.kuaishou.com/rest/r/reward/task/getActivityReward`
|
||
|
let reqBody = `activityId=148&client_key=${ksgjbody}`
|
||
|
let urlObject = PopulatePostUrl(url,reqBody)
|
||
|
urlObject.headers.Host='api2.e.kuaishou.com'
|
||
|
await HttpPost(urlObject,caller)
|
||
|
let result = httpResult;
|
||
|
if(!result) return
|
||
|
|
||
|
if (result.result == 1) {
|
||
|
console.log(`逛街任务:${result.message} - 获得:${result.data.amount} 快乐豆`)
|
||
|
notifyStr += `逛街任务:${result.message} - 获得:${result.data.amount} 快乐豆\n`
|
||
|
}else console.log(`${result.message}`)
|
||
|
}
|
||
|
//最高2000快乐豆悬赏
|
||
|
async function ksads(token) {
|
||
|
let caller = PrintCaller()
|
||
|
let url = `https://api.e.kuaishou.com/rest/e/v1/reward/ad?kpf=ANDROID_PHONE&kpn=NEBULA`
|
||
|
let reqBody = ggqqbody
|
||
|
let urlObject = PopulatePostUrl(url,reqBody)
|
||
|
urlObject.headers.Host='api.e.kuaishou.com'
|
||
|
await HttpPost(urlObject,caller)
|
||
|
let result = httpResult;
|
||
|
if(!result) return
|
||
|
|
||
|
llsid=result.llsid
|
||
|
//视频id
|
||
|
spid = result.impAdInfo[0].adInfo[0].adBaseInfo.creativeId
|
||
|
console.log(`获取到:llsid - ${llsid}`)
|
||
|
console.log(`获取到:creativeId - ${spid}`)
|
||
|
|
||
|
}
|
||
|
//获得广告奖励
|
||
|
async function ksadsreward(spid,llsid) {
|
||
|
let caller = PrintCaller()
|
||
|
let url = `https://api.e.kuaishou.com/rest/r/ad/nebula/reward`
|
||
|
let reqBody = 'bizStr={\x22endTime\x22:1636362292887,\x22eventValue\x22:-1,\x22rewardList\x22:[{\x22creativeId\x22:' + spid + ',\x22extInfo\x22:\x22\x22,\x22llsid\x22:' + llsid + ',"taskType":1}],"startTime":1636362253612,"taskId":0},ksgjbody'
|
||
|
let urlObject = PopulatePostUrl(url,reqBody)
|
||
|
urlObject.headers.Host='api.e.kuaishou.com'
|
||
|
await HttpPost(urlObject,caller)
|
||
|
let result = httpResult;
|
||
|
if(!result) return
|
||
|
//console.log(`${JSON.stringify(result)}`)
|
||
|
if (result.result == 1) {
|
||
|
console.log(`广告任务:${result.data.awardAmount} 快乐豆`)
|
||
|
notifyStr += `广告任务:${result.data.awardAmount} 快乐豆\n`
|
||
|
}else console.log(`${result.message}`)
|
||
|
|
||
|
}
|
||
|
////////////////////////////////////////////////////////////////////
|
||
|
function PopulatePostUrl(url,reqBody){
|
||
|
let urlObject = {
|
||
|
url: url,
|
||
|
headers: {
|
||
|
'Host': 'nebula.kuaishou.com',
|
||
|
'Connection': 'keep-alive',
|
||
|
'Content-Length': '1138',
|
||
|
'Content-Type': 'application/x-www-form-urlencoded',
|
||
|
'Cookie': '' + kstoken
|
||
|
},
|
||
|
body: reqBody,
|
||
|
}
|
||
|
return urlObject;
|
||
|
}
|
||
|
|
||
|
function PopulateGetUrl(url){
|
||
|
let urlObject = {
|
||
|
url: url,
|
||
|
headers: {
|
||
|
'Host': 'nebula.kuaishou.com',
|
||
|
'Connection': 'keep-alive',
|
||
|
'Content-Length': '1138',
|
||
|
'Content-Type': 'application/x-www-form-urlencoded',
|
||
|
'Cookie': '' + kstoken
|
||
|
}
|
||
|
}
|
||
|
return urlObject;
|
||
|
}
|
||
|
|
||
|
async function HttpPost(url,caller) {
|
||
|
httpResult = null
|
||
|
return new Promise((resolve) => {
|
||
|
$.post(url, async (err, resp, data) => {
|
||
|
try {
|
||
|
if (SafeGet(data,caller)) {
|
||
|
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 (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(data)
|
||
|
console.log(`Function ${caller}: 服务器访问数据为空,请检查自身设备网络情况`);
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function PrintCaller(){
|
||
|
return (new Error()).stack.split("\n")[2].trim().split(" ")[1]
|
||
|
}
|
||
|
function randomNum(minNum, maxNum) {
|
||
|
switch (arguments.length) {
|
||
|
case 1:
|
||
|
return parseInt(Math.random() * minNum + 1, 10);
|
||
|
break;
|
||
|
case 2:
|
||
|
return parseInt(Math.random() * (maxNum - minNum + 1) + minNum, 10);
|
||
|
break;
|
||
|
default:
|
||
|
return 0;
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
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.
|