Skip to content
Snippets Groups Projects
Unverified Commit 7fe94076 authored by GyDi's avatar GyDi
Browse files

feat: reduce the impact of the enhanced mode

parent b8b0c8fa
No related branches found
No related tags found
No related merge requests found
......@@ -101,6 +101,8 @@ class Enhance {
const payload = event.payload as CmdType.EnhancedPayload;
let pdata = payload.current || {};
let hasScript = false;
for (const each of payload.chain) {
const { uid, type = "" } = each.item;
......@@ -109,6 +111,7 @@ class Enhance {
if (type === "script") {
// support async main function
pdata = await toScript(each.script!, { ...pdata });
hasScript = true;
}
// process merge
......@@ -132,6 +135,29 @@ class Enhance {
}
}
// If script is never used
// filter other fields
if (!hasScript) {
const validKeys = [
"proxies",
"proxy-providers",
"proxy-groups",
"rule-providers",
"rules",
];
// to lowercase
const newData: any = {};
Object.keys(pdata).forEach((key) => {
const newKey = key.toLowerCase();
if (validKeys.includes(newKey)) {
newData[newKey] = (pdata as any)[key];
}
});
pdata = newData;
}
const result = { data: pdata, status: "ok" };
emit(payload.callback, JSON.stringify(result)).catch(console.error);
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment